mirror of
https://github.com/Heretek-AI/GDevelop.git
synced 2026-07-22 10:05:37 -04:00
22 lines
2.0 MiB
Plaintext
22 lines
2.0 MiB
Plaintext
|
|
var initializeGDevelopJs = (() => {
|
|
var _scriptDir = typeof document !== 'undefined' && document.currentScript ? document.currentScript.src : undefined;
|
|
if (typeof __filename !== 'undefined') _scriptDir = _scriptDir || __filename;
|
|
return (
|
|
function(initializeGDevelopJs) {
|
|
initializeGDevelopJs = initializeGDevelopJs || {};
|
|
|
|
var Module=typeof initializeGDevelopJs!="undefined"?initializeGDevelopJs:{};var readyPromiseResolve,readyPromiseReject;Module["ready"]=new Promise(function(resolve,reject){readyPromiseResolve=resolve;readyPromiseReject=reject});if(Module["ASAN_OPTIONS"]===undefined)Module["ASAN_OPTIONS"]="detect_container_overflow=0";if(Module.noExitRuntime===undefined)Module.noExitRuntime=true;var moduleOverrides=Object.assign({},Module);var arguments_=[];var thisProgram="./this.program";var quit_=(status,toThrow)=>{throw toThrow};var ENVIRONMENT_IS_WEB=typeof window=="object";var ENVIRONMENT_IS_WORKER=typeof importScripts=="function";var ENVIRONMENT_IS_NODE=typeof process=="object"&&typeof process.versions=="object"&&typeof process.versions.node=="string";var scriptDirectory="";function locateFile(path){if(Module["locateFile"]){return Module["locateFile"](path,scriptDirectory)}return scriptDirectory+path}var read_,readAsync,readBinary,setWindowTitle;function logExceptionOnExit(e){if(e instanceof ExitStatus)return;let toLog=e;err("exiting due to exception: "+toLog)}if(ENVIRONMENT_IS_NODE){if(ENVIRONMENT_IS_WORKER){scriptDirectory=require("path").dirname(scriptDirectory)+"/"}else{scriptDirectory=__dirname+"/"}var fs;var nodePath;var requireNodeFS=()=>{if(!nodePath){fs=require("fs");nodePath=require("path")}};read_=(filename,binary)=>{requireNodeFS();filename=nodePath["normalize"](filename);return fs.readFileSync(filename,binary?undefined:"utf8")};readBinary=filename=>{var ret=read_(filename,true);if(!ret.buffer){ret=new Uint8Array(ret)}return ret};readAsync=(filename,onload,onerror)=>{requireNodeFS();filename=nodePath["normalize"](filename);fs.readFile(filename,function(err,data){if(err)onerror(err);else onload(data.buffer)})};if(process["argv"].length>1){thisProgram=process["argv"][1].replace(/\\/g,"/")}arguments_=process["argv"].slice(2);process["on"]("unhandledRejection",function(reason){throw reason});quit_=(status,toThrow)=>{if(keepRuntimeAlive()){process["exitCode"]=status;throw toThrow}logExceptionOnExit(toThrow);process["exit"](status)};Module["inspect"]=function(){return"[Emscripten Module object]"}}else if(ENVIRONMENT_IS_WEB||ENVIRONMENT_IS_WORKER){if(ENVIRONMENT_IS_WORKER){scriptDirectory=self.location.href}else if(typeof document!="undefined"&&document.currentScript){scriptDirectory=document.currentScript.src}if(_scriptDir){scriptDirectory=_scriptDir}if(scriptDirectory.indexOf("blob:")!==0){scriptDirectory=scriptDirectory.substr(0,scriptDirectory.replace(/[?#].*/,"").lastIndexOf("/")+1)}else{scriptDirectory=""}{read_=url=>{var xhr=new XMLHttpRequest;xhr.open("GET",url,false);xhr.send(null);return xhr.responseText};if(ENVIRONMENT_IS_WORKER){readBinary=url=>{var xhr=new XMLHttpRequest;xhr.open("GET",url,false);xhr.responseType="arraybuffer";xhr.send(null);return new Uint8Array(xhr.response)}}readAsync=(url,onload,onerror)=>{var xhr=new XMLHttpRequest;xhr.open("GET",url,true);xhr.responseType="arraybuffer";xhr.onload=()=>{if(xhr.status==200||xhr.status==0&&xhr.response){onload(xhr.response);return}onerror()};xhr.onerror=onerror;xhr.send(null)}}setWindowTitle=title=>document.title=title}else{}var out=Module["print"]||console.log.bind(console);var err=Module["printErr"]||console.warn.bind(console);Object.assign(Module,moduleOverrides);moduleOverrides=null;if(Module["arguments"])arguments_=Module["arguments"];if(Module["thisProgram"])thisProgram=Module["thisProgram"];if(Module["quit"])quit_=Module["quit"];var wasmBinary;if(Module["wasmBinary"])wasmBinary=Module["wasmBinary"];var noExitRuntime=Module["noExitRuntime"]||true;if(typeof WebAssembly!="object"){abort("no native wasm support detected")}var wasmMemory;var ABORT=false;var EXITSTATUS;function assert(condition,text){if(!condition){abort(text)}}var UTF8Decoder=typeof TextDecoder!="undefined"?new TextDecoder("utf8"):undefined;function UTF8ArrayToString(heapOrArray,idx,maxBytesToRead){var endIdx=idx+maxBytesToRead;var endPtr=idx;while(heapOrArray[endPtr]&&!(endPtr>=endIdx))++endPtr;if(endPtr-idx>16&&heapOrArray.buffer&&UTF8Decoder){return UTF8Decoder.decode(heapOrArray.subarray(idx,endPtr))}var str="";while(idx<endPtr){var u0=heapOrArray[idx++];if(!(u0&128)){str+=String.fromCharCode(u0);continue}var u1=heapOrArray[idx++]&63;if((u0&224)==192){str+=String.fromCharCode((u0&31)<<6|u1);continue}var u2=heapOrArray[idx++]&63;if((u0&240)==224){u0=(u0&15)<<12|u1<<6|u2}else{u0=(u0&7)<<18|u1<<12|u2<<6|heapOrArray[idx++]&63}if(u0<65536){str+=String.fromCharCode(u0)}else{var ch=u0-65536;str+=String.fromCharCode(55296|ch>>10,56320|ch&1023)}}return str}function UTF8ToString(ptr,maxBytesToRead){return ptr?UTF8ArrayToString(HEAPU8,ptr,maxBytesToRead):""}function stringToUTF8Array(str,heap,outIdx,maxBytesToWrite){if(!(maxBytesToWrite>0))return 0;var startIdx=outIdx;var endIdx=outIdx+maxBytesToWrite-1;for(var i=0;i<str.length;++i){var u=str.charCodeAt(i);if(u>=55296&&u<=57343){var u1=str.charCodeAt(++i);u=65536+((u&1023)<<10)|u1&1023}if(u<=127){if(outIdx>=endIdx)break;heap[outIdx++]=u}else if(u<=2047){if(outIdx+1>=endIdx)break;heap[outIdx++]=192|u>>6;heap[outIdx++]=128|u&63}else if(u<=65535){if(outIdx+2>=endIdx)break;heap[outIdx++]=224|u>>12;heap[outIdx++]=128|u>>6&63;heap[outIdx++]=128|u&63}else{if(outIdx+3>=endIdx)break;heap[outIdx++]=240|u>>18;heap[outIdx++]=128|u>>12&63;heap[outIdx++]=128|u>>6&63;heap[outIdx++]=128|u&63}}heap[outIdx]=0;return outIdx-startIdx}function lengthBytesUTF8(str){var len=0;for(var i=0;i<str.length;++i){var c=str.charCodeAt(i);if(c<=127){len++}else if(c<=2047){len+=2}else if(c>=55296&&c<=57343){len+=4;++i}else{len+=3}}return len}var buffer,HEAP8,HEAPU8,HEAP16,HEAPU16,HEAP32,HEAPU32,HEAPF32,HEAPF64;function updateGlobalBufferAndViews(buf){buffer=buf;Module["HEAP8"]=HEAP8=new Int8Array(buf);Module["HEAP16"]=HEAP16=new Int16Array(buf);Module["HEAP32"]=HEAP32=new Int32Array(buf);Module["HEAPU8"]=HEAPU8=new Uint8Array(buf);Module["HEAPU16"]=HEAPU16=new Uint16Array(buf);Module["HEAPU32"]=HEAPU32=new Uint32Array(buf);Module["HEAPF32"]=HEAPF32=new Float32Array(buf);Module["HEAPF64"]=HEAPF64=new Float64Array(buf)}var INITIAL_MEMORY=Module["INITIAL_MEMORY"]||50331648;var wasmTable;var __ATPRERUN__=[];var __ATINIT__=[];var __ATPOSTRUN__=[];var runtimeInitialized=false;function keepRuntimeAlive(){return noExitRuntime}function preRun(){if(Module["preRun"]){if(typeof Module["preRun"]=="function")Module["preRun"]=[Module["preRun"]];while(Module["preRun"].length){addOnPreRun(Module["preRun"].shift())}}callRuntimeCallbacks(__ATPRERUN__)}function initRuntime(){runtimeInitialized=true;if(!Module["noFSInit"]&&!FS.init.initialized)FS.init();FS.ignorePermissions=false;TTY.init();callRuntimeCallbacks(__ATINIT__)}function postRun(){if(Module["postRun"]){if(typeof Module["postRun"]=="function")Module["postRun"]=[Module["postRun"]];while(Module["postRun"].length){addOnPostRun(Module["postRun"].shift())}}callRuntimeCallbacks(__ATPOSTRUN__)}function addOnPreRun(cb){__ATPRERUN__.unshift(cb)}function addOnInit(cb){__ATINIT__.unshift(cb)}function addOnPostRun(cb){__ATPOSTRUN__.unshift(cb)}var runDependencies=0;var runDependencyWatcher=null;var dependenciesFulfilled=null;function getUniqueRunDependency(id){return id}function addRunDependency(id){runDependencies++;if(Module["monitorRunDependencies"]){Module["monitorRunDependencies"](runDependencies)}}function removeRunDependency(id){runDependencies--;if(Module["monitorRunDependencies"]){Module["monitorRunDependencies"](runDependencies)}if(runDependencies==0){if(runDependencyWatcher!==null){clearInterval(runDependencyWatcher);runDependencyWatcher=null}if(dependenciesFulfilled){var callback=dependenciesFulfilled;dependenciesFulfilled=null;callback()}}}function abort(what){{if(Module["onAbort"]){Module["onAbort"](what)}}what="Aborted("+what+")";err(what);ABORT=true;EXITSTATUS=1;what+=". Build with -sASSERTIONS for more info.";var e=new WebAssembly.RuntimeError(what);readyPromiseReject(e);throw e}var dataURIPrefix="data:application/octet-stream;base64,";function isDataURI(filename){return filename.startsWith(dataURIPrefix)}function isFileURI(filename){return filename.startsWith("file://")}var wasmBinaryFile;wasmBinaryFile="libGD.wasm";if(!isDataURI(wasmBinaryFile)){wasmBinaryFile=locateFile(wasmBinaryFile)}function getBinary(file){try{if(file==wasmBinaryFile&&wasmBinary){return new Uint8Array(wasmBinary)}if(readBinary){return readBinary(file)}throw"both async and sync fetching of the wasm failed"}catch(err){abort(err)}}function getBinaryPromise(){if(!wasmBinary&&(ENVIRONMENT_IS_WEB||ENVIRONMENT_IS_WORKER)){if(typeof fetch=="function"&&!isFileURI(wasmBinaryFile)){return fetch(wasmBinaryFile,{credentials:"same-origin"}).then(function(response){if(!response["ok"]){throw"failed to load wasm binary file at '"+wasmBinaryFile+"'"}return response["arrayBuffer"]()}).catch(function(){return getBinary(wasmBinaryFile)})}else{if(readAsync){return new Promise(function(resolve,reject){readAsync(wasmBinaryFile,function(response){resolve(new Uint8Array(response))},reject)})}}}return Promise.resolve().then(function(){return getBinary(wasmBinaryFile)})}function createWasm(){var info={"a":asmLibraryArg};function receiveInstance(instance,module){var exports=instance.exports;Module["asm"]=exports;wasmMemory=Module["asm"]["p"];updateGlobalBufferAndViews(wasmMemory.buffer);wasmTable=Module["asm"]["o6"];addOnInit(Module["asm"]["q"]);removeRunDependency("wasm-instantiate")}addRunDependency("wasm-instantiate");function receiveInstantiationResult(result){receiveInstance(result["instance"])}function instantiateArrayBuffer(receiver){return getBinaryPromise().then(function(binary){return WebAssembly.instantiate(binary,info)}).then(function(instance){return instance}).then(receiver,function(reason){err("failed to asynchronously prepare wasm: "+reason);abort(reason)})}function instantiateAsync(){if(!wasmBinary&&typeof WebAssembly.instantiateStreaming=="function"&&!isDataURI(wasmBinaryFile)&&!isFileURI(wasmBinaryFile)&&!ENVIRONMENT_IS_NODE&&typeof fetch=="function"){return fetch(wasmBinaryFile,{credentials:"same-origin"}).then(function(response){var result=WebAssembly.instantiateStreaming(response,info);return result.then(receiveInstantiationResult,function(reason){err("wasm streaming compile failed: "+reason);err("falling back to ArrayBuffer instantiation");return instantiateArrayBuffer(receiveInstantiationResult)})})}else{return instantiateArrayBuffer(receiveInstantiationResult)}}if(Module["instantiateWasm"]){try{var exports=Module["instantiateWasm"](info,receiveInstance);return exports}catch(e){err("Module.instantiateWasm callback failed with error: "+e);readyPromiseReject(e)}}instantiateAsync().catch(readyPromiseReject);return{}}var tempDouble;var tempI64;var ASM_CONSTS={886960:$0=>{var getTranslation=Module["getTranslation"];if(!getTranslation){return $0}ensureCache.prepare();var translatedStr=getTranslation(UTF8ToString($0));return ensureString(translatedStr)},887160:($0,$1)=>{var clone=Module["wrapPointer"]($0,Module["BehaviorJsImplementation"]);var self=Module["wrapPointer"]($1,Module["BehaviorJsImplementation"]);clone["getProperties"]=self["getProperties"];clone["updateProperty"]=self["updateProperty"];clone["initializeContent"]=self["initializeContent"]},887467:($0,$1)=>{var self=Module["getCache"](Module["BehaviorJsImplementation"])[$0];if(!self.hasOwnProperty("getProperties"))throw"getProperties is not defined on a BehaviorJsImplementation.";var newProperties=self["getProperties"](wrapPointer($1,Module["SerializerElement"]));if(!newProperties)throw"getProperties returned nothing in a gd::BehaviorJsImplementation.";return getPointer(newProperties)},887872:($0,$1,$2,$3)=>{var self=Module["getCache"](Module["BehaviorJsImplementation"])[$0];if(!self.hasOwnProperty("updateProperty"))throw"updateProperty is not defined on a BehaviorJsImplementation.";self["updateProperty"](wrapPointer($1,Module["SerializerElement"]),UTF8ToString($2),UTF8ToString($3))},888168:($0,$1)=>{var self=Module["getCache"](Module["BehaviorJsImplementation"])[$0];if(!self.hasOwnProperty("initializeContent"))throw"initializeContent is not defined on a BehaviorJsImplementation.";self["initializeContent"](wrapPointer($1,Module["SerializerElement"]))},888437:($0,$1)=>{var clone=Module["wrapPointer"]($0,Module["BehaviorSharedDataJsImplementation"]);var self=Module["wrapPointer"]($1,Module["BehaviorSharedDataJsImplementation"]);clone["getProperties"]=self["getProperties"];clone["updateProperty"]=self["updateProperty"];clone["initializeContent"]=self["initializeContent"]},888766:($0,$1)=>{var self=Module["getCache"](Module["BehaviorSharedDataJsImplementation"])[$0];if(!self.hasOwnProperty("getProperties"))throw"getProperties is not defined on a BehaviorSharedDataJsImplementation.";var newProperties=self["getProperties"](wrapPointer($1,Module["SerializerElement"]));if(!newProperties)throw"getProperties returned nothing in a gd::BehaviorSharedDataJsImplementation.";return getPointer(newProperties)},889202:($0,$1,$2,$3)=>{var self=Module["getCache"](Module["BehaviorSharedDataJsImplementation"])[$0];if(!self.hasOwnProperty("updateProperty"))throw"updateProperty is not defined on a BehaviorSharedDataJsImplementation.";self["updateProperty"](wrapPointer($1,Module["SerializerElement"]),UTF8ToString($2),UTF8ToString($3))},889518:($0,$1)=>{var self=Module["getCache"](Module["BehaviorSharedDataJsImplementation"])[$0];if(!self.hasOwnProperty("initializeContent"))throw"initializeContent is not defined on a BehaviorSharedDataJsImplementation.";self["initializeContent"](wrapPointer($1,Module["SerializerElement"]))},889807:($0,$1)=>{var clone=Module["wrapPointer"]($0,Module["ObjectJsImplementation"]);var self=Module["wrapPointer"]($1,Module["ObjectJsImplementation"]);clone["getProperties"]=self["getProperties"];clone["updateProperty"]=self["updateProperty"];clone["getInitialInstanceProperties"]=self["getInitialInstanceProperties"];clone["updateInitialInstanceProperty"]=self["updateInitialInstanceProperty"];clone["content"]=Module["_deepCloneForObjectJsImplementationContent"](self["content"])},890302:$0=>{var self=Module["getCache"](Module["ObjectJsImplementation"])[$0];if(!self.hasOwnProperty("getProperties"))throw"getProperties is not defined on a ObjectJsImplementation.";var newProperties=self["getProperties"]();if(!newProperties)throw"getProperties returned nothing in a gd::ObjectJsImplementation.";return getPointer(newProperties)},890657:($0,$1,$2)=>{var self=Module["getCache"](Module["ObjectJsImplementation"])[$0];if(!self.hasOwnProperty("updateProperty"))throw"updateProperty is not defined on a ObjectJsImplementation.";self["updateProperty"](UTF8ToString($1),UTF8ToString($2))},890902:($0,$1)=>{var self=Module["getCache"](Module["ObjectJsImplementation"])[$0];if(!self.hasOwnProperty("getInitialInstanceProperties"))throw"getInitialInstanceProperties is not defined on a ObjectJsImplementation.";var newProperties=self["getInitialInstanceProperties"](wrapPointer($1,Module["InitialInstance"]));if(!newProperties)throw"getInitialInstanceProperties returned nothing in a gd::ObjectJsImplementation.";return getPointer(newProperties)},891360:($0,$1,$2,$3)=>{var self=Module["getCache"](Module["ObjectJsImplementation"])[$0];if(!self.hasOwnProperty("updateInitialInstanceProperty"))throw"updateInitialInstanceProperty is not defined on a ObjectJsImplementation.";return self["updateInitialInstanceProperty"](wrapPointer($1,Module["InitialInstance"]),UTF8ToString($2),UTF8ToString($3))},891702:$0=>{var self=Module["getCache"](Module["ObjectJsImplementation"])[$0];if(!self.content)throw"`content` is not defined on a ObjectJsImplementation.";var serializerElement=Module["Serializer"].fromJSObject(self.content);return getPointer(serializerElement)},891968:($0,$1)=>{var self=Module["getCache"](Module["ObjectJsImplementation"])[$0];if(!self.content)throw"`content` is not defined on a ObjectJsImplementation.";var serializerElement=wrapPointer($1,Module["SerializerElement"]);if(!serializerElement.isValueUndefined()||serializerElement.consideredAsArray()){throw new Error("The element passed to ObjectJsImplementation::DoUnserializeFrom is not an object.")}self.content=JSON.parse(Module["Serializer"].toJSON(serializerElement))},892458:($0,$1)=>{var self=Module["getCache"](Module["InitialInstanceJSFunctor"])[$0];if(!self.hasOwnProperty("invoke"))throw"a JSImplementation must implement all functions, you forgot InitialInstanceJSFunctor::invoke.";self["invoke"]($1)},892692:($0,$1)=>{var self=Module["getCache"](Module["AbstractFileSystemJS"])[$0];if(!self.hasOwnProperty("mkDir"))throw"a JSImplementation must implement all functions, you forgot AbstractFileSystemJS::mkDir.";self.mkDir(UTF8ToString($1))},892926:($0,$1)=>{var self=Module["getCache"](Module["AbstractFileSystemJS"])[$0];if(!self.hasOwnProperty("dirExists"))throw"a JSImplementation must implement all functions, you forgot AbstractFileSystemJS::dirExists.";return self.dirExists(UTF8ToString($1))},893179:($0,$1)=>{var self=Module["getCache"](Module["AbstractFileSystemJS"])[$0];if(!self.hasOwnProperty("fileExists"))throw"a JSImplementation must implement all functions, you forgot AbstractFileSystemJS::fileExists.";return self.fileExists(UTF8ToString($1))},893435:($0,$1)=>{var self=Module["getCache"](Module["AbstractFileSystemJS"])[$0];if(!self.hasOwnProperty("clearDir"))throw"a JSImplementation must implement all functions, you forgot AbstractFileSystemJS::clearDir.";return self.clearDir(UTF8ToString($1))},893685:$0=>{var self=Module["getCache"](Module["AbstractFileSystemJS"])[$0];if(!self.hasOwnProperty("getTempDir"))throw"a JSImplementation must implement all functions, you forgot AbstractFileSystemJS::getTempDir.";return ensureString(self.getTempDir())},893939:($0,$1)=>{var self=Module["getCache"](Module["AbstractFileSystemJS"])[$0];if(!self.hasOwnProperty("fileNameFrom"))throw"a JSImplementation must implement all functions, you forgot AbstractFileSystemJS::fileNameFrom.";return ensureString(self.fileNameFrom(UTF8ToString($1)))},894215:($0,$1)=>{var self=Module["getCache"](Module["AbstractFileSystemJS"])[$0];if(!self.hasOwnProperty("dirNameFrom"))throw"a JSImplementation must implement all functions, you forgot AbstractFileSystemJS::dirNameFrom.";return ensureString(self.dirNameFrom(UTF8ToString($1)))},894488:($0,$1,$2)=>{var self=Module["getCache"](Module["AbstractFileSystemJS"])[$0];if(!self.hasOwnProperty("makeAbsolute"))throw"a JSImplementation must implement all functions, you forgot AbstractFileSystemJS::makeAbsolute.";return ensureString(self.makeAbsolute(UTF8ToString($1),UTF8ToString($2)))},894783:($0,$1)=>{var self=Module["getCache"](Module["AbstractFileSystemJS"])[$0];if(!self.hasOwnProperty("isAbsolute"))throw"a JSImplementation must implement all functions, you forgot AbstractFileSystemJS::isAbsolute.";return self.isAbsolute(UTF8ToString($1))},895039:($0,$1,$2)=>{var self=Module["getCache"](Module["AbstractFileSystemJS"])[$0];if(!self.hasOwnProperty("makeRelative"))throw"a JSImplementation must implement all functions, you forgot AbstractFileSystemJS::makeRelative.";return ensureString(self.makeRelative(UTF8ToString($1),UTF8ToString($2)))},895334:($0,$1,$2)=>{var self=Module["getCache"](Module["AbstractFileSystemJS"])[$0];if(!self.hasOwnProperty("copyFile"))throw"a JSImplementation must implement all functions, you forgot AbstractFileSystemJS::copyFile.";return self.copyFile(UTF8ToString($1),UTF8ToString($2))},895602:($0,$1,$2)=>{var self=Module["getCache"](Module["AbstractFileSystemJS"])[$0];if(!self.hasOwnProperty("writeToFile"))throw"a JSImplementation must implement all functions, you forgot AbstractFileSystemJS::writeToFile.";return self.writeToFile(UTF8ToString($1),UTF8ToString($2))},895879:($0,$1)=>{var self=Module["getCache"](Module["AbstractFileSystemJS"])[$0];if(!self.hasOwnProperty("readFile"))throw"a JSImplementation must implement all functions, you forgot AbstractFileSystemJS::readFile.";return ensureString(self.readFile(UTF8ToString($1)))},896143:($0,$1,$2)=>{var self=Module["getCache"](Module["AbstractFileSystemJS"])[$0];if(!self.hasOwnProperty("readDir"))throw"a JSImplementation must implement all functions, you forgot AbstractFileSystemJS::readDir.";return self.readDir(UTF8ToString($1),UTF8ToString($2)).ptr},896412:($0,$1)=>{var self=Module["getCache"](Module["ReadOnlyArbitraryEventsWorkerWithContextJS"])[$0];if(!self.hasOwnProperty("doVisitEvent"))throw"a JSImplementation must implement all functions, you forgot ReadOnlyArbitraryEventsWorkerWithContextJS::doVisitEvent.";self.doVisitEvent(wrapPointer($1,Module["BaseEvent"]))},896731:($0,$1,$2,$3)=>{var self=Module["getCache"](Module["ReadOnlyArbitraryEventsWorkerWithContextJS"])[$0];if(!self.hasOwnProperty("doVisitInstruction"))throw"a JSImplementation must implement all functions, you forgot ReadOnlyArbitraryEventsWorkerWithContextJS::doVisitInstruction.";self.doVisitInstruction(wrapPointer($1,Module["Instruction"]),!!$2,wrapPointer($3,Module["ProjectScopedContainers"]))},897128:($0,$1)=>{var self=Module["getCache"](Module["ReadOnlyArbitraryEventsWorkerWithContextJS"])[$0];if(self.hasOwnProperty("doOnLaunch"))self.doOnLaunch(wrapPointer($1,Module["EventsList"]))},897316:($0,$1)=>{var self=Module["getCache"](Module["ArbitraryResourceWorkerJS"])[$0];if(!self.hasOwnProperty("exposeImage"))throw"a JSImplementation must implement all functions, you forgot ArbitraryResourceWorkerJS::exposeImage.";return ensureString(self.exposeImage(UTF8ToString($1)))},897599:($0,$1)=>{var self=Module["getCache"](Module["ArbitraryResourceWorkerJS"])[$0];if(!self.hasOwnProperty("exposeShader"))throw"a JSImplementation must implement all functions, you forgot ArbitraryResourceWorkerJS::exposeShader.";return ensureString(self.exposeShader(UTF8ToString($1)))},897885:($0,$1)=>{var self=Module["getCache"](Module["ArbitraryResourceWorkerJS"])[$0];if(!self.hasOwnProperty("exposeFile"))throw"a JSImplementation must implement all functions, you forgot ArbitraryResourceWorkerJS::exposeFile.";return ensureString(self.exposeFile(UTF8ToString($1)))}};function ExitStatus(status){this.name="ExitStatus";this.message="Program terminated with exit("+status+")";this.status=status}function callRuntimeCallbacks(callbacks){while(callbacks.length>0){callbacks.shift()(Module)}}function writeArrayToMemory(array,buffer){HEAP8.set(array,buffer)}function ___cxa_allocate_exception(size){return _malloc(size+24)+24}function ExceptionInfo(excPtr){this.excPtr=excPtr;this.ptr=excPtr-24;this.set_type=function(type){HEAPU32[this.ptr+4>>2]=type};this.get_type=function(){return HEAPU32[this.ptr+4>>2]};this.set_destructor=function(destructor){HEAPU32[this.ptr+8>>2]=destructor};this.get_destructor=function(){return HEAPU32[this.ptr+8>>2]};this.set_refcount=function(refcount){HEAP32[this.ptr>>2]=refcount};this.set_caught=function(caught){caught=caught?1:0;HEAP8[this.ptr+12>>0]=caught};this.get_caught=function(){return HEAP8[this.ptr+12>>0]!=0};this.set_rethrown=function(rethrown){rethrown=rethrown?1:0;HEAP8[this.ptr+13>>0]=rethrown};this.get_rethrown=function(){return HEAP8[this.ptr+13>>0]!=0};this.init=function(type,destructor){this.set_adjusted_ptr(0);this.set_type(type);this.set_destructor(destructor);this.set_refcount(0);this.set_caught(false);this.set_rethrown(false)};this.add_ref=function(){var value=HEAP32[this.ptr>>2];HEAP32[this.ptr>>2]=value+1};this.release_ref=function(){var prev=HEAP32[this.ptr>>2];HEAP32[this.ptr>>2]=prev-1;return prev===1};this.set_adjusted_ptr=function(adjustedPtr){HEAPU32[this.ptr+16>>2]=adjustedPtr};this.get_adjusted_ptr=function(){return HEAPU32[this.ptr+16>>2]};this.get_exception_ptr=function(){var isPointer=___cxa_is_pointer_type(this.get_type());if(isPointer){return HEAPU32[this.excPtr>>2]}var adjusted=this.get_adjusted_ptr();if(adjusted!==0)return adjusted;return this.excPtr}}var exceptionLast=0;var uncaughtExceptionCount=0;function ___cxa_throw(ptr,type,destructor){var info=new ExceptionInfo(ptr);info.init(type,destructor);exceptionLast=ptr;uncaughtExceptionCount++;throw ptr}function _abort(){abort("")}var readAsmConstArgsArray=[];function readAsmConstArgs(sigPtr,buf){readAsmConstArgsArray.length=0;var ch;buf>>=2;while(ch=HEAPU8[sigPtr++]){buf+=ch!=105&buf;readAsmConstArgsArray.push(ch==105?HEAP32[buf]:HEAPF64[buf++>>1]);++buf}return readAsmConstArgsArray}function _emscripten_asm_const_int(code,sigPtr,argbuf){var args=readAsmConstArgs(sigPtr,argbuf);return ASM_CONSTS[code].apply(null,args)}var _emscripten_get_now;if(ENVIRONMENT_IS_NODE){_emscripten_get_now=()=>{var t=process["hrtime"]();return t[0]*1e3+t[1]/1e6}}else _emscripten_get_now=()=>performance.now();function _emscripten_memcpy_big(dest,src,num){HEAPU8.copyWithin(dest,src,src+num)}function getHeapMax(){return 2147483648}function emscripten_realloc_buffer(size){try{wasmMemory.grow(size-buffer.byteLength+65535>>>16);updateGlobalBufferAndViews(wasmMemory.buffer);return 1}catch(e){}}function _emscripten_resize_heap(requestedSize){var oldSize=HEAPU8.length;requestedSize=requestedSize>>>0;var maxHeapSize=getHeapMax();if(requestedSize>maxHeapSize){return false}let alignUp=(x,multiple)=>x+(multiple-x%multiple)%multiple;for(var cutDown=1;cutDown<=4;cutDown*=2){var overGrownHeapSize=oldSize*(1+.2/cutDown);overGrownHeapSize=Math.min(overGrownHeapSize,requestedSize+100663296);var newSize=Math.min(maxHeapSize,alignUp(Math.max(requestedSize,overGrownHeapSize),65536));var replacement=emscripten_realloc_buffer(newSize);if(replacement){return true}}return false}var ENV={};function getExecutableName(){return thisProgram||"./this.program"}function getEnvStrings(){if(!getEnvStrings.strings){var lang=(typeof navigator=="object"&&navigator.languages&&navigator.languages[0]||"C").replace("-","_")+".UTF-8";var env={"USER":"web_user","LOGNAME":"web_user","PATH":"/","PWD":"/","HOME":"/home/web_user","LANG":lang,"_":getExecutableName()};for(var x in ENV){if(ENV[x]===undefined)delete env[x];else env[x]=ENV[x]}var strings=[];for(var x in env){strings.push(x+"="+env[x])}getEnvStrings.strings=strings}return getEnvStrings.strings}function writeAsciiToMemory(str,buffer,dontAddNull){for(var i=0;i<str.length;++i){HEAP8[buffer++>>0]=str.charCodeAt(i)}if(!dontAddNull)HEAP8[buffer>>0]=0}var PATH={isAbs:path=>path.charAt(0)==="/",splitPath:filename=>{var splitPathRe=/^(\/?|)([\s\S]*?)((?:\.{1,2}|[^\/]+?|)(\.[^.\/]*|))(?:[\/]*)$/;return splitPathRe.exec(filename).slice(1)},normalizeArray:(parts,allowAboveRoot)=>{var up=0;for(var i=parts.length-1;i>=0;i--){var last=parts[i];if(last==="."){parts.splice(i,1)}else if(last===".."){parts.splice(i,1);up++}else if(up){parts.splice(i,1);up--}}if(allowAboveRoot){for(;up;up--){parts.unshift("..")}}return parts},normalize:path=>{var isAbsolute=PATH.isAbs(path),trailingSlash=path.substr(-1)==="/";path=PATH.normalizeArray(path.split("/").filter(p=>!!p),!isAbsolute).join("/");if(!path&&!isAbsolute){path="."}if(path&&trailingSlash){path+="/"}return(isAbsolute?"/":"")+path},dirname:path=>{var result=PATH.splitPath(path),root=result[0],dir=result[1];if(!root&&!dir){return"."}if(dir){dir=dir.substr(0,dir.length-1)}return root+dir},basename:path=>{if(path==="/")return"/";path=PATH.normalize(path);path=path.replace(/\/$/,"");var lastSlash=path.lastIndexOf("/");if(lastSlash===-1)return path;return path.substr(lastSlash+1)},join:function(){var paths=Array.prototype.slice.call(arguments);return PATH.normalize(paths.join("/"))},join2:(l,r)=>{return PATH.normalize(l+"/"+r)}};function getRandomDevice(){if(typeof crypto=="object"&&typeof crypto["getRandomValues"]=="function"){var randomBuffer=new Uint8Array(1);return()=>{crypto.getRandomValues(randomBuffer);return randomBuffer[0]}}else if(ENVIRONMENT_IS_NODE){try{var crypto_module=require("crypto");return()=>crypto_module["randomBytes"](1)[0]}catch(e){}}return()=>abort("randomDevice")}var PATH_FS={resolve:function(){var resolvedPath="",resolvedAbsolute=false;for(var i=arguments.length-1;i>=-1&&!resolvedAbsolute;i--){var path=i>=0?arguments[i]:FS.cwd();if(typeof path!="string"){throw new TypeError("Arguments to path.resolve must be strings")}else if(!path){return""}resolvedPath=path+"/"+resolvedPath;resolvedAbsolute=PATH.isAbs(path)}resolvedPath=PATH.normalizeArray(resolvedPath.split("/").filter(p=>!!p),!resolvedAbsolute).join("/");return(resolvedAbsolute?"/":"")+resolvedPath||"."},relative:(from,to)=>{from=PATH_FS.resolve(from).substr(1);to=PATH_FS.resolve(to).substr(1);function trim(arr){var start=0;for(;start<arr.length;start++){if(arr[start]!=="")break}var end=arr.length-1;for(;end>=0;end--){if(arr[end]!=="")break}if(start>end)return[];return arr.slice(start,end-start+1)}var fromParts=trim(from.split("/"));var toParts=trim(to.split("/"));var length=Math.min(fromParts.length,toParts.length);var samePartsLength=length;for(var i=0;i<length;i++){if(fromParts[i]!==toParts[i]){samePartsLength=i;break}}var outputParts=[];for(var i=samePartsLength;i<fromParts.length;i++){outputParts.push("..")}outputParts=outputParts.concat(toParts.slice(samePartsLength));return outputParts.join("/")}};function intArrayFromString(stringy,dontAddNull,length){var len=length>0?length:lengthBytesUTF8(stringy)+1;var u8array=new Array(len);var numBytesWritten=stringToUTF8Array(stringy,u8array,0,u8array.length);if(dontAddNull)u8array.length=numBytesWritten;return u8array}var TTY={ttys:[],init:function(){},shutdown:function(){},register:function(dev,ops){TTY.ttys[dev]={input:[],output:[],ops:ops};FS.registerDevice(dev,TTY.stream_ops)},stream_ops:{open:function(stream){var tty=TTY.ttys[stream.node.rdev];if(!tty){throw new FS.ErrnoError(43)}stream.tty=tty;stream.seekable=false},close:function(stream){stream.tty.ops.fsync(stream.tty)},fsync:function(stream){stream.tty.ops.fsync(stream.tty)},read:function(stream,buffer,offset,length,pos){if(!stream.tty||!stream.tty.ops.get_char){throw new FS.ErrnoError(60)}var bytesRead=0;for(var i=0;i<length;i++){var result;try{result=stream.tty.ops.get_char(stream.tty)}catch(e){throw new FS.ErrnoError(29)}if(result===undefined&&bytesRead===0){throw new FS.ErrnoError(6)}if(result===null||result===undefined)break;bytesRead++;buffer[offset+i]=result}if(bytesRead){stream.node.timestamp=Date.now()}return bytesRead},write:function(stream,buffer,offset,length,pos){if(!stream.tty||!stream.tty.ops.put_char){throw new FS.ErrnoError(60)}try{for(var i=0;i<length;i++){stream.tty.ops.put_char(stream.tty,buffer[offset+i])}}catch(e){throw new FS.ErrnoError(29)}if(length){stream.node.timestamp=Date.now()}return i}},default_tty_ops:{get_char:function(tty){if(!tty.input.length){var result=null;if(ENVIRONMENT_IS_NODE){var BUFSIZE=256;var buf=Buffer.alloc(BUFSIZE);var bytesRead=0;try{bytesRead=fs.readSync(process.stdin.fd,buf,0,BUFSIZE,-1)}catch(e){if(e.toString().includes("EOF"))bytesRead=0;else throw e}if(bytesRead>0){result=buf.slice(0,bytesRead).toString("utf-8")}else{result=null}}else if(typeof window!="undefined"&&typeof window.prompt=="function"){result=window.prompt("Input: ");if(result!==null){result+="\n"}}else if(typeof readline=="function"){result=readline();if(result!==null){result+="\n"}}if(!result){return null}tty.input=intArrayFromString(result,true)}return tty.input.shift()},put_char:function(tty,val){if(val===null||val===10){out(UTF8ArrayToString(tty.output,0));tty.output=[]}else{if(val!=0)tty.output.push(val)}},fsync:function(tty){if(tty.output&&tty.output.length>0){out(UTF8ArrayToString(tty.output,0));tty.output=[]}}},default_tty1_ops:{put_char:function(tty,val){if(val===null||val===10){err(UTF8ArrayToString(tty.output,0));tty.output=[]}else{if(val!=0)tty.output.push(val)}},fsync:function(tty){if(tty.output&&tty.output.length>0){err(UTF8ArrayToString(tty.output,0));tty.output=[]}}}};function mmapAlloc(size){abort()}var MEMFS={ops_table:null,mount:function(mount){return MEMFS.createNode(null,"/",16384|511,0)},createNode:function(parent,name,mode,dev){if(FS.isBlkdev(mode)||FS.isFIFO(mode)){throw new FS.ErrnoError(63)}if(!MEMFS.ops_table){MEMFS.ops_table={dir:{node:{getattr:MEMFS.node_ops.getattr,setattr:MEMFS.node_ops.setattr,lookup:MEMFS.node_ops.lookup,mknod:MEMFS.node_ops.mknod,rename:MEMFS.node_ops.rename,unlink:MEMFS.node_ops.unlink,rmdir:MEMFS.node_ops.rmdir,readdir:MEMFS.node_ops.readdir,symlink:MEMFS.node_ops.symlink},stream:{llseek:MEMFS.stream_ops.llseek}},file:{node:{getattr:MEMFS.node_ops.getattr,setattr:MEMFS.node_ops.setattr},stream:{llseek:MEMFS.stream_ops.llseek,read:MEMFS.stream_ops.read,write:MEMFS.stream_ops.write,allocate:MEMFS.stream_ops.allocate,mmap:MEMFS.stream_ops.mmap,msync:MEMFS.stream_ops.msync}},link:{node:{getattr:MEMFS.node_ops.getattr,setattr:MEMFS.node_ops.setattr,readlink:MEMFS.node_ops.readlink},stream:{}},chrdev:{node:{getattr:MEMFS.node_ops.getattr,setattr:MEMFS.node_ops.setattr},stream:FS.chrdev_stream_ops}}}var node=FS.createNode(parent,name,mode,dev);if(FS.isDir(node.mode)){node.node_ops=MEMFS.ops_table.dir.node;node.stream_ops=MEMFS.ops_table.dir.stream;node.contents={}}else if(FS.isFile(node.mode)){node.node_ops=MEMFS.ops_table.file.node;node.stream_ops=MEMFS.ops_table.file.stream;node.usedBytes=0;node.contents=null}else if(FS.isLink(node.mode)){node.node_ops=MEMFS.ops_table.link.node;node.stream_ops=MEMFS.ops_table.link.stream}else if(FS.isChrdev(node.mode)){node.node_ops=MEMFS.ops_table.chrdev.node;node.stream_ops=MEMFS.ops_table.chrdev.stream}node.timestamp=Date.now();if(parent){parent.contents[name]=node;parent.timestamp=node.timestamp}return node},getFileDataAsTypedArray:function(node){if(!node.contents)return new Uint8Array(0);if(node.contents.subarray)return node.contents.subarray(0,node.usedBytes);return new Uint8Array(node.contents)},expandFileStorage:function(node,newCapacity){var prevCapacity=node.contents?node.contents.length:0;if(prevCapacity>=newCapacity)return;var CAPACITY_DOUBLING_MAX=1024*1024;newCapacity=Math.max(newCapacity,prevCapacity*(prevCapacity<CAPACITY_DOUBLING_MAX?2:1.125)>>>0);if(prevCapacity!=0)newCapacity=Math.max(newCapacity,256);var oldContents=node.contents;node.contents=new Uint8Array(newCapacity);if(node.usedBytes>0)node.contents.set(oldContents.subarray(0,node.usedBytes),0)},resizeFileStorage:function(node,newSize){if(node.usedBytes==newSize)return;if(newSize==0){node.contents=null;node.usedBytes=0}else{var oldContents=node.contents;node.contents=new Uint8Array(newSize);if(oldContents){node.contents.set(oldContents.subarray(0,Math.min(newSize,node.usedBytes)))}node.usedBytes=newSize}},node_ops:{getattr:function(node){var attr={};attr.dev=FS.isChrdev(node.mode)?node.id:1;attr.ino=node.id;attr.mode=node.mode;attr.nlink=1;attr.uid=0;attr.gid=0;attr.rdev=node.rdev;if(FS.isDir(node.mode)){attr.size=4096}else if(FS.isFile(node.mode)){attr.size=node.usedBytes}else if(FS.isLink(node.mode)){attr.size=node.link.length}else{attr.size=0}attr.atime=new Date(node.timestamp);attr.mtime=new Date(node.timestamp);attr.ctime=new Date(node.timestamp);attr.blksize=4096;attr.blocks=Math.ceil(attr.size/attr.blksize);return attr},setattr:function(node,attr){if(attr.mode!==undefined){node.mode=attr.mode}if(attr.timestamp!==undefined){node.timestamp=attr.timestamp}if(attr.size!==undefined){MEMFS.resizeFileStorage(node,attr.size)}},lookup:function(parent,name){throw FS.genericErrors[44]},mknod:function(parent,name,mode,dev){return MEMFS.createNode(parent,name,mode,dev)},rename:function(old_node,new_dir,new_name){if(FS.isDir(old_node.mode)){var new_node;try{new_node=FS.lookupNode(new_dir,new_name)}catch(e){}if(new_node){for(var i in new_node.contents){throw new FS.ErrnoError(55)}}}delete old_node.parent.contents[old_node.name];old_node.parent.timestamp=Date.now();old_node.name=new_name;new_dir.contents[new_name]=old_node;new_dir.timestamp=old_node.parent.timestamp;old_node.parent=new_dir},unlink:function(parent,name){delete parent.contents[name];parent.timestamp=Date.now()},rmdir:function(parent,name){var node=FS.lookupNode(parent,name);for(var i in node.contents){throw new FS.ErrnoError(55)}delete parent.contents[name];parent.timestamp=Date.now()},readdir:function(node){var entries=[".",".."];for(var key in node.contents){if(!node.contents.hasOwnProperty(key)){continue}entries.push(key)}return entries},symlink:function(parent,newname,oldpath){var node=MEMFS.createNode(parent,newname,511|40960,0);node.link=oldpath;return node},readlink:function(node){if(!FS.isLink(node.mode)){throw new FS.ErrnoError(28)}return node.link}},stream_ops:{read:function(stream,buffer,offset,length,position){var contents=stream.node.contents;if(position>=stream.node.usedBytes)return 0;var size=Math.min(stream.node.usedBytes-position,length);if(size>8&&contents.subarray){buffer.set(contents.subarray(position,position+size),offset)}else{for(var i=0;i<size;i++)buffer[offset+i]=contents[position+i]}return size},write:function(stream,buffer,offset,length,position,canOwn){if(buffer.buffer===HEAP8.buffer){canOwn=false}if(!length)return 0;var node=stream.node;node.timestamp=Date.now();if(buffer.subarray&&(!node.contents||node.contents.subarray)){if(canOwn){node.contents=buffer.subarray(offset,offset+length);node.usedBytes=length;return length}else if(node.usedBytes===0&&position===0){node.contents=buffer.slice(offset,offset+length);node.usedBytes=length;return length}else if(position+length<=node.usedBytes){node.contents.set(buffer.subarray(offset,offset+length),position);return length}}MEMFS.expandFileStorage(node,position+length);if(node.contents.subarray&&buffer.subarray){node.contents.set(buffer.subarray(offset,offset+length),position)}else{for(var i=0;i<length;i++){node.contents[position+i]=buffer[offset+i]}}node.usedBytes=Math.max(node.usedBytes,position+length);return length},llseek:function(stream,offset,whence){var position=offset;if(whence===1){position+=stream.position}else if(whence===2){if(FS.isFile(stream.node.mode)){position+=stream.node.usedBytes}}if(position<0){throw new FS.ErrnoError(28)}return position},allocate:function(stream,offset,length){MEMFS.expandFileStorage(stream.node,offset+length);stream.node.usedBytes=Math.max(stream.node.usedBytes,offset+length)},mmap:function(stream,length,position,prot,flags){if(!FS.isFile(stream.node.mode)){throw new FS.ErrnoError(43)}var ptr;var allocated;var contents=stream.node.contents;if(!(flags&2)&&contents.buffer===buffer){allocated=false;ptr=contents.byteOffset}else{if(position>0||position+length<contents.length){if(contents.subarray){contents=contents.subarray(position,position+length)}else{contents=Array.prototype.slice.call(contents,position,position+length)}}allocated=true;ptr=mmapAlloc(length);if(!ptr){throw new FS.ErrnoError(48)}HEAP8.set(contents,ptr)}return{ptr:ptr,allocated:allocated}},msync:function(stream,buffer,offset,length,mmapFlags){MEMFS.stream_ops.write(stream,buffer,0,length,offset,false);return 0}}};function asyncLoad(url,onload,onerror,noRunDep){var dep=!noRunDep?getUniqueRunDependency("al "+url):"";readAsync(url,arrayBuffer=>{assert(arrayBuffer,'Loading data file "'+url+'" failed (no arrayBuffer).');onload(new Uint8Array(arrayBuffer));if(dep)removeRunDependency(dep)},event=>{if(onerror){onerror()}else{throw'Loading data file "'+url+'" failed.'}});if(dep)addRunDependency(dep)}var FS={root:null,mounts:[],devices:{},streams:[],nextInode:1,nameTable:null,currentPath:"/",initialized:false,ignorePermissions:true,ErrnoError:null,genericErrors:{},filesystems:null,syncFSRequests:0,lookupPath:(path,opts={})=>{path=PATH_FS.resolve(FS.cwd(),path);if(!path)return{path:"",node:null};var defaults={follow_mount:true,recurse_count:0};opts=Object.assign(defaults,opts);if(opts.recurse_count>8){throw new FS.ErrnoError(32)}var parts=PATH.normalizeArray(path.split("/").filter(p=>!!p),false);var current=FS.root;var current_path="/";for(var i=0;i<parts.length;i++){var islast=i===parts.length-1;if(islast&&opts.parent){break}current=FS.lookupNode(current,parts[i]);current_path=PATH.join2(current_path,parts[i]);if(FS.isMountpoint(current)){if(!islast||islast&&opts.follow_mount){current=current.mounted.root}}if(!islast||opts.follow){var count=0;while(FS.isLink(current.mode)){var link=FS.readlink(current_path);current_path=PATH_FS.resolve(PATH.dirname(current_path),link);var lookup=FS.lookupPath(current_path,{recurse_count:opts.recurse_count+1});current=lookup.node;if(count++>40){throw new FS.ErrnoError(32)}}}}return{path:current_path,node:current}},getPath:node=>{var path;while(true){if(FS.isRoot(node)){var mount=node.mount.mountpoint;if(!path)return mount;return mount[mount.length-1]!=="/"?mount+"/"+path:mount+path}path=path?node.name+"/"+path:node.name;node=node.parent}},hashName:(parentid,name)=>{var hash=0;for(var i=0;i<name.length;i++){hash=(hash<<5)-hash+name.charCodeAt(i)|0}return(parentid+hash>>>0)%FS.nameTable.length},hashAddNode:node=>{var hash=FS.hashName(node.parent.id,node.name);node.name_next=FS.nameTable[hash];FS.nameTable[hash]=node},hashRemoveNode:node=>{var hash=FS.hashName(node.parent.id,node.name);if(FS.nameTable[hash]===node){FS.nameTable[hash]=node.name_next}else{var current=FS.nameTable[hash];while(current){if(current.name_next===node){current.name_next=node.name_next;break}current=current.name_next}}},lookupNode:(parent,name)=>{var errCode=FS.mayLookup(parent);if(errCode){throw new FS.ErrnoError(errCode,parent)}var hash=FS.hashName(parent.id,name);for(var node=FS.nameTable[hash];node;node=node.name_next){var nodeName=node.name;if(node.parent.id===parent.id&&nodeName===name){return node}}return FS.lookup(parent,name)},createNode:(parent,name,mode,rdev)=>{var node=new FS.FSNode(parent,name,mode,rdev);FS.hashAddNode(node);return node},destroyNode:node=>{FS.hashRemoveNode(node)},isRoot:node=>{return node===node.parent},isMountpoint:node=>{return!!node.mounted},isFile:mode=>{return(mode&61440)===32768},isDir:mode=>{return(mode&61440)===16384},isLink:mode=>{return(mode&61440)===40960},isChrdev:mode=>{return(mode&61440)===8192},isBlkdev:mode=>{return(mode&61440)===24576},isFIFO:mode=>{return(mode&61440)===4096},isSocket:mode=>{return(mode&49152)===49152},flagModes:{"r":0,"r+":2,"w":577,"w+":578,"a":1089,"a+":1090},modeStringToFlags:str=>{var flags=FS.flagModes[str];if(typeof flags=="undefined"){throw new Error("Unknown file open mode: "+str)}return flags},flagsToPermissionString:flag=>{var perms=["r","w","rw"][flag&3];if(flag&512){perms+="w"}return perms},nodePermissions:(node,perms)=>{if(FS.ignorePermissions){return 0}if(perms.includes("r")&&!(node.mode&292)){return 2}else if(perms.includes("w")&&!(node.mode&146)){return 2}else if(perms.includes("x")&&!(node.mode&73)){return 2}return 0},mayLookup:dir=>{var errCode=FS.nodePermissions(dir,"x");if(errCode)return errCode;if(!dir.node_ops.lookup)return 2;return 0},mayCreate:(dir,name)=>{try{var node=FS.lookupNode(dir,name);return 20}catch(e){}return FS.nodePermissions(dir,"wx")},mayDelete:(dir,name,isdir)=>{var node;try{node=FS.lookupNode(dir,name)}catch(e){return e.errno}var errCode=FS.nodePermissions(dir,"wx");if(errCode){return errCode}if(isdir){if(!FS.isDir(node.mode)){return 54}if(FS.isRoot(node)||FS.getPath(node)===FS.cwd()){return 10}}else{if(FS.isDir(node.mode)){return 31}}return 0},mayOpen:(node,flags)=>{if(!node){return 44}if(FS.isLink(node.mode)){return 32}else if(FS.isDir(node.mode)){if(FS.flagsToPermissionString(flags)!=="r"||flags&512){return 31}}return FS.nodePermissions(node,FS.flagsToPermissionString(flags))},MAX_OPEN_FDS:4096,nextfd:(fd_start=0,fd_end=FS.MAX_OPEN_FDS)=>{for(var fd=fd_start;fd<=fd_end;fd++){if(!FS.streams[fd]){return fd}}throw new FS.ErrnoError(33)},getStream:fd=>FS.streams[fd],createStream:(stream,fd_start,fd_end)=>{if(!FS.FSStream){FS.FSStream=function(){this.shared={}};FS.FSStream.prototype={};Object.defineProperties(FS.FSStream.prototype,{object:{get:function(){return this.node},set:function(val){this.node=val}},isRead:{get:function(){return(this.flags&2097155)!==1}},isWrite:{get:function(){return(this.flags&2097155)!==0}},isAppend:{get:function(){return this.flags&1024}},flags:{get:function(){return this.shared.flags},set:function(val){this.shared.flags=val}},position:{get:function(){return this.shared.position},set:function(val){this.shared.position=val}}})}stream=Object.assign(new FS.FSStream,stream);var fd=FS.nextfd(fd_start,fd_end);stream.fd=fd;FS.streams[fd]=stream;return stream},closeStream:fd=>{FS.streams[fd]=null},chrdev_stream_ops:{open:stream=>{var device=FS.getDevice(stream.node.rdev);stream.stream_ops=device.stream_ops;if(stream.stream_ops.open){stream.stream_ops.open(stream)}},llseek:()=>{throw new FS.ErrnoError(70)}},major:dev=>dev>>8,minor:dev=>dev&255,makedev:(ma,mi)=>ma<<8|mi,registerDevice:(dev,ops)=>{FS.devices[dev]={stream_ops:ops}},getDevice:dev=>FS.devices[dev],getMounts:mount=>{var mounts=[];var check=[mount];while(check.length){var m=check.pop();mounts.push(m);check.push.apply(check,m.mounts)}return mounts},syncfs:(populate,callback)=>{if(typeof populate=="function"){callback=populate;populate=false}FS.syncFSRequests++;if(FS.syncFSRequests>1){err("warning: "+FS.syncFSRequests+" FS.syncfs operations in flight at once, probably just doing extra work")}var mounts=FS.getMounts(FS.root.mount);var completed=0;function doCallback(errCode){FS.syncFSRequests--;return callback(errCode)}function done(errCode){if(errCode){if(!done.errored){done.errored=true;return doCallback(errCode)}return}if(++completed>=mounts.length){doCallback(null)}}mounts.forEach(mount=>{if(!mount.type.syncfs){return done(null)}mount.type.syncfs(mount,populate,done)})},mount:(type,opts,mountpoint)=>{var root=mountpoint==="/";var pseudo=!mountpoint;var node;if(root&&FS.root){throw new FS.ErrnoError(10)}else if(!root&&!pseudo){var lookup=FS.lookupPath(mountpoint,{follow_mount:false});mountpoint=lookup.path;node=lookup.node;if(FS.isMountpoint(node)){throw new FS.ErrnoError(10)}if(!FS.isDir(node.mode)){throw new FS.ErrnoError(54)}}var mount={type:type,opts:opts,mountpoint:mountpoint,mounts:[]};var mountRoot=type.mount(mount);mountRoot.mount=mount;mount.root=mountRoot;if(root){FS.root=mountRoot}else if(node){node.mounted=mount;if(node.mount){node.mount.mounts.push(mount)}}return mountRoot},unmount:mountpoint=>{var lookup=FS.lookupPath(mountpoint,{follow_mount:false});if(!FS.isMountpoint(lookup.node)){throw new FS.ErrnoError(28)}var node=lookup.node;var mount=node.mounted;var mounts=FS.getMounts(mount);Object.keys(FS.nameTable).forEach(hash=>{var current=FS.nameTable[hash];while(current){var next=current.name_next;if(mounts.includes(current.mount)){FS.destroyNode(current)}current=next}});node.mounted=null;var idx=node.mount.mounts.indexOf(mount);node.mount.mounts.splice(idx,1)},lookup:(parent,name)=>{return parent.node_ops.lookup(parent,name)},mknod:(path,mode,dev)=>{var lookup=FS.lookupPath(path,{parent:true});var parent=lookup.node;var name=PATH.basename(path);if(!name||name==="."||name===".."){throw new FS.ErrnoError(28)}var errCode=FS.mayCreate(parent,name);if(errCode){throw new FS.ErrnoError(errCode)}if(!parent.node_ops.mknod){throw new FS.ErrnoError(63)}return parent.node_ops.mknod(parent,name,mode,dev)},create:(path,mode)=>{mode=mode!==undefined?mode:438;mode&=4095;mode|=32768;return FS.mknod(path,mode,0)},mkdir:(path,mode)=>{mode=mode!==undefined?mode:511;mode&=511|512;mode|=16384;return FS.mknod(path,mode,0)},mkdirTree:(path,mode)=>{var dirs=path.split("/");var d="";for(var i=0;i<dirs.length;++i){if(!dirs[i])continue;d+="/"+dirs[i];try{FS.mkdir(d,mode)}catch(e){if(e.errno!=20)throw e}}},mkdev:(path,mode,dev)=>{if(typeof dev=="undefined"){dev=mode;mode=438}mode|=8192;return FS.mknod(path,mode,dev)},symlink:(oldpath,newpath)=>{if(!PATH_FS.resolve(oldpath)){throw new FS.ErrnoError(44)}var lookup=FS.lookupPath(newpath,{parent:true});var parent=lookup.node;if(!parent){throw new FS.ErrnoError(44)}var newname=PATH.basename(newpath);var errCode=FS.mayCreate(parent,newname);if(errCode){throw new FS.ErrnoError(errCode)}if(!parent.node_ops.symlink){throw new FS.ErrnoError(63)}return parent.node_ops.symlink(parent,newname,oldpath)},rename:(old_path,new_path)=>{var old_dirname=PATH.dirname(old_path);var new_dirname=PATH.dirname(new_path);var old_name=PATH.basename(old_path);var new_name=PATH.basename(new_path);var lookup,old_dir,new_dir;lookup=FS.lookupPath(old_path,{parent:true});old_dir=lookup.node;lookup=FS.lookupPath(new_path,{parent:true});new_dir=lookup.node;if(!old_dir||!new_dir)throw new FS.ErrnoError(44);if(old_dir.mount!==new_dir.mount){throw new FS.ErrnoError(75)}var old_node=FS.lookupNode(old_dir,old_name);var relative=PATH_FS.relative(old_path,new_dirname);if(relative.charAt(0)!=="."){throw new FS.ErrnoError(28)}relative=PATH_FS.relative(new_path,old_dirname);if(relative.charAt(0)!=="."){throw new FS.ErrnoError(55)}var new_node;try{new_node=FS.lookupNode(new_dir,new_name)}catch(e){}if(old_node===new_node){return}var isdir=FS.isDir(old_node.mode);var errCode=FS.mayDelete(old_dir,old_name,isdir);if(errCode){throw new FS.ErrnoError(errCode)}errCode=new_node?FS.mayDelete(new_dir,new_name,isdir):FS.mayCreate(new_dir,new_name);if(errCode){throw new FS.ErrnoError(errCode)}if(!old_dir.node_ops.rename){throw new FS.ErrnoError(63)}if(FS.isMountpoint(old_node)||new_node&&FS.isMountpoint(new_node)){throw new FS.ErrnoError(10)}if(new_dir!==old_dir){errCode=FS.nodePermissions(old_dir,"w");if(errCode){throw new FS.ErrnoError(errCode)}}FS.hashRemoveNode(old_node);try{old_dir.node_ops.rename(old_node,new_dir,new_name)}catch(e){throw e}finally{FS.hashAddNode(old_node)}},rmdir:path=>{var lookup=FS.lookupPath(path,{parent:true});var parent=lookup.node;var name=PATH.basename(path);var node=FS.lookupNode(parent,name);var errCode=FS.mayDelete(parent,name,true);if(errCode){throw new FS.ErrnoError(errCode)}if(!parent.node_ops.rmdir){throw new FS.ErrnoError(63)}if(FS.isMountpoint(node)){throw new FS.ErrnoError(10)}parent.node_ops.rmdir(parent,name);FS.destroyNode(node)},readdir:path=>{var lookup=FS.lookupPath(path,{follow:true});var node=lookup.node;if(!node.node_ops.readdir){throw new FS.ErrnoError(54)}return node.node_ops.readdir(node)},unlink:path=>{var lookup=FS.lookupPath(path,{parent:true});var parent=lookup.node;if(!parent){throw new FS.ErrnoError(44)}var name=PATH.basename(path);var node=FS.lookupNode(parent,name);var errCode=FS.mayDelete(parent,name,false);if(errCode){throw new FS.ErrnoError(errCode)}if(!parent.node_ops.unlink){throw new FS.ErrnoError(63)}if(FS.isMountpoint(node)){throw new FS.ErrnoError(10)}parent.node_ops.unlink(parent,name);FS.destroyNode(node)},readlink:path=>{var lookup=FS.lookupPath(path);var link=lookup.node;if(!link){throw new FS.ErrnoError(44)}if(!link.node_ops.readlink){throw new FS.ErrnoError(28)}return PATH_FS.resolve(FS.getPath(link.parent),link.node_ops.readlink(link))},stat:(path,dontFollow)=>{var lookup=FS.lookupPath(path,{follow:!dontFollow});var node=lookup.node;if(!node){throw new FS.ErrnoError(44)}if(!node.node_ops.getattr){throw new FS.ErrnoError(63)}return node.node_ops.getattr(node)},lstat:path=>{return FS.stat(path,true)},chmod:(path,mode,dontFollow)=>{var node;if(typeof path=="string"){var lookup=FS.lookupPath(path,{follow:!dontFollow});node=lookup.node}else{node=path}if(!node.node_ops.setattr){throw new FS.ErrnoError(63)}node.node_ops.setattr(node,{mode:mode&4095|node.mode&~4095,timestamp:Date.now()})},lchmod:(path,mode)=>{FS.chmod(path,mode,true)},fchmod:(fd,mode)=>{var stream=FS.getStream(fd);if(!stream){throw new FS.ErrnoError(8)}FS.chmod(stream.node,mode)},chown:(path,uid,gid,dontFollow)=>{var node;if(typeof path=="string"){var lookup=FS.lookupPath(path,{follow:!dontFollow});node=lookup.node}else{node=path}if(!node.node_ops.setattr){throw new FS.ErrnoError(63)}node.node_ops.setattr(node,{timestamp:Date.now()})},lchown:(path,uid,gid)=>{FS.chown(path,uid,gid,true)},fchown:(fd,uid,gid)=>{var stream=FS.getStream(fd);if(!stream){throw new FS.ErrnoError(8)}FS.chown(stream.node,uid,gid)},truncate:(path,len)=>{if(len<0){throw new FS.ErrnoError(28)}var node;if(typeof path=="string"){var lookup=FS.lookupPath(path,{follow:true});node=lookup.node}else{node=path}if(!node.node_ops.setattr){throw new FS.ErrnoError(63)}if(FS.isDir(node.mode)){throw new FS.ErrnoError(31)}if(!FS.isFile(node.mode)){throw new FS.ErrnoError(28)}var errCode=FS.nodePermissions(node,"w");if(errCode){throw new FS.ErrnoError(errCode)}node.node_ops.setattr(node,{size:len,timestamp:Date.now()})},ftruncate:(fd,len)=>{var stream=FS.getStream(fd);if(!stream){throw new FS.ErrnoError(8)}if((stream.flags&2097155)===0){throw new FS.ErrnoError(28)}FS.truncate(stream.node,len)},utime:(path,atime,mtime)=>{var lookup=FS.lookupPath(path,{follow:true});var node=lookup.node;node.node_ops.setattr(node,{timestamp:Math.max(atime,mtime)})},open:(path,flags,mode)=>{if(path===""){throw new FS.ErrnoError(44)}flags=typeof flags=="string"?FS.modeStringToFlags(flags):flags;mode=typeof mode=="undefined"?438:mode;if(flags&64){mode=mode&4095|32768}else{mode=0}var node;if(typeof path=="object"){node=path}else{path=PATH.normalize(path);try{var lookup=FS.lookupPath(path,{follow:!(flags&131072)});node=lookup.node}catch(e){}}var created=false;if(flags&64){if(node){if(flags&128){throw new FS.ErrnoError(20)}}else{node=FS.mknod(path,mode,0);created=true}}if(!node){throw new FS.ErrnoError(44)}if(FS.isChrdev(node.mode)){flags&=~512}if(flags&65536&&!FS.isDir(node.mode)){throw new FS.ErrnoError(54)}if(!created){var errCode=FS.mayOpen(node,flags);if(errCode){throw new FS.ErrnoError(errCode)}}if(flags&512&&!created){FS.truncate(node,0)}flags&=~(128|512|131072);var stream=FS.createStream({node:node,path:FS.getPath(node),flags:flags,seekable:true,position:0,stream_ops:node.stream_ops,ungotten:[],error:false});if(stream.stream_ops.open){stream.stream_ops.open(stream)}if(Module["logReadFiles"]&&!(flags&1)){if(!FS.readFiles)FS.readFiles={};if(!(path in FS.readFiles)){FS.readFiles[path]=1}}return stream},close:stream=>{if(FS.isClosed(stream)){throw new FS.ErrnoError(8)}if(stream.getdents)stream.getdents=null;try{if(stream.stream_ops.close){stream.stream_ops.close(stream)}}catch(e){throw e}finally{FS.closeStream(stream.fd)}stream.fd=null},isClosed:stream=>{return stream.fd===null},llseek:(stream,offset,whence)=>{if(FS.isClosed(stream)){throw new FS.ErrnoError(8)}if(!stream.seekable||!stream.stream_ops.llseek){throw new FS.ErrnoError(70)}if(whence!=0&&whence!=1&&whence!=2){throw new FS.ErrnoError(28)}stream.position=stream.stream_ops.llseek(stream,offset,whence);stream.ungotten=[];return stream.position},read:(stream,buffer,offset,length,position)=>{if(length<0||position<0){throw new FS.ErrnoError(28)}if(FS.isClosed(stream)){throw new FS.ErrnoError(8)}if((stream.flags&2097155)===1){throw new FS.ErrnoError(8)}if(FS.isDir(stream.node.mode)){throw new FS.ErrnoError(31)}if(!stream.stream_ops.read){throw new FS.ErrnoError(28)}var seeking=typeof position!="undefined";if(!seeking){position=stream.position}else if(!stream.seekable){throw new FS.ErrnoError(70)}var bytesRead=stream.stream_ops.read(stream,buffer,offset,length,position);if(!seeking)stream.position+=bytesRead;return bytesRead},write:(stream,buffer,offset,length,position,canOwn)=>{if(length<0||position<0){throw new FS.ErrnoError(28)}if(FS.isClosed(stream)){throw new FS.ErrnoError(8)}if((stream.flags&2097155)===0){throw new FS.ErrnoError(8)}if(FS.isDir(stream.node.mode)){throw new FS.ErrnoError(31)}if(!stream.stream_ops.write){throw new FS.ErrnoError(28)}if(stream.seekable&&stream.flags&1024){FS.llseek(stream,0,2)}var seeking=typeof position!="undefined";if(!seeking){position=stream.position}else if(!stream.seekable){throw new FS.ErrnoError(70)}var bytesWritten=stream.stream_ops.write(stream,buffer,offset,length,position,canOwn);if(!seeking)stream.position+=bytesWritten;return bytesWritten},allocate:(stream,offset,length)=>{if(FS.isClosed(stream)){throw new FS.ErrnoError(8)}if(offset<0||length<=0){throw new FS.ErrnoError(28)}if((stream.flags&2097155)===0){throw new FS.ErrnoError(8)}if(!FS.isFile(stream.node.mode)&&!FS.isDir(stream.node.mode)){throw new FS.ErrnoError(43)}if(!stream.stream_ops.allocate){throw new FS.ErrnoError(138)}stream.stream_ops.allocate(stream,offset,length)},mmap:(stream,length,position,prot,flags)=>{if((prot&2)!==0&&(flags&2)===0&&(stream.flags&2097155)!==2){throw new FS.ErrnoError(2)}if((stream.flags&2097155)===1){throw new FS.ErrnoError(2)}if(!stream.stream_ops.mmap){throw new FS.ErrnoError(43)}return stream.stream_ops.mmap(stream,length,position,prot,flags)},msync:(stream,buffer,offset,length,mmapFlags)=>{if(!stream.stream_ops.msync){return 0}return stream.stream_ops.msync(stream,buffer,offset,length,mmapFlags)},munmap:stream=>0,ioctl:(stream,cmd,arg)=>{if(!stream.stream_ops.ioctl){throw new FS.ErrnoError(59)}return stream.stream_ops.ioctl(stream,cmd,arg)},readFile:(path,opts={})=>{opts.flags=opts.flags||0;opts.encoding=opts.encoding||"binary";if(opts.encoding!=="utf8"&&opts.encoding!=="binary"){throw new Error('Invalid encoding type "'+opts.encoding+'"')}var ret;var stream=FS.open(path,opts.flags);var stat=FS.stat(path);var length=stat.size;var buf=new Uint8Array(length);FS.read(stream,buf,0,length,0);if(opts.encoding==="utf8"){ret=UTF8ArrayToString(buf,0)}else if(opts.encoding==="binary"){ret=buf}FS.close(stream);return ret},writeFile:(path,data,opts={})=>{opts.flags=opts.flags||577;var stream=FS.open(path,opts.flags,opts.mode);if(typeof data=="string"){var buf=new Uint8Array(lengthBytesUTF8(data)+1);var actualNumBytes=stringToUTF8Array(data,buf,0,buf.length);FS.write(stream,buf,0,actualNumBytes,undefined,opts.canOwn)}else if(ArrayBuffer.isView(data)){FS.write(stream,data,0,data.byteLength,undefined,opts.canOwn)}else{throw new Error("Unsupported data type")}FS.close(stream)},cwd:()=>FS.currentPath,chdir:path=>{var lookup=FS.lookupPath(path,{follow:true});if(lookup.node===null){throw new FS.ErrnoError(44)}if(!FS.isDir(lookup.node.mode)){throw new FS.ErrnoError(54)}var errCode=FS.nodePermissions(lookup.node,"x");if(errCode){throw new FS.ErrnoError(errCode)}FS.currentPath=lookup.path},createDefaultDirectories:()=>{FS.mkdir("/tmp");FS.mkdir("/home");FS.mkdir("/home/web_user")},createDefaultDevices:()=>{FS.mkdir("/dev");FS.registerDevice(FS.makedev(1,3),{read:()=>0,write:(stream,buffer,offset,length,pos)=>length});FS.mkdev("/dev/null",FS.makedev(1,3));TTY.register(FS.makedev(5,0),TTY.default_tty_ops);TTY.register(FS.makedev(6,0),TTY.default_tty1_ops);FS.mkdev("/dev/tty",FS.makedev(5,0));FS.mkdev("/dev/tty1",FS.makedev(6,0));var random_device=getRandomDevice();FS.createDevice("/dev","random",random_device);FS.createDevice("/dev","urandom",random_device);FS.mkdir("/dev/shm");FS.mkdir("/dev/shm/tmp")},createSpecialDirectories:()=>{FS.mkdir("/proc");var proc_self=FS.mkdir("/proc/self");FS.mkdir("/proc/self/fd");FS.mount({mount:()=>{var node=FS.createNode(proc_self,"fd",16384|511,73);node.node_ops={lookup:(parent,name)=>{var fd=+name;var stream=FS.getStream(fd);if(!stream)throw new FS.ErrnoError(8);var ret={parent:null,mount:{mountpoint:"fake"},node_ops:{readlink:()=>stream.path}};ret.parent=ret;return ret}};return node}},{},"/proc/self/fd")},createStandardStreams:()=>{if(Module["stdin"]){FS.createDevice("/dev","stdin",Module["stdin"])}else{FS.symlink("/dev/tty","/dev/stdin")}if(Module["stdout"]){FS.createDevice("/dev","stdout",null,Module["stdout"])}else{FS.symlink("/dev/tty","/dev/stdout")}if(Module["stderr"]){FS.createDevice("/dev","stderr",null,Module["stderr"])}else{FS.symlink("/dev/tty1","/dev/stderr")}var stdin=FS.open("/dev/stdin",0);var stdout=FS.open("/dev/stdout",1);var stderr=FS.open("/dev/stderr",1)},ensureErrnoError:()=>{if(FS.ErrnoError)return;FS.ErrnoError=function ErrnoError(errno,node){this.node=node;this.setErrno=function(errno){this.errno=errno};this.setErrno(errno);this.message="FS error"};FS.ErrnoError.prototype=new Error;FS.ErrnoError.prototype.constructor=FS.ErrnoError;[44].forEach(code=>{FS.genericErrors[code]=new FS.ErrnoError(code);FS.genericErrors[code].stack="<generic error, no stack>"})},staticInit:()=>{FS.ensureErrnoError();FS.nameTable=new Array(4096);FS.mount(MEMFS,{},"/");FS.createDefaultDirectories();FS.createDefaultDevices();FS.createSpecialDirectories();FS.filesystems={"MEMFS":MEMFS}},init:(input,output,error)=>{FS.init.initialized=true;FS.ensureErrnoError();Module["stdin"]=input||Module["stdin"];Module["stdout"]=output||Module["stdout"];Module["stderr"]=error||Module["stderr"];FS.createStandardStreams()},quit:()=>{FS.init.initialized=false;for(var i=0;i<FS.streams.length;i++){var stream=FS.streams[i];if(!stream){continue}FS.close(stream)}},getMode:(canRead,canWrite)=>{var mode=0;if(canRead)mode|=292|73;if(canWrite)mode|=146;return mode},findObject:(path,dontResolveLastLink)=>{var ret=FS.analyzePath(path,dontResolveLastLink);if(!ret.exists){return null}return ret.object},analyzePath:(path,dontResolveLastLink)=>{try{var lookup=FS.lookupPath(path,{follow:!dontResolveLastLink});path=lookup.path}catch(e){}var ret={isRoot:false,exists:false,error:0,name:null,path:null,object:null,parentExists:false,parentPath:null,parentObject:null};try{var lookup=FS.lookupPath(path,{parent:true});ret.parentExists=true;ret.parentPath=lookup.path;ret.parentObject=lookup.node;ret.name=PATH.basename(path);lookup=FS.lookupPath(path,{follow:!dontResolveLastLink});ret.exists=true;ret.path=lookup.path;ret.object=lookup.node;ret.name=lookup.node.name;ret.isRoot=lookup.path==="/"}catch(e){ret.error=e.errno}return ret},createPath:(parent,path,canRead,canWrite)=>{parent=typeof parent=="string"?parent:FS.getPath(parent);var parts=path.split("/").reverse();while(parts.length){var part=parts.pop();if(!part)continue;var current=PATH.join2(parent,part);try{FS.mkdir(current)}catch(e){}parent=current}return current},createFile:(parent,name,properties,canRead,canWrite)=>{var path=PATH.join2(typeof parent=="string"?parent:FS.getPath(parent),name);var mode=FS.getMode(canRead,canWrite);return FS.create(path,mode)},createDataFile:(parent,name,data,canRead,canWrite,canOwn)=>{var path=name;if(parent){parent=typeof parent=="string"?parent:FS.getPath(parent);path=name?PATH.join2(parent,name):parent}var mode=FS.getMode(canRead,canWrite);var node=FS.create(path,mode);if(data){if(typeof data=="string"){var arr=new Array(data.length);for(var i=0,len=data.length;i<len;++i)arr[i]=data.charCodeAt(i);data=arr}FS.chmod(node,mode|146);var stream=FS.open(node,577);FS.write(stream,data,0,data.length,0,canOwn);FS.close(stream);FS.chmod(node,mode)}return node},createDevice:(parent,name,input,output)=>{var path=PATH.join2(typeof parent=="string"?parent:FS.getPath(parent),name);var mode=FS.getMode(!!input,!!output);if(!FS.createDevice.major)FS.createDevice.major=64;var dev=FS.makedev(FS.createDevice.major++,0);FS.registerDevice(dev,{open:stream=>{stream.seekable=false},close:stream=>{if(output&&output.buffer&&output.buffer.length){output(10)}},read:(stream,buffer,offset,length,pos)=>{var bytesRead=0;for(var i=0;i<length;i++){var result;try{result=input()}catch(e){throw new FS.ErrnoError(29)}if(result===undefined&&bytesRead===0){throw new FS.ErrnoError(6)}if(result===null||result===undefined)break;bytesRead++;buffer[offset+i]=result}if(bytesRead){stream.node.timestamp=Date.now()}return bytesRead},write:(stream,buffer,offset,length,pos)=>{for(var i=0;i<length;i++){try{output(buffer[offset+i])}catch(e){throw new FS.ErrnoError(29)}}if(length){stream.node.timestamp=Date.now()}return i}});return FS.mkdev(path,mode,dev)},forceLoadFile:obj=>{if(obj.isDevice||obj.isFolder||obj.link||obj.contents)return true;if(typeof XMLHttpRequest!="undefined"){throw new Error("Lazy loading should have been performed (contents set) in createLazyFile, but it was not. Lazy loading only works in web workers. Use --embed-file or --preload-file in emcc on the main thread.")}else if(read_){try{obj.contents=intArrayFromString(read_(obj.url),true);obj.usedBytes=obj.contents.length}catch(e){throw new FS.ErrnoError(29)}}else{throw new Error("Cannot load without read() or XMLHttpRequest.")}},createLazyFile:(parent,name,url,canRead,canWrite)=>{function LazyUint8Array(){this.lengthKnown=false;this.chunks=[]}LazyUint8Array.prototype.get=function LazyUint8Array_get(idx){if(idx>this.length-1||idx<0){return undefined}var chunkOffset=idx%this.chunkSize;var chunkNum=idx/this.chunkSize|0;return this.getter(chunkNum)[chunkOffset]};LazyUint8Array.prototype.setDataGetter=function LazyUint8Array_setDataGetter(getter){this.getter=getter};LazyUint8Array.prototype.cacheLength=function LazyUint8Array_cacheLength(){var xhr=new XMLHttpRequest;xhr.open("HEAD",url,false);xhr.send(null);if(!(xhr.status>=200&&xhr.status<300||xhr.status===304))throw new Error("Couldn't load "+url+". Status: "+xhr.status);var datalength=Number(xhr.getResponseHeader("Content-length"));var header;var hasByteServing=(header=xhr.getResponseHeader("Accept-Ranges"))&&header==="bytes";var usesGzip=(header=xhr.getResponseHeader("Content-Encoding"))&&header==="gzip";var chunkSize=1024*1024;if(!hasByteServing)chunkSize=datalength;var doXHR=(from,to)=>{if(from>to)throw new Error("invalid range ("+from+", "+to+") or no bytes requested!");if(to>datalength-1)throw new Error("only "+datalength+" bytes available! programmer error!");var xhr=new XMLHttpRequest;xhr.open("GET",url,false);if(datalength!==chunkSize)xhr.setRequestHeader("Range","bytes="+from+"-"+to);xhr.responseType="arraybuffer";if(xhr.overrideMimeType){xhr.overrideMimeType("text/plain; charset=x-user-defined")}xhr.send(null);if(!(xhr.status>=200&&xhr.status<300||xhr.status===304))throw new Error("Couldn't load "+url+". Status: "+xhr.status);if(xhr.response!==undefined){return new Uint8Array(xhr.response||[])}return intArrayFromString(xhr.responseText||"",true)};var lazyArray=this;lazyArray.setDataGetter(chunkNum=>{var start=chunkNum*chunkSize;var end=(chunkNum+1)*chunkSize-1;end=Math.min(end,datalength-1);if(typeof lazyArray.chunks[chunkNum]=="undefined"){lazyArray.chunks[chunkNum]=doXHR(start,end)}if(typeof lazyArray.chunks[chunkNum]=="undefined")throw new Error("doXHR failed!");return lazyArray.chunks[chunkNum]});if(usesGzip||!datalength){chunkSize=datalength=1;datalength=this.getter(0).length;chunkSize=datalength;out("LazyFiles on gzip forces download of the whole file when length is accessed")}this._length=datalength;this._chunkSize=chunkSize;this.lengthKnown=true};if(typeof XMLHttpRequest!="undefined"){if(!ENVIRONMENT_IS_WORKER)throw"Cannot do synchronous binary XHRs outside webworkers in modern browsers. Use --embed-file or --preload-file in emcc";var lazyArray=new LazyUint8Array;Object.defineProperties(lazyArray,{length:{get:function(){if(!this.lengthKnown){this.cacheLength()}return this._length}},chunkSize:{get:function(){if(!this.lengthKnown){this.cacheLength()}return this._chunkSize}}});var properties={isDevice:false,contents:lazyArray}}else{var properties={isDevice:false,url:url}}var node=FS.createFile(parent,name,properties,canRead,canWrite);if(properties.contents){node.contents=properties.contents}else if(properties.url){node.contents=null;node.url=properties.url}Object.defineProperties(node,{usedBytes:{get:function(){return this.contents.length}}});var stream_ops={};var keys=Object.keys(node.stream_ops);keys.forEach(key=>{var fn=node.stream_ops[key];stream_ops[key]=function forceLoadLazyFile(){FS.forceLoadFile(node);return fn.apply(null,arguments)}});function writeChunks(stream,buffer,offset,length,position){var contents=stream.node.contents;if(position>=contents.length)return 0;var size=Math.min(contents.length-position,length);if(contents.slice){for(var i=0;i<size;i++){buffer[offset+i]=contents[position+i]}}else{for(var i=0;i<size;i++){buffer[offset+i]=contents.get(position+i)}}return size}stream_ops.read=(stream,buffer,offset,length,position)=>{FS.forceLoadFile(node);return writeChunks(stream,buffer,offset,length,position)};stream_ops.mmap=(stream,length,position,prot,flags)=>{FS.forceLoadFile(node);var ptr=mmapAlloc(length);if(!ptr){throw new FS.ErrnoError(48)}writeChunks(stream,HEAP8,ptr,length,position);return{ptr:ptr,allocated:true}};node.stream_ops=stream_ops;return node},createPreloadedFile:(parent,name,url,canRead,canWrite,onload,onerror,dontCreateFile,canOwn,preFinish)=>{var fullname=name?PATH_FS.resolve(PATH.join2(parent,name)):parent;var dep=getUniqueRunDependency("cp "+fullname);function processData(byteArray){function finish(byteArray){if(preFinish)preFinish();if(!dontCreateFile){FS.createDataFile(parent,name,byteArray,canRead,canWrite,canOwn)}if(onload)onload();removeRunDependency(dep)}if(Browser.handledByPreloadPlugin(byteArray,fullname,finish,()=>{if(onerror)onerror();removeRunDependency(dep)})){return}finish(byteArray)}addRunDependency(dep);if(typeof url=="string"){asyncLoad(url,byteArray=>processData(byteArray),onerror)}else{processData(url)}},indexedDB:()=>{return window.indexedDB||window.mozIndexedDB||window.webkitIndexedDB||window.msIndexedDB},DB_NAME:()=>{return"EM_FS_"+window.location.pathname},DB_VERSION:20,DB_STORE_NAME:"FILE_DATA",saveFilesToDB:(paths,onload,onerror)=>{onload=onload||(()=>{});onerror=onerror||(()=>{});var indexedDB=FS.indexedDB();try{var openRequest=indexedDB.open(FS.DB_NAME(),FS.DB_VERSION)}catch(e){return onerror(e)}openRequest.onupgradeneeded=()=>{out("creating db");var db=openRequest.result;db.createObjectStore(FS.DB_STORE_NAME)};openRequest.onsuccess=()=>{var db=openRequest.result;var transaction=db.transaction([FS.DB_STORE_NAME],"readwrite");var files=transaction.objectStore(FS.DB_STORE_NAME);var ok=0,fail=0,total=paths.length;function finish(){if(fail==0)onload();else onerror()}paths.forEach(path=>{var putRequest=files.put(FS.analyzePath(path).object.contents,path);putRequest.onsuccess=()=>{ok++;if(ok+fail==total)finish()};putRequest.onerror=()=>{fail++;if(ok+fail==total)finish()}});transaction.onerror=onerror};openRequest.onerror=onerror},loadFilesFromDB:(paths,onload,onerror)=>{onload=onload||(()=>{});onerror=onerror||(()=>{});var indexedDB=FS.indexedDB();try{var openRequest=indexedDB.open(FS.DB_NAME(),FS.DB_VERSION)}catch(e){return onerror(e)}openRequest.onupgradeneeded=onerror;openRequest.onsuccess=()=>{var db=openRequest.result;try{var transaction=db.transaction([FS.DB_STORE_NAME],"readonly")}catch(e){onerror(e);return}var files=transaction.objectStore(FS.DB_STORE_NAME);var ok=0,fail=0,total=paths.length;function finish(){if(fail==0)onload();else onerror()}paths.forEach(path=>{var getRequest=files.get(path);getRequest.onsuccess=()=>{if(FS.analyzePath(path).exists){FS.unlink(path)}FS.createDataFile(PATH.dirname(path),PATH.basename(path),getRequest.result,true,true,true);ok++;if(ok+fail==total)finish()};getRequest.onerror=()=>{fail++;if(ok+fail==total)finish()}});transaction.onerror=onerror};openRequest.onerror=onerror}};var SYSCALLS={DEFAULT_POLLMASK:5,calculateAt:function(dirfd,path,allowEmpty){if(PATH.isAbs(path)){return path}var dir;if(dirfd===-100){dir=FS.cwd()}else{var dirstream=SYSCALLS.getStreamFromFD(dirfd);dir=dirstream.path}if(path.length==0){if(!allowEmpty){throw new FS.ErrnoError(44)}return dir}return PATH.join2(dir,path)},doStat:function(func,path,buf){try{var stat=func(path)}catch(e){if(e&&e.node&&PATH.normalize(path)!==PATH.normalize(FS.getPath(e.node))){return-54}throw e}HEAP32[buf>>2]=stat.dev;HEAP32[buf+8>>2]=stat.ino;HEAP32[buf+12>>2]=stat.mode;HEAPU32[buf+16>>2]=stat.nlink;HEAP32[buf+20>>2]=stat.uid;HEAP32[buf+24>>2]=stat.gid;HEAP32[buf+28>>2]=stat.rdev;tempI64=[stat.size>>>0,(tempDouble=stat.size,+Math.abs(tempDouble)>=1?tempDouble>0?(Math.min(+Math.floor(tempDouble/4294967296),4294967295)|0)>>>0:~~+Math.ceil((tempDouble-+(~~tempDouble>>>0))/4294967296)>>>0:0)],HEAP32[buf+40>>2]=tempI64[0],HEAP32[buf+44>>2]=tempI64[1];HEAP32[buf+48>>2]=4096;HEAP32[buf+52>>2]=stat.blocks;tempI64=[Math.floor(stat.atime.getTime()/1e3)>>>0,(tempDouble=Math.floor(stat.atime.getTime()/1e3),+Math.abs(tempDouble)>=1?tempDouble>0?(Math.min(+Math.floor(tempDouble/4294967296),4294967295)|0)>>>0:~~+Math.ceil((tempDouble-+(~~tempDouble>>>0))/4294967296)>>>0:0)],HEAP32[buf+56>>2]=tempI64[0],HEAP32[buf+60>>2]=tempI64[1];HEAPU32[buf+64>>2]=0;tempI64=[Math.floor(stat.mtime.getTime()/1e3)>>>0,(tempDouble=Math.floor(stat.mtime.getTime()/1e3),+Math.abs(tempDouble)>=1?tempDouble>0?(Math.min(+Math.floor(tempDouble/4294967296),4294967295)|0)>>>0:~~+Math.ceil((tempDouble-+(~~tempDouble>>>0))/4294967296)>>>0:0)],HEAP32[buf+72>>2]=tempI64[0],HEAP32[buf+76>>2]=tempI64[1];HEAPU32[buf+80>>2]=0;tempI64=[Math.floor(stat.ctime.getTime()/1e3)>>>0,(tempDouble=Math.floor(stat.ctime.getTime()/1e3),+Math.abs(tempDouble)>=1?tempDouble>0?(Math.min(+Math.floor(tempDouble/4294967296),4294967295)|0)>>>0:~~+Math.ceil((tempDouble-+(~~tempDouble>>>0))/4294967296)>>>0:0)],HEAP32[buf+88>>2]=tempI64[0],HEAP32[buf+92>>2]=tempI64[1];HEAPU32[buf+96>>2]=0;tempI64=[stat.ino>>>0,(tempDouble=stat.ino,+Math.abs(tempDouble)>=1?tempDouble>0?(Math.min(+Math.floor(tempDouble/4294967296),4294967295)|0)>>>0:~~+Math.ceil((tempDouble-+(~~tempDouble>>>0))/4294967296)>>>0:0)],HEAP32[buf+104>>2]=tempI64[0],HEAP32[buf+108>>2]=tempI64[1];return 0},doMsync:function(addr,stream,len,flags,offset){if(!FS.isFile(stream.node.mode)){throw new FS.ErrnoError(43)}if(flags&2){return 0}var buffer=HEAPU8.slice(addr,addr+len);FS.msync(stream,buffer,offset,len,flags)},varargs:undefined,get:function(){SYSCALLS.varargs+=4;var ret=HEAP32[SYSCALLS.varargs-4>>2];return ret},getStr:function(ptr){var ret=UTF8ToString(ptr);return ret},getStreamFromFD:function(fd){var stream=FS.getStream(fd);if(!stream)throw new FS.ErrnoError(8);return stream}};function _environ_get(__environ,environ_buf){var bufSize=0;getEnvStrings().forEach(function(string,i){var ptr=environ_buf+bufSize;HEAPU32[__environ+i*4>>2]=ptr;writeAsciiToMemory(string,ptr);bufSize+=string.length+1});return 0}function _environ_sizes_get(penviron_count,penviron_buf_size){var strings=getEnvStrings();HEAPU32[penviron_count>>2]=strings.length;var bufSize=0;strings.forEach(function(string){bufSize+=string.length+1});HEAPU32[penviron_buf_size>>2]=bufSize;return 0}function _fd_close(fd){try{var stream=SYSCALLS.getStreamFromFD(fd);FS.close(stream);return 0}catch(e){if(typeof FS=="undefined"||!(e instanceof FS.ErrnoError))throw e;return e.errno}}function doReadv(stream,iov,iovcnt,offset){var ret=0;for(var i=0;i<iovcnt;i++){var ptr=HEAPU32[iov>>2];var len=HEAPU32[iov+4>>2];iov+=8;var curr=FS.read(stream,HEAP8,ptr,len,offset);if(curr<0)return-1;ret+=curr;if(curr<len)break}return ret}function _fd_read(fd,iov,iovcnt,pnum){try{var stream=SYSCALLS.getStreamFromFD(fd);var num=doReadv(stream,iov,iovcnt);HEAPU32[pnum>>2]=num;return 0}catch(e){if(typeof FS=="undefined"||!(e instanceof FS.ErrnoError))throw e;return e.errno}}function convertI32PairToI53Checked(lo,hi){return hi+2097152>>>0<4194305-!!lo?(lo>>>0)+hi*4294967296:NaN}function _fd_seek(fd,offset_low,offset_high,whence,newOffset){try{var offset=convertI32PairToI53Checked(offset_low,offset_high);if(isNaN(offset))return 61;var stream=SYSCALLS.getStreamFromFD(fd);FS.llseek(stream,offset,whence);tempI64=[stream.position>>>0,(tempDouble=stream.position,+Math.abs(tempDouble)>=1?tempDouble>0?(Math.min(+Math.floor(tempDouble/4294967296),4294967295)|0)>>>0:~~+Math.ceil((tempDouble-+(~~tempDouble>>>0))/4294967296)>>>0:0)],HEAP32[newOffset>>2]=tempI64[0],HEAP32[newOffset+4>>2]=tempI64[1];if(stream.getdents&&offset===0&&whence===0)stream.getdents=null;return 0}catch(e){if(typeof FS=="undefined"||!(e instanceof FS.ErrnoError))throw e;return e.errno}}function doWritev(stream,iov,iovcnt,offset){var ret=0;for(var i=0;i<iovcnt;i++){var ptr=HEAPU32[iov>>2];var len=HEAPU32[iov+4>>2];iov+=8;var curr=FS.write(stream,HEAP8,ptr,len,offset);if(curr<0)return-1;ret+=curr}return ret}function _fd_write(fd,iov,iovcnt,pnum){try{var stream=SYSCALLS.getStreamFromFD(fd);var num=doWritev(stream,iov,iovcnt);HEAPU32[pnum>>2]=num;return 0}catch(e){if(typeof FS=="undefined"||!(e instanceof FS.ErrnoError))throw e;return e.errno}}function _getentropy(buffer,size){if(!_getentropy.randomDevice){_getentropy.randomDevice=getRandomDevice()}for(var i=0;i<size;i++){HEAP8[buffer+i>>0]=_getentropy.randomDevice()}return 0}function __isLeapYear(year){return year%4===0&&(year%100!==0||year%400===0)}function __arraySum(array,index){var sum=0;for(var i=0;i<=index;sum+=array[i++]){}return sum}var __MONTH_DAYS_LEAP=[31,29,31,30,31,30,31,31,30,31,30,31];var __MONTH_DAYS_REGULAR=[31,28,31,30,31,30,31,31,30,31,30,31];function __addDays(date,days){var newDate=new Date(date.getTime());while(days>0){var leap=__isLeapYear(newDate.getFullYear());var currentMonth=newDate.getMonth();var daysInCurrentMonth=(leap?__MONTH_DAYS_LEAP:__MONTH_DAYS_REGULAR)[currentMonth];if(days>daysInCurrentMonth-newDate.getDate()){days-=daysInCurrentMonth-newDate.getDate()+1;newDate.setDate(1);if(currentMonth<11){newDate.setMonth(currentMonth+1)}else{newDate.setMonth(0);newDate.setFullYear(newDate.getFullYear()+1)}}else{newDate.setDate(newDate.getDate()+days);return newDate}}return newDate}function _strftime(s,maxsize,format,tm){var tm_zone=HEAP32[tm+40>>2];var date={tm_sec:HEAP32[tm>>2],tm_min:HEAP32[tm+4>>2],tm_hour:HEAP32[tm+8>>2],tm_mday:HEAP32[tm+12>>2],tm_mon:HEAP32[tm+16>>2],tm_year:HEAP32[tm+20>>2],tm_wday:HEAP32[tm+24>>2],tm_yday:HEAP32[tm+28>>2],tm_isdst:HEAP32[tm+32>>2],tm_gmtoff:HEAP32[tm+36>>2],tm_zone:tm_zone?UTF8ToString(tm_zone):""};var pattern=UTF8ToString(format);var EXPANSION_RULES_1={"%c":"%a %b %d %H:%M:%S %Y","%D":"%m/%d/%y","%F":"%Y-%m-%d","%h":"%b","%r":"%I:%M:%S %p","%R":"%H:%M","%T":"%H:%M:%S","%x":"%m/%d/%y","%X":"%H:%M:%S","%Ec":"%c","%EC":"%C","%Ex":"%m/%d/%y","%EX":"%H:%M:%S","%Ey":"%y","%EY":"%Y","%Od":"%d","%Oe":"%e","%OH":"%H","%OI":"%I","%Om":"%m","%OM":"%M","%OS":"%S","%Ou":"%u","%OU":"%U","%OV":"%V","%Ow":"%w","%OW":"%W","%Oy":"%y"};for(var rule in EXPANSION_RULES_1){pattern=pattern.replace(new RegExp(rule,"g"),EXPANSION_RULES_1[rule])}var WEEKDAYS=["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"];var MONTHS=["January","February","March","April","May","June","July","August","September","October","November","December"];function leadingSomething(value,digits,character){var str=typeof value=="number"?value.toString():value||"";while(str.length<digits){str=character[0]+str}return str}function leadingNulls(value,digits){return leadingSomething(value,digits,"0")}function compareByDay(date1,date2){function sgn(value){return value<0?-1:value>0?1:0}var compare;if((compare=sgn(date1.getFullYear()-date2.getFullYear()))===0){if((compare=sgn(date1.getMonth()-date2.getMonth()))===0){compare=sgn(date1.getDate()-date2.getDate())}}return compare}function getFirstWeekStartDate(janFourth){switch(janFourth.getDay()){case 0:return new Date(janFourth.getFullYear()-1,11,29);case 1:return janFourth;case 2:return new Date(janFourth.getFullYear(),0,3);case 3:return new Date(janFourth.getFullYear(),0,2);case 4:return new Date(janFourth.getFullYear(),0,1);case 5:return new Date(janFourth.getFullYear()-1,11,31);case 6:return new Date(janFourth.getFullYear()-1,11,30)}}function getWeekBasedYear(date){var thisDate=__addDays(new Date(date.tm_year+1900,0,1),date.tm_yday);var janFourthThisYear=new Date(thisDate.getFullYear(),0,4);var janFourthNextYear=new Date(thisDate.getFullYear()+1,0,4);var firstWeekStartThisYear=getFirstWeekStartDate(janFourthThisYear);var firstWeekStartNextYear=getFirstWeekStartDate(janFourthNextYear);if(compareByDay(firstWeekStartThisYear,thisDate)<=0){if(compareByDay(firstWeekStartNextYear,thisDate)<=0){return thisDate.getFullYear()+1}return thisDate.getFullYear()}return thisDate.getFullYear()-1}var EXPANSION_RULES_2={"%a":function(date){return WEEKDAYS[date.tm_wday].substring(0,3)},"%A":function(date){return WEEKDAYS[date.tm_wday]},"%b":function(date){return MONTHS[date.tm_mon].substring(0,3)},"%B":function(date){return MONTHS[date.tm_mon]},"%C":function(date){var year=date.tm_year+1900;return leadingNulls(year/100|0,2)},"%d":function(date){return leadingNulls(date.tm_mday,2)},"%e":function(date){return leadingSomething(date.tm_mday,2," ")},"%g":function(date){return getWeekBasedYear(date).toString().substring(2)},"%G":function(date){return getWeekBasedYear(date)},"%H":function(date){return leadingNulls(date.tm_hour,2)},"%I":function(date){var twelveHour=date.tm_hour;if(twelveHour==0)twelveHour=12;else if(twelveHour>12)twelveHour-=12;return leadingNulls(twelveHour,2)},"%j":function(date){return leadingNulls(date.tm_mday+__arraySum(__isLeapYear(date.tm_year+1900)?__MONTH_DAYS_LEAP:__MONTH_DAYS_REGULAR,date.tm_mon-1),3)},"%m":function(date){return leadingNulls(date.tm_mon+1,2)},"%M":function(date){return leadingNulls(date.tm_min,2)},"%n":function(){return"\n"},"%p":function(date){if(date.tm_hour>=0&&date.tm_hour<12){return"AM"}return"PM"},"%S":function(date){return leadingNulls(date.tm_sec,2)},"%t":function(){return"\t"},"%u":function(date){return date.tm_wday||7},"%U":function(date){var days=date.tm_yday+7-date.tm_wday;return leadingNulls(Math.floor(days/7),2)},"%V":function(date){var val=Math.floor((date.tm_yday+7-(date.tm_wday+6)%7)/7);if((date.tm_wday+371-date.tm_yday-2)%7<=2){val++}if(!val){val=52;var dec31=(date.tm_wday+7-date.tm_yday-1)%7;if(dec31==4||dec31==5&&__isLeapYear(date.tm_year%400-1)){val++}}else if(val==53){var jan1=(date.tm_wday+371-date.tm_yday)%7;if(jan1!=4&&(jan1!=3||!__isLeapYear(date.tm_year)))val=1}return leadingNulls(val,2)},"%w":function(date){return date.tm_wday},"%W":function(date){var days=date.tm_yday+7-(date.tm_wday+6)%7;return leadingNulls(Math.floor(days/7),2)},"%y":function(date){return(date.tm_year+1900).toString().substring(2)},"%Y":function(date){return date.tm_year+1900},"%z":function(date){var off=date.tm_gmtoff;var ahead=off>=0;off=Math.abs(off)/60;off=off/60*100+off%60;return(ahead?"+":"-")+String("0000"+off).slice(-4)},"%Z":function(date){return date.tm_zone},"%%":function(){return"%"}};pattern=pattern.replace(/%%/g,"\0\0");for(var rule in EXPANSION_RULES_2){if(pattern.includes(rule)){pattern=pattern.replace(new RegExp(rule,"g"),EXPANSION_RULES_2[rule](date))}}pattern=pattern.replace(/\0\0/g,"%");var bytes=intArrayFromString(pattern,false);if(bytes.length>maxsize){return 0}writeArrayToMemory(bytes,s);return bytes.length-1}function _strftime_l(s,maxsize,format,tm){return _strftime(s,maxsize,format,tm)}var FSNode=function(parent,name,mode,rdev){if(!parent){parent=this}this.parent=parent;this.mount=parent.mount;this.mounted=null;this.id=FS.nextInode++;this.name=name;this.mode=mode;this.node_ops={};this.stream_ops={};this.rdev=rdev};var readMode=292|73;var writeMode=146;Object.defineProperties(FSNode.prototype,{read:{get:function(){return(this.mode&readMode)===readMode},set:function(val){val?this.mode|=readMode:this.mode&=~readMode}},write:{get:function(){return(this.mode&writeMode)===writeMode},set:function(val){val?this.mode|=writeMode:this.mode&=~writeMode}},isFolder:{get:function(){return FS.isDir(this.mode)}},isDevice:{get:function(){return FS.isChrdev(this.mode)}}});FS.FSNode=FSNode;FS.staticInit();var asmLibraryArg={"c":___cxa_allocate_exception,"b":___cxa_throw,"e":_abort,"a":_emscripten_asm_const_int,"d":_emscripten_get_now,"j":_emscripten_memcpy_big,"f":_emscripten_resize_heap,"n":_environ_get,"o":_environ_sizes_get,"g":_fd_close,"i":_fd_read,"k":_fd_seek,"h":_fd_write,"l":_getentropy,"m":_strftime_l};var asm=createWasm();var ___wasm_call_ctors=Module["___wasm_call_ctors"]=function(){return(___wasm_call_ctors=Module["___wasm_call_ctors"]=Module["asm"]["q"]).apply(null,arguments)};var _emscripten_bind_Resource_Resource_0=Module["_emscripten_bind_Resource_Resource_0"]=function(){return(_emscripten_bind_Resource_Resource_0=Module["_emscripten_bind_Resource_Resource_0"]=Module["asm"]["r"]).apply(null,arguments)};var _emscripten_bind_Resource_Clone_0=Module["_emscripten_bind_Resource_Clone_0"]=function(){return(_emscripten_bind_Resource_Clone_0=Module["_emscripten_bind_Resource_Clone_0"]=Module["asm"]["s"]).apply(null,arguments)};var _emscripten_bind_Resource_SetName_1=Module["_emscripten_bind_Resource_SetName_1"]=function(){return(_emscripten_bind_Resource_SetName_1=Module["_emscripten_bind_Resource_SetName_1"]=Module["asm"]["t"]).apply(null,arguments)};var _emscripten_bind_Resource_GetName_0=Module["_emscripten_bind_Resource_GetName_0"]=function(){return(_emscripten_bind_Resource_GetName_0=Module["_emscripten_bind_Resource_GetName_0"]=Module["asm"]["u"]).apply(null,arguments)};var _emscripten_bind_Resource_SetKind_1=Module["_emscripten_bind_Resource_SetKind_1"]=function(){return(_emscripten_bind_Resource_SetKind_1=Module["_emscripten_bind_Resource_SetKind_1"]=Module["asm"]["v"]).apply(null,arguments)};var _emscripten_bind_Resource_GetKind_0=Module["_emscripten_bind_Resource_GetKind_0"]=function(){return(_emscripten_bind_Resource_GetKind_0=Module["_emscripten_bind_Resource_GetKind_0"]=Module["asm"]["w"]).apply(null,arguments)};var _emscripten_bind_Resource_IsUserAdded_0=Module["_emscripten_bind_Resource_IsUserAdded_0"]=function(){return(_emscripten_bind_Resource_IsUserAdded_0=Module["_emscripten_bind_Resource_IsUserAdded_0"]=Module["asm"]["x"]).apply(null,arguments)};var _emscripten_bind_Resource_SetUserAdded_1=Module["_emscripten_bind_Resource_SetUserAdded_1"]=function(){return(_emscripten_bind_Resource_SetUserAdded_1=Module["_emscripten_bind_Resource_SetUserAdded_1"]=Module["asm"]["y"]).apply(null,arguments)};var _emscripten_bind_Resource_UseFile_0=Module["_emscripten_bind_Resource_UseFile_0"]=function(){return(_emscripten_bind_Resource_UseFile_0=Module["_emscripten_bind_Resource_UseFile_0"]=Module["asm"]["z"]).apply(null,arguments)};var _emscripten_bind_Resource_SetFile_1=Module["_emscripten_bind_Resource_SetFile_1"]=function(){return(_emscripten_bind_Resource_SetFile_1=Module["_emscripten_bind_Resource_SetFile_1"]=Module["asm"]["A"]).apply(null,arguments)};var _emscripten_bind_Resource_GetFile_0=Module["_emscripten_bind_Resource_GetFile_0"]=function(){return(_emscripten_bind_Resource_GetFile_0=Module["_emscripten_bind_Resource_GetFile_0"]=Module["asm"]["B"]).apply(null,arguments)};var _emscripten_bind_Resource_SetMetadata_1=Module["_emscripten_bind_Resource_SetMetadata_1"]=function(){return(_emscripten_bind_Resource_SetMetadata_1=Module["_emscripten_bind_Resource_SetMetadata_1"]=Module["asm"]["C"]).apply(null,arguments)};var _emscripten_bind_Resource_GetMetadata_0=Module["_emscripten_bind_Resource_GetMetadata_0"]=function(){return(_emscripten_bind_Resource_GetMetadata_0=Module["_emscripten_bind_Resource_GetMetadata_0"]=Module["asm"]["D"]).apply(null,arguments)};var _emscripten_bind_Resource_SetOrigin_2=Module["_emscripten_bind_Resource_SetOrigin_2"]=function(){return(_emscripten_bind_Resource_SetOrigin_2=Module["_emscripten_bind_Resource_SetOrigin_2"]=Module["asm"]["E"]).apply(null,arguments)};var _emscripten_bind_Resource_GetOriginName_0=Module["_emscripten_bind_Resource_GetOriginName_0"]=function(){return(_emscripten_bind_Resource_GetOriginName_0=Module["_emscripten_bind_Resource_GetOriginName_0"]=Module["asm"]["F"]).apply(null,arguments)};var _emscripten_bind_Resource_GetOriginIdentifier_0=Module["_emscripten_bind_Resource_GetOriginIdentifier_0"]=function(){return(_emscripten_bind_Resource_GetOriginIdentifier_0=Module["_emscripten_bind_Resource_GetOriginIdentifier_0"]=Module["asm"]["G"]).apply(null,arguments)};var _emscripten_bind_Resource_GetProperties_0=Module["_emscripten_bind_Resource_GetProperties_0"]=function(){return(_emscripten_bind_Resource_GetProperties_0=Module["_emscripten_bind_Resource_GetProperties_0"]=Module["asm"]["H"]).apply(null,arguments)};var _emscripten_bind_Resource_UpdateProperty_2=Module["_emscripten_bind_Resource_UpdateProperty_2"]=function(){return(_emscripten_bind_Resource_UpdateProperty_2=Module["_emscripten_bind_Resource_UpdateProperty_2"]=Module["asm"]["I"]).apply(null,arguments)};var _emscripten_bind_Resource_SerializeTo_1=Module["_emscripten_bind_Resource_SerializeTo_1"]=function(){return(_emscripten_bind_Resource_SerializeTo_1=Module["_emscripten_bind_Resource_SerializeTo_1"]=Module["asm"]["J"]).apply(null,arguments)};var _emscripten_bind_Resource_UnserializeFrom_1=Module["_emscripten_bind_Resource_UnserializeFrom_1"]=function(){return(_emscripten_bind_Resource_UnserializeFrom_1=Module["_emscripten_bind_Resource_UnserializeFrom_1"]=Module["asm"]["K"]).apply(null,arguments)};var _emscripten_bind_Resource___destroy___0=Module["_emscripten_bind_Resource___destroy___0"]=function(){return(_emscripten_bind_Resource___destroy___0=Module["_emscripten_bind_Resource___destroy___0"]=Module["asm"]["L"]).apply(null,arguments)};var _emscripten_bind_Platform_GetName_0=Module["_emscripten_bind_Platform_GetName_0"]=function(){return(_emscripten_bind_Platform_GetName_0=Module["_emscripten_bind_Platform_GetName_0"]=Module["asm"]["M"]).apply(null,arguments)};var _emscripten_bind_Platform_GetFullName_0=Module["_emscripten_bind_Platform_GetFullName_0"]=function(){return(_emscripten_bind_Platform_GetFullName_0=Module["_emscripten_bind_Platform_GetFullName_0"]=Module["asm"]["N"]).apply(null,arguments)};var _emscripten_bind_Platform_GetSubtitle_0=Module["_emscripten_bind_Platform_GetSubtitle_0"]=function(){return(_emscripten_bind_Platform_GetSubtitle_0=Module["_emscripten_bind_Platform_GetSubtitle_0"]=Module["asm"]["O"]).apply(null,arguments)};var _emscripten_bind_Platform_GetDescription_0=Module["_emscripten_bind_Platform_GetDescription_0"]=function(){return(_emscripten_bind_Platform_GetDescription_0=Module["_emscripten_bind_Platform_GetDescription_0"]=Module["asm"]["P"]).apply(null,arguments)};var _emscripten_bind_Platform_GetInstructionOrExpressionGroupMetadata_1=Module["_emscripten_bind_Platform_GetInstructionOrExpressionGroupMetadata_1"]=function(){return(_emscripten_bind_Platform_GetInstructionOrExpressionGroupMetadata_1=Module["_emscripten_bind_Platform_GetInstructionOrExpressionGroupMetadata_1"]=Module["asm"]["Q"]).apply(null,arguments)};var _emscripten_bind_Platform_IsExtensionLoaded_1=Module["_emscripten_bind_Platform_IsExtensionLoaded_1"]=function(){return(_emscripten_bind_Platform_IsExtensionLoaded_1=Module["_emscripten_bind_Platform_IsExtensionLoaded_1"]=Module["asm"]["R"]).apply(null,arguments)};var _emscripten_bind_Platform_RemoveExtension_1=Module["_emscripten_bind_Platform_RemoveExtension_1"]=function(){return(_emscripten_bind_Platform_RemoveExtension_1=Module["_emscripten_bind_Platform_RemoveExtension_1"]=Module["asm"]["S"]).apply(null,arguments)};var _emscripten_bind_Platform_ReloadBuiltinExtensions_0=Module["_emscripten_bind_Platform_ReloadBuiltinExtensions_0"]=function(){return(_emscripten_bind_Platform_ReloadBuiltinExtensions_0=Module["_emscripten_bind_Platform_ReloadBuiltinExtensions_0"]=Module["asm"]["T"]).apply(null,arguments)};var _emscripten_bind_Platform_CreateObjectConfiguration_1=Module["_emscripten_bind_Platform_CreateObjectConfiguration_1"]=function(){return(_emscripten_bind_Platform_CreateObjectConfiguration_1=Module["_emscripten_bind_Platform_CreateObjectConfiguration_1"]=Module["asm"]["U"]).apply(null,arguments)};var _emscripten_bind_Platform_GetAllPlatformExtensions_0=Module["_emscripten_bind_Platform_GetAllPlatformExtensions_0"]=function(){return(_emscripten_bind_Platform_GetAllPlatformExtensions_0=Module["_emscripten_bind_Platform_GetAllPlatformExtensions_0"]=Module["asm"]["V"]).apply(null,arguments)};var _emscripten_bind_Platform___destroy___0=Module["_emscripten_bind_Platform___destroy___0"]=function(){return(_emscripten_bind_Platform___destroy___0=Module["_emscripten_bind_Platform___destroy___0"]=Module["asm"]["W"]).apply(null,arguments)};var _emscripten_bind_Behavior_Behavior_0=Module["_emscripten_bind_Behavior_Behavior_0"]=function(){return(_emscripten_bind_Behavior_Behavior_0=Module["_emscripten_bind_Behavior_Behavior_0"]=Module["asm"]["X"]).apply(null,arguments)};var _emscripten_bind_Behavior_SetName_1=Module["_emscripten_bind_Behavior_SetName_1"]=function(){return(_emscripten_bind_Behavior_SetName_1=Module["_emscripten_bind_Behavior_SetName_1"]=Module["asm"]["Y"]).apply(null,arguments)};var _emscripten_bind_Behavior_GetName_0=Module["_emscripten_bind_Behavior_GetName_0"]=function(){return(_emscripten_bind_Behavior_GetName_0=Module["_emscripten_bind_Behavior_GetName_0"]=Module["asm"]["Z"]).apply(null,arguments)};var _emscripten_bind_Behavior_GetTypeName_0=Module["_emscripten_bind_Behavior_GetTypeName_0"]=function(){return(_emscripten_bind_Behavior_GetTypeName_0=Module["_emscripten_bind_Behavior_GetTypeName_0"]=Module["asm"]["_"]).apply(null,arguments)};var _emscripten_bind_Behavior_GetProperties_0=Module["_emscripten_bind_Behavior_GetProperties_0"]=function(){return(_emscripten_bind_Behavior_GetProperties_0=Module["_emscripten_bind_Behavior_GetProperties_0"]=Module["asm"]["$"]).apply(null,arguments)};var _emscripten_bind_Behavior_UpdateProperty_2=Module["_emscripten_bind_Behavior_UpdateProperty_2"]=function(){return(_emscripten_bind_Behavior_UpdateProperty_2=Module["_emscripten_bind_Behavior_UpdateProperty_2"]=Module["asm"]["aa"]).apply(null,arguments)};var _emscripten_bind_Behavior_RemoveProperty_1=Module["_emscripten_bind_Behavior_RemoveProperty_1"]=function(){return(_emscripten_bind_Behavior_RemoveProperty_1=Module["_emscripten_bind_Behavior_RemoveProperty_1"]=Module["asm"]["ba"]).apply(null,arguments)};var _emscripten_bind_Behavior_InitializeContent_0=Module["_emscripten_bind_Behavior_InitializeContent_0"]=function(){return(_emscripten_bind_Behavior_InitializeContent_0=Module["_emscripten_bind_Behavior_InitializeContent_0"]=Module["asm"]["ca"]).apply(null,arguments)};var _emscripten_bind_Behavior_HasPropertyValue_1=Module["_emscripten_bind_Behavior_HasPropertyValue_1"]=function(){return(_emscripten_bind_Behavior_HasPropertyValue_1=Module["_emscripten_bind_Behavior_HasPropertyValue_1"]=Module["asm"]["da"]).apply(null,arguments)};var _emscripten_bind_Behavior_SerializeTo_1=Module["_emscripten_bind_Behavior_SerializeTo_1"]=function(){return(_emscripten_bind_Behavior_SerializeTo_1=Module["_emscripten_bind_Behavior_SerializeTo_1"]=Module["asm"]["ea"]).apply(null,arguments)};var _emscripten_bind_Behavior_UnserializeFrom_1=Module["_emscripten_bind_Behavior_UnserializeFrom_1"]=function(){return(_emscripten_bind_Behavior_UnserializeFrom_1=Module["_emscripten_bind_Behavior_UnserializeFrom_1"]=Module["asm"]["fa"]).apply(null,arguments)};var _emscripten_bind_Behavior_IsFolded_0=Module["_emscripten_bind_Behavior_IsFolded_0"]=function(){return(_emscripten_bind_Behavior_IsFolded_0=Module["_emscripten_bind_Behavior_IsFolded_0"]=Module["asm"]["ga"]).apply(null,arguments)};var _emscripten_bind_Behavior_SetFolded_1=Module["_emscripten_bind_Behavior_SetFolded_1"]=function(){return(_emscripten_bind_Behavior_SetFolded_1=Module["_emscripten_bind_Behavior_SetFolded_1"]=Module["asm"]["ha"]).apply(null,arguments)};var _emscripten_bind_Behavior_IsDefaultBehavior_0=Module["_emscripten_bind_Behavior_IsDefaultBehavior_0"]=function(){return(_emscripten_bind_Behavior_IsDefaultBehavior_0=Module["_emscripten_bind_Behavior_IsDefaultBehavior_0"]=Module["asm"]["ia"]).apply(null,arguments)};var _emscripten_bind_Behavior_GetPropertiesQuickCustomizationVisibilities_0=Module["_emscripten_bind_Behavior_GetPropertiesQuickCustomizationVisibilities_0"]=function(){return(_emscripten_bind_Behavior_GetPropertiesQuickCustomizationVisibilities_0=Module["_emscripten_bind_Behavior_GetPropertiesQuickCustomizationVisibilities_0"]=Module["asm"]["ja"]).apply(null,arguments)};var _emscripten_bind_Behavior___destroy___0=Module["_emscripten_bind_Behavior___destroy___0"]=function(){return(_emscripten_bind_Behavior___destroy___0=Module["_emscripten_bind_Behavior___destroy___0"]=Module["asm"]["ka"]).apply(null,arguments)};var _emscripten_bind_BehaviorsSharedData_BehaviorsSharedData_0=Module["_emscripten_bind_BehaviorsSharedData_BehaviorsSharedData_0"]=function(){return(_emscripten_bind_BehaviorsSharedData_BehaviorsSharedData_0=Module["_emscripten_bind_BehaviorsSharedData_BehaviorsSharedData_0"]=Module["asm"]["la"]).apply(null,arguments)};var _emscripten_bind_BehaviorsSharedData_SetName_1=Module["_emscripten_bind_BehaviorsSharedData_SetName_1"]=function(){return(_emscripten_bind_BehaviorsSharedData_SetName_1=Module["_emscripten_bind_BehaviorsSharedData_SetName_1"]=Module["asm"]["ma"]).apply(null,arguments)};var _emscripten_bind_BehaviorsSharedData_GetName_0=Module["_emscripten_bind_BehaviorsSharedData_GetName_0"]=function(){return(_emscripten_bind_BehaviorsSharedData_GetName_0=Module["_emscripten_bind_BehaviorsSharedData_GetName_0"]=Module["asm"]["na"]).apply(null,arguments)};var _emscripten_bind_BehaviorsSharedData_GetTypeName_0=Module["_emscripten_bind_BehaviorsSharedData_GetTypeName_0"]=function(){return(_emscripten_bind_BehaviorsSharedData_GetTypeName_0=Module["_emscripten_bind_BehaviorsSharedData_GetTypeName_0"]=Module["asm"]["oa"]).apply(null,arguments)};var _emscripten_bind_BehaviorsSharedData_GetProperties_0=Module["_emscripten_bind_BehaviorsSharedData_GetProperties_0"]=function(){return(_emscripten_bind_BehaviorsSharedData_GetProperties_0=Module["_emscripten_bind_BehaviorsSharedData_GetProperties_0"]=Module["asm"]["pa"]).apply(null,arguments)};var _emscripten_bind_BehaviorsSharedData_UpdateProperty_2=Module["_emscripten_bind_BehaviorsSharedData_UpdateProperty_2"]=function(){return(_emscripten_bind_BehaviorsSharedData_UpdateProperty_2=Module["_emscripten_bind_BehaviorsSharedData_UpdateProperty_2"]=Module["asm"]["qa"]).apply(null,arguments)};var _emscripten_bind_BehaviorsSharedData_InitializeContent_0=Module["_emscripten_bind_BehaviorsSharedData_InitializeContent_0"]=function(){return(_emscripten_bind_BehaviorsSharedData_InitializeContent_0=Module["_emscripten_bind_BehaviorsSharedData_InitializeContent_0"]=Module["asm"]["ra"]).apply(null,arguments)};var _emscripten_bind_BehaviorsSharedData_GetPropertiesQuickCustomizationVisibilities_0=Module["_emscripten_bind_BehaviorsSharedData_GetPropertiesQuickCustomizationVisibilities_0"]=function(){return(_emscripten_bind_BehaviorsSharedData_GetPropertiesQuickCustomizationVisibilities_0=Module["_emscripten_bind_BehaviorsSharedData_GetPropertiesQuickCustomizationVisibilities_0"]=Module["asm"]["sa"]).apply(null,arguments)};var _emscripten_bind_BehaviorsSharedData___destroy___0=Module["_emscripten_bind_BehaviorsSharedData___destroy___0"]=function(){return(_emscripten_bind_BehaviorsSharedData___destroy___0=Module["_emscripten_bind_BehaviorsSharedData___destroy___0"]=Module["asm"]["ta"]).apply(null,arguments)};var _emscripten_bind_ObjectConfiguration_ObjectConfiguration_0=Module["_emscripten_bind_ObjectConfiguration_ObjectConfiguration_0"]=function(){return(_emscripten_bind_ObjectConfiguration_ObjectConfiguration_0=Module["_emscripten_bind_ObjectConfiguration_ObjectConfiguration_0"]=Module["asm"]["ua"]).apply(null,arguments)};var _emscripten_bind_ObjectConfiguration_Clone_0=Module["_emscripten_bind_ObjectConfiguration_Clone_0"]=function(){return(_emscripten_bind_ObjectConfiguration_Clone_0=Module["_emscripten_bind_ObjectConfiguration_Clone_0"]=Module["asm"]["va"]).apply(null,arguments)};var _emscripten_bind_ObjectConfiguration_GetType_0=Module["_emscripten_bind_ObjectConfiguration_GetType_0"]=function(){return(_emscripten_bind_ObjectConfiguration_GetType_0=Module["_emscripten_bind_ObjectConfiguration_GetType_0"]=Module["asm"]["wa"]).apply(null,arguments)};var _emscripten_bind_ObjectConfiguration_SetType_1=Module["_emscripten_bind_ObjectConfiguration_SetType_1"]=function(){return(_emscripten_bind_ObjectConfiguration_SetType_1=Module["_emscripten_bind_ObjectConfiguration_SetType_1"]=Module["asm"]["xa"]).apply(null,arguments)};var _emscripten_bind_ObjectConfiguration_GetProperties_0=Module["_emscripten_bind_ObjectConfiguration_GetProperties_0"]=function(){return(_emscripten_bind_ObjectConfiguration_GetProperties_0=Module["_emscripten_bind_ObjectConfiguration_GetProperties_0"]=Module["asm"]["ya"]).apply(null,arguments)};var _emscripten_bind_ObjectConfiguration_UpdateProperty_2=Module["_emscripten_bind_ObjectConfiguration_UpdateProperty_2"]=function(){return(_emscripten_bind_ObjectConfiguration_UpdateProperty_2=Module["_emscripten_bind_ObjectConfiguration_UpdateProperty_2"]=Module["asm"]["za"]).apply(null,arguments)};var _emscripten_bind_ObjectConfiguration_GetInitialInstanceProperties_1=Module["_emscripten_bind_ObjectConfiguration_GetInitialInstanceProperties_1"]=function(){return(_emscripten_bind_ObjectConfiguration_GetInitialInstanceProperties_1=Module["_emscripten_bind_ObjectConfiguration_GetInitialInstanceProperties_1"]=Module["asm"]["Aa"]).apply(null,arguments)};var _emscripten_bind_ObjectConfiguration_UpdateInitialInstanceProperty_3=Module["_emscripten_bind_ObjectConfiguration_UpdateInitialInstanceProperty_3"]=function(){return(_emscripten_bind_ObjectConfiguration_UpdateInitialInstanceProperty_3=Module["_emscripten_bind_ObjectConfiguration_UpdateInitialInstanceProperty_3"]=Module["asm"]["Ba"]).apply(null,arguments)};var _emscripten_bind_ObjectConfiguration_ExposeResources_1=Module["_emscripten_bind_ObjectConfiguration_ExposeResources_1"]=function(){return(_emscripten_bind_ObjectConfiguration_ExposeResources_1=Module["_emscripten_bind_ObjectConfiguration_ExposeResources_1"]=Module["asm"]["Ca"]).apply(null,arguments)};var _emscripten_bind_ObjectConfiguration_SerializeTo_1=Module["_emscripten_bind_ObjectConfiguration_SerializeTo_1"]=function(){return(_emscripten_bind_ObjectConfiguration_SerializeTo_1=Module["_emscripten_bind_ObjectConfiguration_SerializeTo_1"]=Module["asm"]["Da"]).apply(null,arguments)};var _emscripten_bind_ObjectConfiguration_UnserializeFrom_2=Module["_emscripten_bind_ObjectConfiguration_UnserializeFrom_2"]=function(){return(_emscripten_bind_ObjectConfiguration_UnserializeFrom_2=Module["_emscripten_bind_ObjectConfiguration_UnserializeFrom_2"]=Module["asm"]["Ea"]).apply(null,arguments)};var _emscripten_bind_ObjectConfiguration_GetAnimationsCount_0=Module["_emscripten_bind_ObjectConfiguration_GetAnimationsCount_0"]=function(){return(_emscripten_bind_ObjectConfiguration_GetAnimationsCount_0=Module["_emscripten_bind_ObjectConfiguration_GetAnimationsCount_0"]=Module["asm"]["Fa"]).apply(null,arguments)};var _emscripten_bind_ObjectConfiguration_GetAnimationName_1=Module["_emscripten_bind_ObjectConfiguration_GetAnimationName_1"]=function(){return(_emscripten_bind_ObjectConfiguration_GetAnimationName_1=Module["_emscripten_bind_ObjectConfiguration_GetAnimationName_1"]=Module["asm"]["Ga"]).apply(null,arguments)};var _emscripten_bind_ObjectConfiguration___destroy___0=Module["_emscripten_bind_ObjectConfiguration___destroy___0"]=function(){return(_emscripten_bind_ObjectConfiguration___destroy___0=Module["_emscripten_bind_ObjectConfiguration___destroy___0"]=Module["asm"]["Ha"]).apply(null,arguments)};var _emscripten_bind_PropertyDescriptor_PropertyDescriptor_1=Module["_emscripten_bind_PropertyDescriptor_PropertyDescriptor_1"]=function(){return(_emscripten_bind_PropertyDescriptor_PropertyDescriptor_1=Module["_emscripten_bind_PropertyDescriptor_PropertyDescriptor_1"]=Module["asm"]["Ia"]).apply(null,arguments)};var _emscripten_bind_PropertyDescriptor_SetValue_1=Module["_emscripten_bind_PropertyDescriptor_SetValue_1"]=function(){return(_emscripten_bind_PropertyDescriptor_SetValue_1=Module["_emscripten_bind_PropertyDescriptor_SetValue_1"]=Module["asm"]["Ja"]).apply(null,arguments)};var _emscripten_bind_PropertyDescriptor_GetValue_0=Module["_emscripten_bind_PropertyDescriptor_GetValue_0"]=function(){return(_emscripten_bind_PropertyDescriptor_GetValue_0=Module["_emscripten_bind_PropertyDescriptor_GetValue_0"]=Module["asm"]["Ka"]).apply(null,arguments)};var _emscripten_bind_PropertyDescriptor_SetType_1=Module["_emscripten_bind_PropertyDescriptor_SetType_1"]=function(){return(_emscripten_bind_PropertyDescriptor_SetType_1=Module["_emscripten_bind_PropertyDescriptor_SetType_1"]=Module["asm"]["La"]).apply(null,arguments)};var _emscripten_bind_PropertyDescriptor_GetType_0=Module["_emscripten_bind_PropertyDescriptor_GetType_0"]=function(){return(_emscripten_bind_PropertyDescriptor_GetType_0=Module["_emscripten_bind_PropertyDescriptor_GetType_0"]=Module["asm"]["Ma"]).apply(null,arguments)};var _emscripten_bind_PropertyDescriptor_SetLabel_1=Module["_emscripten_bind_PropertyDescriptor_SetLabel_1"]=function(){return(_emscripten_bind_PropertyDescriptor_SetLabel_1=Module["_emscripten_bind_PropertyDescriptor_SetLabel_1"]=Module["asm"]["Na"]).apply(null,arguments)};var _emscripten_bind_PropertyDescriptor_GetLabel_0=Module["_emscripten_bind_PropertyDescriptor_GetLabel_0"]=function(){return(_emscripten_bind_PropertyDescriptor_GetLabel_0=Module["_emscripten_bind_PropertyDescriptor_GetLabel_0"]=Module["asm"]["Oa"]).apply(null,arguments)};var _emscripten_bind_PropertyDescriptor_SetDescription_1=Module["_emscripten_bind_PropertyDescriptor_SetDescription_1"]=function(){return(_emscripten_bind_PropertyDescriptor_SetDescription_1=Module["_emscripten_bind_PropertyDescriptor_SetDescription_1"]=Module["asm"]["Pa"]).apply(null,arguments)};var _emscripten_bind_PropertyDescriptor_GetDescription_0=Module["_emscripten_bind_PropertyDescriptor_GetDescription_0"]=function(){return(_emscripten_bind_PropertyDescriptor_GetDescription_0=Module["_emscripten_bind_PropertyDescriptor_GetDescription_0"]=Module["asm"]["Qa"]).apply(null,arguments)};var _emscripten_bind_PropertyDescriptor_SetGroup_1=Module["_emscripten_bind_PropertyDescriptor_SetGroup_1"]=function(){return(_emscripten_bind_PropertyDescriptor_SetGroup_1=Module["_emscripten_bind_PropertyDescriptor_SetGroup_1"]=Module["asm"]["Ra"]).apply(null,arguments)};var _emscripten_bind_PropertyDescriptor_GetGroup_0=Module["_emscripten_bind_PropertyDescriptor_GetGroup_0"]=function(){return(_emscripten_bind_PropertyDescriptor_GetGroup_0=Module["_emscripten_bind_PropertyDescriptor_GetGroup_0"]=Module["asm"]["Sa"]).apply(null,arguments)};var _emscripten_bind_PropertyDescriptor_ClearChoices_0=Module["_emscripten_bind_PropertyDescriptor_ClearChoices_0"]=function(){return(_emscripten_bind_PropertyDescriptor_ClearChoices_0=Module["_emscripten_bind_PropertyDescriptor_ClearChoices_0"]=Module["asm"]["Ta"]).apply(null,arguments)};var _emscripten_bind_PropertyDescriptor_AddChoice_2=Module["_emscripten_bind_PropertyDescriptor_AddChoice_2"]=function(){return(_emscripten_bind_PropertyDescriptor_AddChoice_2=Module["_emscripten_bind_PropertyDescriptor_AddChoice_2"]=Module["asm"]["Ua"]).apply(null,arguments)};var _emscripten_bind_PropertyDescriptor_GetChoices_0=Module["_emscripten_bind_PropertyDescriptor_GetChoices_0"]=function(){return(_emscripten_bind_PropertyDescriptor_GetChoices_0=Module["_emscripten_bind_PropertyDescriptor_GetChoices_0"]=Module["asm"]["Va"]).apply(null,arguments)};var _emscripten_bind_PropertyDescriptor_AddExtraInfo_1=Module["_emscripten_bind_PropertyDescriptor_AddExtraInfo_1"]=function(){return(_emscripten_bind_PropertyDescriptor_AddExtraInfo_1=Module["_emscripten_bind_PropertyDescriptor_AddExtraInfo_1"]=Module["asm"]["Wa"]).apply(null,arguments)};var _emscripten_bind_PropertyDescriptor_SetExtraInfo_1=Module["_emscripten_bind_PropertyDescriptor_SetExtraInfo_1"]=function(){return(_emscripten_bind_PropertyDescriptor_SetExtraInfo_1=Module["_emscripten_bind_PropertyDescriptor_SetExtraInfo_1"]=Module["asm"]["Xa"]).apply(null,arguments)};var _emscripten_bind_PropertyDescriptor_GetExtraInfo_0=Module["_emscripten_bind_PropertyDescriptor_GetExtraInfo_0"]=function(){return(_emscripten_bind_PropertyDescriptor_GetExtraInfo_0=Module["_emscripten_bind_PropertyDescriptor_GetExtraInfo_0"]=Module["asm"]["Ya"]).apply(null,arguments)};var _emscripten_bind_PropertyDescriptor_SetHidden_1=Module["_emscripten_bind_PropertyDescriptor_SetHidden_1"]=function(){return(_emscripten_bind_PropertyDescriptor_SetHidden_1=Module["_emscripten_bind_PropertyDescriptor_SetHidden_1"]=Module["asm"]["Za"]).apply(null,arguments)};var _emscripten_bind_PropertyDescriptor_IsHidden_0=Module["_emscripten_bind_PropertyDescriptor_IsHidden_0"]=function(){return(_emscripten_bind_PropertyDescriptor_IsHidden_0=Module["_emscripten_bind_PropertyDescriptor_IsHidden_0"]=Module["asm"]["_a"]).apply(null,arguments)};var _emscripten_bind_PropertyDescriptor_SetDeprecated_1=Module["_emscripten_bind_PropertyDescriptor_SetDeprecated_1"]=function(){return(_emscripten_bind_PropertyDescriptor_SetDeprecated_1=Module["_emscripten_bind_PropertyDescriptor_SetDeprecated_1"]=Module["asm"]["$a"]).apply(null,arguments)};var _emscripten_bind_PropertyDescriptor_IsDeprecated_0=Module["_emscripten_bind_PropertyDescriptor_IsDeprecated_0"]=function(){return(_emscripten_bind_PropertyDescriptor_IsDeprecated_0=Module["_emscripten_bind_PropertyDescriptor_IsDeprecated_0"]=Module["asm"]["ab"]).apply(null,arguments)};var _emscripten_bind_PropertyDescriptor_SetAdvanced_1=Module["_emscripten_bind_PropertyDescriptor_SetAdvanced_1"]=function(){return(_emscripten_bind_PropertyDescriptor_SetAdvanced_1=Module["_emscripten_bind_PropertyDescriptor_SetAdvanced_1"]=Module["asm"]["bb"]).apply(null,arguments)};var _emscripten_bind_PropertyDescriptor_IsAdvanced_0=Module["_emscripten_bind_PropertyDescriptor_IsAdvanced_0"]=function(){return(_emscripten_bind_PropertyDescriptor_IsAdvanced_0=Module["_emscripten_bind_PropertyDescriptor_IsAdvanced_0"]=Module["asm"]["cb"]).apply(null,arguments)};var _emscripten_bind_PropertyDescriptor_GetMeasurementUnit_0=Module["_emscripten_bind_PropertyDescriptor_GetMeasurementUnit_0"]=function(){return(_emscripten_bind_PropertyDescriptor_GetMeasurementUnit_0=Module["_emscripten_bind_PropertyDescriptor_GetMeasurementUnit_0"]=Module["asm"]["db"]).apply(null,arguments)};var _emscripten_bind_PropertyDescriptor_SetMeasurementUnit_1=Module["_emscripten_bind_PropertyDescriptor_SetMeasurementUnit_1"]=function(){return(_emscripten_bind_PropertyDescriptor_SetMeasurementUnit_1=Module["_emscripten_bind_PropertyDescriptor_SetMeasurementUnit_1"]=Module["asm"]["eb"]).apply(null,arguments)};var _emscripten_bind_PropertyDescriptor_HasImpactOnOtherProperties_0=Module["_emscripten_bind_PropertyDescriptor_HasImpactOnOtherProperties_0"]=function(){return(_emscripten_bind_PropertyDescriptor_HasImpactOnOtherProperties_0=Module["_emscripten_bind_PropertyDescriptor_HasImpactOnOtherProperties_0"]=Module["asm"]["fb"]).apply(null,arguments)};var _emscripten_bind_PropertyDescriptor_SetHasImpactOnOtherProperties_1=Module["_emscripten_bind_PropertyDescriptor_SetHasImpactOnOtherProperties_1"]=function(){return(_emscripten_bind_PropertyDescriptor_SetHasImpactOnOtherProperties_1=Module["_emscripten_bind_PropertyDescriptor_SetHasImpactOnOtherProperties_1"]=Module["asm"]["gb"]).apply(null,arguments)};var _emscripten_bind_PropertyDescriptor_GetQuickCustomizationVisibility_0=Module["_emscripten_bind_PropertyDescriptor_GetQuickCustomizationVisibility_0"]=function(){return(_emscripten_bind_PropertyDescriptor_GetQuickCustomizationVisibility_0=Module["_emscripten_bind_PropertyDescriptor_GetQuickCustomizationVisibility_0"]=Module["asm"]["hb"]).apply(null,arguments)};var _emscripten_bind_PropertyDescriptor_SetQuickCustomizationVisibility_1=Module["_emscripten_bind_PropertyDescriptor_SetQuickCustomizationVisibility_1"]=function(){return(_emscripten_bind_PropertyDescriptor_SetQuickCustomizationVisibility_1=Module["_emscripten_bind_PropertyDescriptor_SetQuickCustomizationVisibility_1"]=Module["asm"]["ib"]).apply(null,arguments)};var _emscripten_bind_PropertyDescriptor_SerializeTo_1=Module["_emscripten_bind_PropertyDescriptor_SerializeTo_1"]=function(){return(_emscripten_bind_PropertyDescriptor_SerializeTo_1=Module["_emscripten_bind_PropertyDescriptor_SerializeTo_1"]=Module["asm"]["jb"]).apply(null,arguments)};var _emscripten_bind_PropertyDescriptor_UnserializeFrom_1=Module["_emscripten_bind_PropertyDescriptor_UnserializeFrom_1"]=function(){return(_emscripten_bind_PropertyDescriptor_UnserializeFrom_1=Module["_emscripten_bind_PropertyDescriptor_UnserializeFrom_1"]=Module["asm"]["kb"]).apply(null,arguments)};var _emscripten_bind_PropertyDescriptor_SerializeValuesTo_1=Module["_emscripten_bind_PropertyDescriptor_SerializeValuesTo_1"]=function(){return(_emscripten_bind_PropertyDescriptor_SerializeValuesTo_1=Module["_emscripten_bind_PropertyDescriptor_SerializeValuesTo_1"]=Module["asm"]["lb"]).apply(null,arguments)};var _emscripten_bind_PropertyDescriptor_UnserializeValuesFrom_1=Module["_emscripten_bind_PropertyDescriptor_UnserializeValuesFrom_1"]=function(){return(_emscripten_bind_PropertyDescriptor_UnserializeValuesFrom_1=Module["_emscripten_bind_PropertyDescriptor_UnserializeValuesFrom_1"]=Module["asm"]["mb"]).apply(null,arguments)};var _emscripten_bind_PropertyDescriptor___destroy___0=Module["_emscripten_bind_PropertyDescriptor___destroy___0"]=function(){return(_emscripten_bind_PropertyDescriptor___destroy___0=Module["_emscripten_bind_PropertyDescriptor___destroy___0"]=Module["asm"]["nb"]).apply(null,arguments)};var _emscripten_bind_JsonResource_JsonResource_0=Module["_emscripten_bind_JsonResource_JsonResource_0"]=function(){return(_emscripten_bind_JsonResource_JsonResource_0=Module["_emscripten_bind_JsonResource_JsonResource_0"]=Module["asm"]["ob"]).apply(null,arguments)};var _emscripten_bind_JsonResource_Clone_0=Module["_emscripten_bind_JsonResource_Clone_0"]=function(){return(_emscripten_bind_JsonResource_Clone_0=Module["_emscripten_bind_JsonResource_Clone_0"]=Module["asm"]["pb"]).apply(null,arguments)};var _emscripten_bind_JsonResource_SetName_1=Module["_emscripten_bind_JsonResource_SetName_1"]=function(){return(_emscripten_bind_JsonResource_SetName_1=Module["_emscripten_bind_JsonResource_SetName_1"]=Module["asm"]["qb"]).apply(null,arguments)};var _emscripten_bind_JsonResource_GetName_0=Module["_emscripten_bind_JsonResource_GetName_0"]=function(){return(_emscripten_bind_JsonResource_GetName_0=Module["_emscripten_bind_JsonResource_GetName_0"]=Module["asm"]["rb"]).apply(null,arguments)};var _emscripten_bind_JsonResource_SetKind_1=Module["_emscripten_bind_JsonResource_SetKind_1"]=function(){return(_emscripten_bind_JsonResource_SetKind_1=Module["_emscripten_bind_JsonResource_SetKind_1"]=Module["asm"]["sb"]).apply(null,arguments)};var _emscripten_bind_JsonResource_GetKind_0=Module["_emscripten_bind_JsonResource_GetKind_0"]=function(){return(_emscripten_bind_JsonResource_GetKind_0=Module["_emscripten_bind_JsonResource_GetKind_0"]=Module["asm"]["tb"]).apply(null,arguments)};var _emscripten_bind_JsonResource_IsUserAdded_0=Module["_emscripten_bind_JsonResource_IsUserAdded_0"]=function(){return(_emscripten_bind_JsonResource_IsUserAdded_0=Module["_emscripten_bind_JsonResource_IsUserAdded_0"]=Module["asm"]["ub"]).apply(null,arguments)};var _emscripten_bind_JsonResource_SetUserAdded_1=Module["_emscripten_bind_JsonResource_SetUserAdded_1"]=function(){return(_emscripten_bind_JsonResource_SetUserAdded_1=Module["_emscripten_bind_JsonResource_SetUserAdded_1"]=Module["asm"]["vb"]).apply(null,arguments)};var _emscripten_bind_JsonResource_UseFile_0=Module["_emscripten_bind_JsonResource_UseFile_0"]=function(){return(_emscripten_bind_JsonResource_UseFile_0=Module["_emscripten_bind_JsonResource_UseFile_0"]=Module["asm"]["wb"]).apply(null,arguments)};var _emscripten_bind_JsonResource_SetFile_1=Module["_emscripten_bind_JsonResource_SetFile_1"]=function(){return(_emscripten_bind_JsonResource_SetFile_1=Module["_emscripten_bind_JsonResource_SetFile_1"]=Module["asm"]["xb"]).apply(null,arguments)};var _emscripten_bind_JsonResource_GetFile_0=Module["_emscripten_bind_JsonResource_GetFile_0"]=function(){return(_emscripten_bind_JsonResource_GetFile_0=Module["_emscripten_bind_JsonResource_GetFile_0"]=Module["asm"]["yb"]).apply(null,arguments)};var _emscripten_bind_JsonResource_SetMetadata_1=Module["_emscripten_bind_JsonResource_SetMetadata_1"]=function(){return(_emscripten_bind_JsonResource_SetMetadata_1=Module["_emscripten_bind_JsonResource_SetMetadata_1"]=Module["asm"]["zb"]).apply(null,arguments)};var _emscripten_bind_JsonResource_GetMetadata_0=Module["_emscripten_bind_JsonResource_GetMetadata_0"]=function(){return(_emscripten_bind_JsonResource_GetMetadata_0=Module["_emscripten_bind_JsonResource_GetMetadata_0"]=Module["asm"]["Ab"]).apply(null,arguments)};var _emscripten_bind_JsonResource_SetOrigin_2=Module["_emscripten_bind_JsonResource_SetOrigin_2"]=function(){return(_emscripten_bind_JsonResource_SetOrigin_2=Module["_emscripten_bind_JsonResource_SetOrigin_2"]=Module["asm"]["Bb"]).apply(null,arguments)};var _emscripten_bind_JsonResource_GetOriginName_0=Module["_emscripten_bind_JsonResource_GetOriginName_0"]=function(){return(_emscripten_bind_JsonResource_GetOriginName_0=Module["_emscripten_bind_JsonResource_GetOriginName_0"]=Module["asm"]["Cb"]).apply(null,arguments)};var _emscripten_bind_JsonResource_GetOriginIdentifier_0=Module["_emscripten_bind_JsonResource_GetOriginIdentifier_0"]=function(){return(_emscripten_bind_JsonResource_GetOriginIdentifier_0=Module["_emscripten_bind_JsonResource_GetOriginIdentifier_0"]=Module["asm"]["Db"]).apply(null,arguments)};var _emscripten_bind_JsonResource_GetProperties_0=Module["_emscripten_bind_JsonResource_GetProperties_0"]=function(){return(_emscripten_bind_JsonResource_GetProperties_0=Module["_emscripten_bind_JsonResource_GetProperties_0"]=Module["asm"]["Eb"]).apply(null,arguments)};var _emscripten_bind_JsonResource_UpdateProperty_2=Module["_emscripten_bind_JsonResource_UpdateProperty_2"]=function(){return(_emscripten_bind_JsonResource_UpdateProperty_2=Module["_emscripten_bind_JsonResource_UpdateProperty_2"]=Module["asm"]["Fb"]).apply(null,arguments)};var _emscripten_bind_JsonResource_SerializeTo_1=Module["_emscripten_bind_JsonResource_SerializeTo_1"]=function(){return(_emscripten_bind_JsonResource_SerializeTo_1=Module["_emscripten_bind_JsonResource_SerializeTo_1"]=Module["asm"]["Gb"]).apply(null,arguments)};var _emscripten_bind_JsonResource_UnserializeFrom_1=Module["_emscripten_bind_JsonResource_UnserializeFrom_1"]=function(){return(_emscripten_bind_JsonResource_UnserializeFrom_1=Module["_emscripten_bind_JsonResource_UnserializeFrom_1"]=Module["asm"]["Hb"]).apply(null,arguments)};var _emscripten_bind_JsonResource___destroy___0=Module["_emscripten_bind_JsonResource___destroy___0"]=function(){return(_emscripten_bind_JsonResource___destroy___0=Module["_emscripten_bind_JsonResource___destroy___0"]=Module["asm"]["Ib"]).apply(null,arguments)};var _emscripten_bind_InitialInstanceJSFunctorWrapper___destroy___0=Module["_emscripten_bind_InitialInstanceJSFunctorWrapper___destroy___0"]=function(){return(_emscripten_bind_InitialInstanceJSFunctorWrapper___destroy___0=Module["_emscripten_bind_InitialInstanceJSFunctorWrapper___destroy___0"]=Module["asm"]["Jb"]).apply(null,arguments)};var _emscripten_bind_AbstractFunctionMetadata_AddParameter_2=Module["_emscripten_bind_AbstractFunctionMetadata_AddParameter_2"]=function(){return(_emscripten_bind_AbstractFunctionMetadata_AddParameter_2=Module["_emscripten_bind_AbstractFunctionMetadata_AddParameter_2"]=Module["asm"]["Kb"]).apply(null,arguments)};var _emscripten_bind_AbstractFunctionMetadata_AddParameter_3=Module["_emscripten_bind_AbstractFunctionMetadata_AddParameter_3"]=function(){return(_emscripten_bind_AbstractFunctionMetadata_AddParameter_3=Module["_emscripten_bind_AbstractFunctionMetadata_AddParameter_3"]=Module["asm"]["Lb"]).apply(null,arguments)};var _emscripten_bind_AbstractFunctionMetadata_AddParameter_4=Module["_emscripten_bind_AbstractFunctionMetadata_AddParameter_4"]=function(){return(_emscripten_bind_AbstractFunctionMetadata_AddParameter_4=Module["_emscripten_bind_AbstractFunctionMetadata_AddParameter_4"]=Module["asm"]["Mb"]).apply(null,arguments)};var _emscripten_bind_AbstractFunctionMetadata_AddCodeOnlyParameter_2=Module["_emscripten_bind_AbstractFunctionMetadata_AddCodeOnlyParameter_2"]=function(){return(_emscripten_bind_AbstractFunctionMetadata_AddCodeOnlyParameter_2=Module["_emscripten_bind_AbstractFunctionMetadata_AddCodeOnlyParameter_2"]=Module["asm"]["Nb"]).apply(null,arguments)};var _emscripten_bind_AbstractFunctionMetadata_SetDefaultValue_1=Module["_emscripten_bind_AbstractFunctionMetadata_SetDefaultValue_1"]=function(){return(_emscripten_bind_AbstractFunctionMetadata_SetDefaultValue_1=Module["_emscripten_bind_AbstractFunctionMetadata_SetDefaultValue_1"]=Module["asm"]["Ob"]).apply(null,arguments)};var _emscripten_bind_AbstractFunctionMetadata_SetParameterLongDescription_1=Module["_emscripten_bind_AbstractFunctionMetadata_SetParameterLongDescription_1"]=function(){return(_emscripten_bind_AbstractFunctionMetadata_SetParameterLongDescription_1=Module["_emscripten_bind_AbstractFunctionMetadata_SetParameterLongDescription_1"]=Module["asm"]["Pb"]).apply(null,arguments)};var _emscripten_bind_AbstractFunctionMetadata_SetParameterHint_1=Module["_emscripten_bind_AbstractFunctionMetadata_SetParameterHint_1"]=function(){return(_emscripten_bind_AbstractFunctionMetadata_SetParameterHint_1=Module["_emscripten_bind_AbstractFunctionMetadata_SetParameterHint_1"]=Module["asm"]["Qb"]).apply(null,arguments)};var _emscripten_bind_AbstractFunctionMetadata_SetParameterExtraInfo_1=Module["_emscripten_bind_AbstractFunctionMetadata_SetParameterExtraInfo_1"]=function(){return(_emscripten_bind_AbstractFunctionMetadata_SetParameterExtraInfo_1=Module["_emscripten_bind_AbstractFunctionMetadata_SetParameterExtraInfo_1"]=Module["asm"]["Rb"]).apply(null,arguments)};var _emscripten_bind_AbstractFunctionMetadata_SetHidden_0=Module["_emscripten_bind_AbstractFunctionMetadata_SetHidden_0"]=function(){return(_emscripten_bind_AbstractFunctionMetadata_SetHidden_0=Module["_emscripten_bind_AbstractFunctionMetadata_SetHidden_0"]=Module["asm"]["Sb"]).apply(null,arguments)};var _emscripten_bind_AbstractFunctionMetadata_SetPrivate_0=Module["_emscripten_bind_AbstractFunctionMetadata_SetPrivate_0"]=function(){return(_emscripten_bind_AbstractFunctionMetadata_SetPrivate_0=Module["_emscripten_bind_AbstractFunctionMetadata_SetPrivate_0"]=Module["asm"]["Tb"]).apply(null,arguments)};var _emscripten_bind_AbstractFunctionMetadata_SetFunctionName_1=Module["_emscripten_bind_AbstractFunctionMetadata_SetFunctionName_1"]=function(){return(_emscripten_bind_AbstractFunctionMetadata_SetFunctionName_1=Module["_emscripten_bind_AbstractFunctionMetadata_SetFunctionName_1"]=Module["asm"]["Ub"]).apply(null,arguments)};var _emscripten_bind_AbstractFunctionMetadata_SetIncludeFile_1=Module["_emscripten_bind_AbstractFunctionMetadata_SetIncludeFile_1"]=function(){return(_emscripten_bind_AbstractFunctionMetadata_SetIncludeFile_1=Module["_emscripten_bind_AbstractFunctionMetadata_SetIncludeFile_1"]=Module["asm"]["Vb"]).apply(null,arguments)};var _emscripten_bind_AbstractFunctionMetadata_AddIncludeFile_1=Module["_emscripten_bind_AbstractFunctionMetadata_AddIncludeFile_1"]=function(){return(_emscripten_bind_AbstractFunctionMetadata_AddIncludeFile_1=Module["_emscripten_bind_AbstractFunctionMetadata_AddIncludeFile_1"]=Module["asm"]["Wb"]).apply(null,arguments)};var _emscripten_bind_AbstractFunctionMetadata_GetIncludeFiles_0=Module["_emscripten_bind_AbstractFunctionMetadata_GetIncludeFiles_0"]=function(){return(_emscripten_bind_AbstractFunctionMetadata_GetIncludeFiles_0=Module["_emscripten_bind_AbstractFunctionMetadata_GetIncludeFiles_0"]=Module["asm"]["Xb"]).apply(null,arguments)};var _emscripten_bind_AbstractFunctionMetadata___destroy___0=Module["_emscripten_bind_AbstractFunctionMetadata___destroy___0"]=function(){return(_emscripten_bind_AbstractFunctionMetadata___destroy___0=Module["_emscripten_bind_AbstractFunctionMetadata___destroy___0"]=Module["asm"]["Yb"]).apply(null,arguments)};var _emscripten_bind_BaseEvent_BaseEvent_0=Module["_emscripten_bind_BaseEvent_BaseEvent_0"]=function(){return(_emscripten_bind_BaseEvent_BaseEvent_0=Module["_emscripten_bind_BaseEvent_BaseEvent_0"]=Module["asm"]["Zb"]).apply(null,arguments)};var _emscripten_bind_BaseEvent_Clone_0=Module["_emscripten_bind_BaseEvent_Clone_0"]=function(){return(_emscripten_bind_BaseEvent_Clone_0=Module["_emscripten_bind_BaseEvent_Clone_0"]=Module["asm"]["_b"]).apply(null,arguments)};var _emscripten_bind_BaseEvent_GetType_0=Module["_emscripten_bind_BaseEvent_GetType_0"]=function(){return(_emscripten_bind_BaseEvent_GetType_0=Module["_emscripten_bind_BaseEvent_GetType_0"]=Module["asm"]["$b"]).apply(null,arguments)};var _emscripten_bind_BaseEvent_SetType_1=Module["_emscripten_bind_BaseEvent_SetType_1"]=function(){return(_emscripten_bind_BaseEvent_SetType_1=Module["_emscripten_bind_BaseEvent_SetType_1"]=Module["asm"]["ac"]).apply(null,arguments)};var _emscripten_bind_BaseEvent_IsExecutable_0=Module["_emscripten_bind_BaseEvent_IsExecutable_0"]=function(){return(_emscripten_bind_BaseEvent_IsExecutable_0=Module["_emscripten_bind_BaseEvent_IsExecutable_0"]=Module["asm"]["bc"]).apply(null,arguments)};var _emscripten_bind_BaseEvent_CanHaveSubEvents_0=Module["_emscripten_bind_BaseEvent_CanHaveSubEvents_0"]=function(){return(_emscripten_bind_BaseEvent_CanHaveSubEvents_0=Module["_emscripten_bind_BaseEvent_CanHaveSubEvents_0"]=Module["asm"]["cc"]).apply(null,arguments)};var _emscripten_bind_BaseEvent_HasSubEvents_0=Module["_emscripten_bind_BaseEvent_HasSubEvents_0"]=function(){return(_emscripten_bind_BaseEvent_HasSubEvents_0=Module["_emscripten_bind_BaseEvent_HasSubEvents_0"]=Module["asm"]["dc"]).apply(null,arguments)};var _emscripten_bind_BaseEvent_GetSubEvents_0=Module["_emscripten_bind_BaseEvent_GetSubEvents_0"]=function(){return(_emscripten_bind_BaseEvent_GetSubEvents_0=Module["_emscripten_bind_BaseEvent_GetSubEvents_0"]=Module["asm"]["ec"]).apply(null,arguments)};var _emscripten_bind_BaseEvent_CanHaveVariables_0=Module["_emscripten_bind_BaseEvent_CanHaveVariables_0"]=function(){return(_emscripten_bind_BaseEvent_CanHaveVariables_0=Module["_emscripten_bind_BaseEvent_CanHaveVariables_0"]=Module["asm"]["fc"]).apply(null,arguments)};var _emscripten_bind_BaseEvent_HasVariables_0=Module["_emscripten_bind_BaseEvent_HasVariables_0"]=function(){return(_emscripten_bind_BaseEvent_HasVariables_0=Module["_emscripten_bind_BaseEvent_HasVariables_0"]=Module["asm"]["gc"]).apply(null,arguments)};var _emscripten_bind_BaseEvent_GetVariables_0=Module["_emscripten_bind_BaseEvent_GetVariables_0"]=function(){return(_emscripten_bind_BaseEvent_GetVariables_0=Module["_emscripten_bind_BaseEvent_GetVariables_0"]=Module["asm"]["hc"]).apply(null,arguments)};var _emscripten_bind_BaseEvent_IsDisabled_0=Module["_emscripten_bind_BaseEvent_IsDisabled_0"]=function(){return(_emscripten_bind_BaseEvent_IsDisabled_0=Module["_emscripten_bind_BaseEvent_IsDisabled_0"]=Module["asm"]["ic"]).apply(null,arguments)};var _emscripten_bind_BaseEvent_SetDisabled_1=Module["_emscripten_bind_BaseEvent_SetDisabled_1"]=function(){return(_emscripten_bind_BaseEvent_SetDisabled_1=Module["_emscripten_bind_BaseEvent_SetDisabled_1"]=Module["asm"]["jc"]).apply(null,arguments)};var _emscripten_bind_BaseEvent_IsFolded_0=Module["_emscripten_bind_BaseEvent_IsFolded_0"]=function(){return(_emscripten_bind_BaseEvent_IsFolded_0=Module["_emscripten_bind_BaseEvent_IsFolded_0"]=Module["asm"]["kc"]).apply(null,arguments)};var _emscripten_bind_BaseEvent_SetFolded_1=Module["_emscripten_bind_BaseEvent_SetFolded_1"]=function(){return(_emscripten_bind_BaseEvent_SetFolded_1=Module["_emscripten_bind_BaseEvent_SetFolded_1"]=Module["asm"]["lc"]).apply(null,arguments)};var _emscripten_bind_BaseEvent_SerializeTo_1=Module["_emscripten_bind_BaseEvent_SerializeTo_1"]=function(){return(_emscripten_bind_BaseEvent_SerializeTo_1=Module["_emscripten_bind_BaseEvent_SerializeTo_1"]=Module["asm"]["mc"]).apply(null,arguments)};var _emscripten_bind_BaseEvent_UnserializeFrom_2=Module["_emscripten_bind_BaseEvent_UnserializeFrom_2"]=function(){return(_emscripten_bind_BaseEvent_UnserializeFrom_2=Module["_emscripten_bind_BaseEvent_UnserializeFrom_2"]=Module["asm"]["nc"]).apply(null,arguments)};var _emscripten_bind_BaseEvent_GetAiGeneratedEventId_0=Module["_emscripten_bind_BaseEvent_GetAiGeneratedEventId_0"]=function(){return(_emscripten_bind_BaseEvent_GetAiGeneratedEventId_0=Module["_emscripten_bind_BaseEvent_GetAiGeneratedEventId_0"]=Module["asm"]["oc"]).apply(null,arguments)};var _emscripten_bind_BaseEvent_SetAiGeneratedEventId_1=Module["_emscripten_bind_BaseEvent_SetAiGeneratedEventId_1"]=function(){return(_emscripten_bind_BaseEvent_SetAiGeneratedEventId_1=Module["_emscripten_bind_BaseEvent_SetAiGeneratedEventId_1"]=Module["asm"]["pc"]).apply(null,arguments)};var _emscripten_bind_BaseEvent___destroy___0=Module["_emscripten_bind_BaseEvent___destroy___0"]=function(){return(_emscripten_bind_BaseEvent___destroy___0=Module["_emscripten_bind_BaseEvent___destroy___0"]=Module["asm"]["qc"]).apply(null,arguments)};var _emscripten_bind_AbstractEventsBasedEntity_GetEventsFunctions_0=Module["_emscripten_bind_AbstractEventsBasedEntity_GetEventsFunctions_0"]=function(){return(_emscripten_bind_AbstractEventsBasedEntity_GetEventsFunctions_0=Module["_emscripten_bind_AbstractEventsBasedEntity_GetEventsFunctions_0"]=Module["asm"]["rc"]).apply(null,arguments)};var _emscripten_bind_AbstractEventsBasedEntity_GetPropertyDescriptors_0=Module["_emscripten_bind_AbstractEventsBasedEntity_GetPropertyDescriptors_0"]=function(){return(_emscripten_bind_AbstractEventsBasedEntity_GetPropertyDescriptors_0=Module["_emscripten_bind_AbstractEventsBasedEntity_GetPropertyDescriptors_0"]=Module["asm"]["sc"]).apply(null,arguments)};var _emscripten_bind_AbstractEventsBasedEntity_GetName_0=Module["_emscripten_bind_AbstractEventsBasedEntity_GetName_0"]=function(){return(_emscripten_bind_AbstractEventsBasedEntity_GetName_0=Module["_emscripten_bind_AbstractEventsBasedEntity_GetName_0"]=Module["asm"]["tc"]).apply(null,arguments)};var _emscripten_bind_AbstractEventsBasedEntity_GetFullName_0=Module["_emscripten_bind_AbstractEventsBasedEntity_GetFullName_0"]=function(){return(_emscripten_bind_AbstractEventsBasedEntity_GetFullName_0=Module["_emscripten_bind_AbstractEventsBasedEntity_GetFullName_0"]=Module["asm"]["uc"]).apply(null,arguments)};var _emscripten_bind_AbstractEventsBasedEntity_GetDescription_0=Module["_emscripten_bind_AbstractEventsBasedEntity_GetDescription_0"]=function(){return(_emscripten_bind_AbstractEventsBasedEntity_GetDescription_0=Module["_emscripten_bind_AbstractEventsBasedEntity_GetDescription_0"]=Module["asm"]["vc"]).apply(null,arguments)};var _emscripten_bind_AbstractEventsBasedEntity_IsPrivate_0=Module["_emscripten_bind_AbstractEventsBasedEntity_IsPrivate_0"]=function(){return(_emscripten_bind_AbstractEventsBasedEntity_IsPrivate_0=Module["_emscripten_bind_AbstractEventsBasedEntity_IsPrivate_0"]=Module["asm"]["wc"]).apply(null,arguments)};var _emscripten_bind_AbstractEventsBasedEntity_GetPreviewIconUrl_0=Module["_emscripten_bind_AbstractEventsBasedEntity_GetPreviewIconUrl_0"]=function(){return(_emscripten_bind_AbstractEventsBasedEntity_GetPreviewIconUrl_0=Module["_emscripten_bind_AbstractEventsBasedEntity_GetPreviewIconUrl_0"]=Module["asm"]["xc"]).apply(null,arguments)};var _emscripten_bind_AbstractEventsBasedEntity_GetIconUrl_0=Module["_emscripten_bind_AbstractEventsBasedEntity_GetIconUrl_0"]=function(){return(_emscripten_bind_AbstractEventsBasedEntity_GetIconUrl_0=Module["_emscripten_bind_AbstractEventsBasedEntity_GetIconUrl_0"]=Module["asm"]["yc"]).apply(null,arguments)};var _emscripten_bind_AbstractEventsBasedEntity_GetHelpPath_0=Module["_emscripten_bind_AbstractEventsBasedEntity_GetHelpPath_0"]=function(){return(_emscripten_bind_AbstractEventsBasedEntity_GetHelpPath_0=Module["_emscripten_bind_AbstractEventsBasedEntity_GetHelpPath_0"]=Module["asm"]["zc"]).apply(null,arguments)};var _emscripten_bind_AbstractEventsBasedEntity_SerializeTo_1=Module["_emscripten_bind_AbstractEventsBasedEntity_SerializeTo_1"]=function(){return(_emscripten_bind_AbstractEventsBasedEntity_SerializeTo_1=Module["_emscripten_bind_AbstractEventsBasedEntity_SerializeTo_1"]=Module["asm"]["Ac"]).apply(null,arguments)};var _emscripten_bind_AbstractEventsBasedEntity_UnserializeFrom_2=Module["_emscripten_bind_AbstractEventsBasedEntity_UnserializeFrom_2"]=function(){return(_emscripten_bind_AbstractEventsBasedEntity_UnserializeFrom_2=Module["_emscripten_bind_AbstractEventsBasedEntity_UnserializeFrom_2"]=Module["asm"]["Bc"]).apply(null,arguments)};var _emscripten_bind_AbstractEventsBasedEntity___destroy___0=Module["_emscripten_bind_AbstractEventsBasedEntity___destroy___0"]=function(){return(_emscripten_bind_AbstractEventsBasedEntity___destroy___0=Module["_emscripten_bind_AbstractEventsBasedEntity___destroy___0"]=Module["asm"]["Cc"]).apply(null,arguments)};var _emscripten_bind_AbstractFileSystem___destroy___0=Module["_emscripten_bind_AbstractFileSystem___destroy___0"]=function(){return(_emscripten_bind_AbstractFileSystem___destroy___0=Module["_emscripten_bind_AbstractFileSystem___destroy___0"]=Module["asm"]["Dc"]).apply(null,arguments)};var _emscripten_bind_ReadOnlyArbitraryEventsWorkerWithContext_SetSkipDisabledEvents_1=Module["_emscripten_bind_ReadOnlyArbitraryEventsWorkerWithContext_SetSkipDisabledEvents_1"]=function(){return(_emscripten_bind_ReadOnlyArbitraryEventsWorkerWithContext_SetSkipDisabledEvents_1=Module["_emscripten_bind_ReadOnlyArbitraryEventsWorkerWithContext_SetSkipDisabledEvents_1"]=Module["asm"]["Ec"]).apply(null,arguments)};var _emscripten_bind_ReadOnlyArbitraryEventsWorkerWithContext_Launch_2=Module["_emscripten_bind_ReadOnlyArbitraryEventsWorkerWithContext_Launch_2"]=function(){return(_emscripten_bind_ReadOnlyArbitraryEventsWorkerWithContext_Launch_2=Module["_emscripten_bind_ReadOnlyArbitraryEventsWorkerWithContext_Launch_2"]=Module["asm"]["Fc"]).apply(null,arguments)};var _emscripten_bind_ReadOnlyArbitraryEventsWorkerWithContext___destroy___0=Module["_emscripten_bind_ReadOnlyArbitraryEventsWorkerWithContext___destroy___0"]=function(){return(_emscripten_bind_ReadOnlyArbitraryEventsWorkerWithContext___destroy___0=Module["_emscripten_bind_ReadOnlyArbitraryEventsWorkerWithContext___destroy___0"]=Module["asm"]["Gc"]).apply(null,arguments)};var _emscripten_bind_ArbitraryResourceWorker___destroy___0=Module["_emscripten_bind_ArbitraryResourceWorker___destroy___0"]=function(){return(_emscripten_bind_ArbitraryResourceWorker___destroy___0=Module["_emscripten_bind_ArbitraryResourceWorker___destroy___0"]=Module["asm"]["Hc"]).apply(null,arguments)};var _emscripten_bind_VoidPtr___destroy___0=Module["_emscripten_bind_VoidPtr___destroy___0"]=function(){return(_emscripten_bind_VoidPtr___destroy___0=Module["_emscripten_bind_VoidPtr___destroy___0"]=Module["asm"]["Ic"]).apply(null,arguments)};var _emscripten_bind_VectorString_VectorString_0=Module["_emscripten_bind_VectorString_VectorString_0"]=function(){return(_emscripten_bind_VectorString_VectorString_0=Module["_emscripten_bind_VectorString_VectorString_0"]=Module["asm"]["Jc"]).apply(null,arguments)};var _emscripten_bind_VectorString_push_back_1=Module["_emscripten_bind_VectorString_push_back_1"]=function(){return(_emscripten_bind_VectorString_push_back_1=Module["_emscripten_bind_VectorString_push_back_1"]=Module["asm"]["Kc"]).apply(null,arguments)};var _emscripten_bind_VectorString_resize_1=Module["_emscripten_bind_VectorString_resize_1"]=function(){return(_emscripten_bind_VectorString_resize_1=Module["_emscripten_bind_VectorString_resize_1"]=Module["asm"]["Lc"]).apply(null,arguments)};var _emscripten_bind_VectorString_size_0=Module["_emscripten_bind_VectorString_size_0"]=function(){return(_emscripten_bind_VectorString_size_0=Module["_emscripten_bind_VectorString_size_0"]=Module["asm"]["Mc"]).apply(null,arguments)};var _emscripten_bind_VectorString_at_1=Module["_emscripten_bind_VectorString_at_1"]=function(){return(_emscripten_bind_VectorString_at_1=Module["_emscripten_bind_VectorString_at_1"]=Module["asm"]["Nc"]).apply(null,arguments)};var _emscripten_bind_VectorString_WRAPPED_set_2=Module["_emscripten_bind_VectorString_WRAPPED_set_2"]=function(){return(_emscripten_bind_VectorString_WRAPPED_set_2=Module["_emscripten_bind_VectorString_WRAPPED_set_2"]=Module["asm"]["Oc"]).apply(null,arguments)};var _emscripten_bind_VectorString_clear_0=Module["_emscripten_bind_VectorString_clear_0"]=function(){return(_emscripten_bind_VectorString_clear_0=Module["_emscripten_bind_VectorString_clear_0"]=Module["asm"]["Pc"]).apply(null,arguments)};var _emscripten_bind_VectorString___destroy___0=Module["_emscripten_bind_VectorString___destroy___0"]=function(){return(_emscripten_bind_VectorString___destroy___0=Module["_emscripten_bind_VectorString___destroy___0"]=Module["asm"]["Qc"]).apply(null,arguments)};var _emscripten_bind_VectorPlatformExtension_size_0=Module["_emscripten_bind_VectorPlatformExtension_size_0"]=function(){return(_emscripten_bind_VectorPlatformExtension_size_0=Module["_emscripten_bind_VectorPlatformExtension_size_0"]=Module["asm"]["Rc"]).apply(null,arguments)};var _emscripten_bind_VectorPlatformExtension_WRAPPED_at_1=Module["_emscripten_bind_VectorPlatformExtension_WRAPPED_at_1"]=function(){return(_emscripten_bind_VectorPlatformExtension_WRAPPED_at_1=Module["_emscripten_bind_VectorPlatformExtension_WRAPPED_at_1"]=Module["asm"]["Sc"]).apply(null,arguments)};var _emscripten_bind_VectorPlatformExtension___destroy___0=Module["_emscripten_bind_VectorPlatformExtension___destroy___0"]=function(){return(_emscripten_bind_VectorPlatformExtension___destroy___0=Module["_emscripten_bind_VectorPlatformExtension___destroy___0"]=Module["asm"]["Tc"]).apply(null,arguments)};var _emscripten_bind_VectorDependencyMetadata_size_0=Module["_emscripten_bind_VectorDependencyMetadata_size_0"]=function(){return(_emscripten_bind_VectorDependencyMetadata_size_0=Module["_emscripten_bind_VectorDependencyMetadata_size_0"]=Module["asm"]["Uc"]).apply(null,arguments)};var _emscripten_bind_VectorDependencyMetadata_at_1=Module["_emscripten_bind_VectorDependencyMetadata_at_1"]=function(){return(_emscripten_bind_VectorDependencyMetadata_at_1=Module["_emscripten_bind_VectorDependencyMetadata_at_1"]=Module["asm"]["Vc"]).apply(null,arguments)};var _emscripten_bind_VectorDependencyMetadata___destroy___0=Module["_emscripten_bind_VectorDependencyMetadata___destroy___0"]=function(){return(_emscripten_bind_VectorDependencyMetadata___destroy___0=Module["_emscripten_bind_VectorDependencyMetadata___destroy___0"]=Module["asm"]["Wc"]).apply(null,arguments)};var _emscripten_bind_VectorSourceFileMetadata_size_0=Module["_emscripten_bind_VectorSourceFileMetadata_size_0"]=function(){return(_emscripten_bind_VectorSourceFileMetadata_size_0=Module["_emscripten_bind_VectorSourceFileMetadata_size_0"]=Module["asm"]["Xc"]).apply(null,arguments)};var _emscripten_bind_VectorSourceFileMetadata_at_1=Module["_emscripten_bind_VectorSourceFileMetadata_at_1"]=function(){return(_emscripten_bind_VectorSourceFileMetadata_at_1=Module["_emscripten_bind_VectorSourceFileMetadata_at_1"]=Module["asm"]["Yc"]).apply(null,arguments)};var _emscripten_bind_VectorSourceFileMetadata___destroy___0=Module["_emscripten_bind_VectorSourceFileMetadata___destroy___0"]=function(){return(_emscripten_bind_VectorSourceFileMetadata___destroy___0=Module["_emscripten_bind_VectorSourceFileMetadata___destroy___0"]=Module["asm"]["Zc"]).apply(null,arguments)};var _emscripten_bind_VectorInt_size_0=Module["_emscripten_bind_VectorInt_size_0"]=function(){return(_emscripten_bind_VectorInt_size_0=Module["_emscripten_bind_VectorInt_size_0"]=Module["asm"]["_c"]).apply(null,arguments)};var _emscripten_bind_VectorInt_at_1=Module["_emscripten_bind_VectorInt_at_1"]=function(){return(_emscripten_bind_VectorInt_at_1=Module["_emscripten_bind_VectorInt_at_1"]=Module["asm"]["$c"]).apply(null,arguments)};var _emscripten_bind_VectorInt___destroy___0=Module["_emscripten_bind_VectorInt___destroy___0"]=function(){return(_emscripten_bind_VectorInt___destroy___0=Module["_emscripten_bind_VectorInt___destroy___0"]=Module["asm"]["ad"]).apply(null,arguments)};var _emscripten_bind_VectorVariable_size_0=Module["_emscripten_bind_VectorVariable_size_0"]=function(){return(_emscripten_bind_VectorVariable_size_0=Module["_emscripten_bind_VectorVariable_size_0"]=Module["asm"]["bd"]).apply(null,arguments)};var _emscripten_bind_VectorVariable_WRAPPED_at_1=Module["_emscripten_bind_VectorVariable_WRAPPED_at_1"]=function(){return(_emscripten_bind_VectorVariable_WRAPPED_at_1=Module["_emscripten_bind_VectorVariable_WRAPPED_at_1"]=Module["asm"]["cd"]).apply(null,arguments)};var _emscripten_bind_VectorVariable___destroy___0=Module["_emscripten_bind_VectorVariable___destroy___0"]=function(){return(_emscripten_bind_VectorVariable___destroy___0=Module["_emscripten_bind_VectorVariable___destroy___0"]=Module["asm"]["dd"]).apply(null,arguments)};var _emscripten_bind_VectorObjectFolderOrObject_size_0=Module["_emscripten_bind_VectorObjectFolderOrObject_size_0"]=function(){return(_emscripten_bind_VectorObjectFolderOrObject_size_0=Module["_emscripten_bind_VectorObjectFolderOrObject_size_0"]=Module["asm"]["ed"]).apply(null,arguments)};var _emscripten_bind_VectorObjectFolderOrObject_at_1=Module["_emscripten_bind_VectorObjectFolderOrObject_at_1"]=function(){return(_emscripten_bind_VectorObjectFolderOrObject_at_1=Module["_emscripten_bind_VectorObjectFolderOrObject_at_1"]=Module["asm"]["fd"]).apply(null,arguments)};var _emscripten_bind_VectorObjectFolderOrObject___destroy___0=Module["_emscripten_bind_VectorObjectFolderOrObject___destroy___0"]=function(){return(_emscripten_bind_VectorObjectFolderOrObject___destroy___0=Module["_emscripten_bind_VectorObjectFolderOrObject___destroy___0"]=Module["asm"]["gd"]).apply(null,arguments)};var _emscripten_bind_VectorPropertyFolderOrProperty_size_0=Module["_emscripten_bind_VectorPropertyFolderOrProperty_size_0"]=function(){return(_emscripten_bind_VectorPropertyFolderOrProperty_size_0=Module["_emscripten_bind_VectorPropertyFolderOrProperty_size_0"]=Module["asm"]["hd"]).apply(null,arguments)};var _emscripten_bind_VectorPropertyFolderOrProperty_at_1=Module["_emscripten_bind_VectorPropertyFolderOrProperty_at_1"]=function(){return(_emscripten_bind_VectorPropertyFolderOrProperty_at_1=Module["_emscripten_bind_VectorPropertyFolderOrProperty_at_1"]=Module["asm"]["id"]).apply(null,arguments)};var _emscripten_bind_VectorPropertyFolderOrProperty___destroy___0=Module["_emscripten_bind_VectorPropertyFolderOrProperty___destroy___0"]=function(){return(_emscripten_bind_VectorPropertyFolderOrProperty___destroy___0=Module["_emscripten_bind_VectorPropertyFolderOrProperty___destroy___0"]=Module["asm"]["jd"]).apply(null,arguments)};var _emscripten_bind_VectorFunctionFolderOrFunction_size_0=Module["_emscripten_bind_VectorFunctionFolderOrFunction_size_0"]=function(){return(_emscripten_bind_VectorFunctionFolderOrFunction_size_0=Module["_emscripten_bind_VectorFunctionFolderOrFunction_size_0"]=Module["asm"]["kd"]).apply(null,arguments)};var _emscripten_bind_VectorFunctionFolderOrFunction_at_1=Module["_emscripten_bind_VectorFunctionFolderOrFunction_at_1"]=function(){return(_emscripten_bind_VectorFunctionFolderOrFunction_at_1=Module["_emscripten_bind_VectorFunctionFolderOrFunction_at_1"]=Module["asm"]["ld"]).apply(null,arguments)};var _emscripten_bind_VectorFunctionFolderOrFunction___destroy___0=Module["_emscripten_bind_VectorFunctionFolderOrFunction___destroy___0"]=function(){return(_emscripten_bind_VectorFunctionFolderOrFunction___destroy___0=Module["_emscripten_bind_VectorFunctionFolderOrFunction___destroy___0"]=Module["asm"]["md"]).apply(null,arguments)};var _emscripten_bind_VectorScreenshot_size_0=Module["_emscripten_bind_VectorScreenshot_size_0"]=function(){return(_emscripten_bind_VectorScreenshot_size_0=Module["_emscripten_bind_VectorScreenshot_size_0"]=Module["asm"]["nd"]).apply(null,arguments)};var _emscripten_bind_VectorScreenshot_at_1=Module["_emscripten_bind_VectorScreenshot_at_1"]=function(){return(_emscripten_bind_VectorScreenshot_at_1=Module["_emscripten_bind_VectorScreenshot_at_1"]=Module["asm"]["od"]).apply(null,arguments)};var _emscripten_bind_VectorScreenshot___destroy___0=Module["_emscripten_bind_VectorScreenshot___destroy___0"]=function(){return(_emscripten_bind_VectorScreenshot___destroy___0=Module["_emscripten_bind_VectorScreenshot___destroy___0"]=Module["asm"]["pd"]).apply(null,arguments)};var _emscripten_bind_MapStringString_MapStringString_0=Module["_emscripten_bind_MapStringString_MapStringString_0"]=function(){return(_emscripten_bind_MapStringString_MapStringString_0=Module["_emscripten_bind_MapStringString_MapStringString_0"]=Module["asm"]["qd"]).apply(null,arguments)};var _emscripten_bind_MapStringString_MAP_get_1=Module["_emscripten_bind_MapStringString_MAP_get_1"]=function(){return(_emscripten_bind_MapStringString_MAP_get_1=Module["_emscripten_bind_MapStringString_MAP_get_1"]=Module["asm"]["rd"]).apply(null,arguments)};var _emscripten_bind_MapStringString_MAP_set_2=Module["_emscripten_bind_MapStringString_MAP_set_2"]=function(){return(_emscripten_bind_MapStringString_MAP_set_2=Module["_emscripten_bind_MapStringString_MAP_set_2"]=Module["asm"]["sd"]).apply(null,arguments)};var _emscripten_bind_MapStringString_MAP_has_1=Module["_emscripten_bind_MapStringString_MAP_has_1"]=function(){return(_emscripten_bind_MapStringString_MAP_has_1=Module["_emscripten_bind_MapStringString_MAP_has_1"]=Module["asm"]["td"]).apply(null,arguments)};var _emscripten_bind_MapStringString_MAP_keys_0=Module["_emscripten_bind_MapStringString_MAP_keys_0"]=function(){return(_emscripten_bind_MapStringString_MAP_keys_0=Module["_emscripten_bind_MapStringString_MAP_keys_0"]=Module["asm"]["ud"]).apply(null,arguments)};var _emscripten_bind_MapStringString___destroy___0=Module["_emscripten_bind_MapStringString___destroy___0"]=function(){return(_emscripten_bind_MapStringString___destroy___0=Module["_emscripten_bind_MapStringString___destroy___0"]=Module["asm"]["vd"]).apply(null,arguments)};var _emscripten_bind_MapStringBoolean_MapStringBoolean_0=Module["_emscripten_bind_MapStringBoolean_MapStringBoolean_0"]=function(){return(_emscripten_bind_MapStringBoolean_MapStringBoolean_0=Module["_emscripten_bind_MapStringBoolean_MapStringBoolean_0"]=Module["asm"]["wd"]).apply(null,arguments)};var _emscripten_bind_MapStringBoolean_MAP_get_1=Module["_emscripten_bind_MapStringBoolean_MAP_get_1"]=function(){return(_emscripten_bind_MapStringBoolean_MAP_get_1=Module["_emscripten_bind_MapStringBoolean_MAP_get_1"]=Module["asm"]["xd"]).apply(null,arguments)};var _emscripten_bind_MapStringBoolean_MAP_set_2=Module["_emscripten_bind_MapStringBoolean_MAP_set_2"]=function(){return(_emscripten_bind_MapStringBoolean_MAP_set_2=Module["_emscripten_bind_MapStringBoolean_MAP_set_2"]=Module["asm"]["yd"]).apply(null,arguments)};var _emscripten_bind_MapStringBoolean_MAP_has_1=Module["_emscripten_bind_MapStringBoolean_MAP_has_1"]=function(){return(_emscripten_bind_MapStringBoolean_MAP_has_1=Module["_emscripten_bind_MapStringBoolean_MAP_has_1"]=Module["asm"]["zd"]).apply(null,arguments)};var _emscripten_bind_MapStringBoolean_MAP_keys_0=Module["_emscripten_bind_MapStringBoolean_MAP_keys_0"]=function(){return(_emscripten_bind_MapStringBoolean_MAP_keys_0=Module["_emscripten_bind_MapStringBoolean_MAP_keys_0"]=Module["asm"]["Ad"]).apply(null,arguments)};var _emscripten_bind_MapStringBoolean___destroy___0=Module["_emscripten_bind_MapStringBoolean___destroy___0"]=function(){return(_emscripten_bind_MapStringBoolean___destroy___0=Module["_emscripten_bind_MapStringBoolean___destroy___0"]=Module["asm"]["Bd"]).apply(null,arguments)};var _emscripten_bind_MapStringDouble_MapStringDouble_0=Module["_emscripten_bind_MapStringDouble_MapStringDouble_0"]=function(){return(_emscripten_bind_MapStringDouble_MapStringDouble_0=Module["_emscripten_bind_MapStringDouble_MapStringDouble_0"]=Module["asm"]["Cd"]).apply(null,arguments)};var _emscripten_bind_MapStringDouble_MAP_get_1=Module["_emscripten_bind_MapStringDouble_MAP_get_1"]=function(){return(_emscripten_bind_MapStringDouble_MAP_get_1=Module["_emscripten_bind_MapStringDouble_MAP_get_1"]=Module["asm"]["Dd"]).apply(null,arguments)};var _emscripten_bind_MapStringDouble_MAP_set_2=Module["_emscripten_bind_MapStringDouble_MAP_set_2"]=function(){return(_emscripten_bind_MapStringDouble_MAP_set_2=Module["_emscripten_bind_MapStringDouble_MAP_set_2"]=Module["asm"]["Ed"]).apply(null,arguments)};var _emscripten_bind_MapStringDouble_MAP_has_1=Module["_emscripten_bind_MapStringDouble_MAP_has_1"]=function(){return(_emscripten_bind_MapStringDouble_MAP_has_1=Module["_emscripten_bind_MapStringDouble_MAP_has_1"]=Module["asm"]["Fd"]).apply(null,arguments)};var _emscripten_bind_MapStringDouble_MAP_keys_0=Module["_emscripten_bind_MapStringDouble_MAP_keys_0"]=function(){return(_emscripten_bind_MapStringDouble_MAP_keys_0=Module["_emscripten_bind_MapStringDouble_MAP_keys_0"]=Module["asm"]["Gd"]).apply(null,arguments)};var _emscripten_bind_MapStringDouble___destroy___0=Module["_emscripten_bind_MapStringDouble___destroy___0"]=function(){return(_emscripten_bind_MapStringDouble___destroy___0=Module["_emscripten_bind_MapStringDouble___destroy___0"]=Module["asm"]["Hd"]).apply(null,arguments)};var _emscripten_bind_MapStringVariable_MAP_get_1=Module["_emscripten_bind_MapStringVariable_MAP_get_1"]=function(){return(_emscripten_bind_MapStringVariable_MAP_get_1=Module["_emscripten_bind_MapStringVariable_MAP_get_1"]=Module["asm"]["Id"]).apply(null,arguments)};var _emscripten_bind_MapStringVariable_MAP_set_2=Module["_emscripten_bind_MapStringVariable_MAP_set_2"]=function(){return(_emscripten_bind_MapStringVariable_MAP_set_2=Module["_emscripten_bind_MapStringVariable_MAP_set_2"]=Module["asm"]["Jd"]).apply(null,arguments)};var _emscripten_bind_MapStringVariable_MAP_has_1=Module["_emscripten_bind_MapStringVariable_MAP_has_1"]=function(){return(_emscripten_bind_MapStringVariable_MAP_has_1=Module["_emscripten_bind_MapStringVariable_MAP_has_1"]=Module["asm"]["Kd"]).apply(null,arguments)};var _emscripten_bind_MapStringVariable_MAP_keys_0=Module["_emscripten_bind_MapStringVariable_MAP_keys_0"]=function(){return(_emscripten_bind_MapStringVariable_MAP_keys_0=Module["_emscripten_bind_MapStringVariable_MAP_keys_0"]=Module["asm"]["Ld"]).apply(null,arguments)};var _emscripten_bind_MapStringVariable___destroy___0=Module["_emscripten_bind_MapStringVariable___destroy___0"]=function(){return(_emscripten_bind_MapStringVariable___destroy___0=Module["_emscripten_bind_MapStringVariable___destroy___0"]=Module["asm"]["Md"]).apply(null,arguments)};var _emscripten_bind_MapStringExpressionMetadata_MAP_get_1=Module["_emscripten_bind_MapStringExpressionMetadata_MAP_get_1"]=function(){return(_emscripten_bind_MapStringExpressionMetadata_MAP_get_1=Module["_emscripten_bind_MapStringExpressionMetadata_MAP_get_1"]=Module["asm"]["Nd"]).apply(null,arguments)};var _emscripten_bind_MapStringExpressionMetadata_MAP_set_2=Module["_emscripten_bind_MapStringExpressionMetadata_MAP_set_2"]=function(){return(_emscripten_bind_MapStringExpressionMetadata_MAP_set_2=Module["_emscripten_bind_MapStringExpressionMetadata_MAP_set_2"]=Module["asm"]["Od"]).apply(null,arguments)};var _emscripten_bind_MapStringExpressionMetadata_MAP_has_1=Module["_emscripten_bind_MapStringExpressionMetadata_MAP_has_1"]=function(){return(_emscripten_bind_MapStringExpressionMetadata_MAP_has_1=Module["_emscripten_bind_MapStringExpressionMetadata_MAP_has_1"]=Module["asm"]["Pd"]).apply(null,arguments)};var _emscripten_bind_MapStringExpressionMetadata_MAP_keys_0=Module["_emscripten_bind_MapStringExpressionMetadata_MAP_keys_0"]=function(){return(_emscripten_bind_MapStringExpressionMetadata_MAP_keys_0=Module["_emscripten_bind_MapStringExpressionMetadata_MAP_keys_0"]=Module["asm"]["Qd"]).apply(null,arguments)};var _emscripten_bind_MapStringExpressionMetadata___destroy___0=Module["_emscripten_bind_MapStringExpressionMetadata___destroy___0"]=function(){return(_emscripten_bind_MapStringExpressionMetadata___destroy___0=Module["_emscripten_bind_MapStringExpressionMetadata___destroy___0"]=Module["asm"]["Rd"]).apply(null,arguments)};var _emscripten_bind_MapStringInstructionMetadata_MAP_get_1=Module["_emscripten_bind_MapStringInstructionMetadata_MAP_get_1"]=function(){return(_emscripten_bind_MapStringInstructionMetadata_MAP_get_1=Module["_emscripten_bind_MapStringInstructionMetadata_MAP_get_1"]=Module["asm"]["Sd"]).apply(null,arguments)};var _emscripten_bind_MapStringInstructionMetadata_MAP_set_2=Module["_emscripten_bind_MapStringInstructionMetadata_MAP_set_2"]=function(){return(_emscripten_bind_MapStringInstructionMetadata_MAP_set_2=Module["_emscripten_bind_MapStringInstructionMetadata_MAP_set_2"]=Module["asm"]["Td"]).apply(null,arguments)};var _emscripten_bind_MapStringInstructionMetadata_MAP_has_1=Module["_emscripten_bind_MapStringInstructionMetadata_MAP_has_1"]=function(){return(_emscripten_bind_MapStringInstructionMetadata_MAP_has_1=Module["_emscripten_bind_MapStringInstructionMetadata_MAP_has_1"]=Module["asm"]["Ud"]).apply(null,arguments)};var _emscripten_bind_MapStringInstructionMetadata_MAP_keys_0=Module["_emscripten_bind_MapStringInstructionMetadata_MAP_keys_0"]=function(){return(_emscripten_bind_MapStringInstructionMetadata_MAP_keys_0=Module["_emscripten_bind_MapStringInstructionMetadata_MAP_keys_0"]=Module["asm"]["Vd"]).apply(null,arguments)};var _emscripten_bind_MapStringInstructionMetadata___destroy___0=Module["_emscripten_bind_MapStringInstructionMetadata___destroy___0"]=function(){return(_emscripten_bind_MapStringInstructionMetadata___destroy___0=Module["_emscripten_bind_MapStringInstructionMetadata___destroy___0"]=Module["asm"]["Wd"]).apply(null,arguments)};var _emscripten_bind_MapStringEventMetadata_MAP_get_1=Module["_emscripten_bind_MapStringEventMetadata_MAP_get_1"]=function(){return(_emscripten_bind_MapStringEventMetadata_MAP_get_1=Module["_emscripten_bind_MapStringEventMetadata_MAP_get_1"]=Module["asm"]["Xd"]).apply(null,arguments)};var _emscripten_bind_MapStringEventMetadata_MAP_set_2=Module["_emscripten_bind_MapStringEventMetadata_MAP_set_2"]=function(){return(_emscripten_bind_MapStringEventMetadata_MAP_set_2=Module["_emscripten_bind_MapStringEventMetadata_MAP_set_2"]=Module["asm"]["Yd"]).apply(null,arguments)};var _emscripten_bind_MapStringEventMetadata_MAP_has_1=Module["_emscripten_bind_MapStringEventMetadata_MAP_has_1"]=function(){return(_emscripten_bind_MapStringEventMetadata_MAP_has_1=Module["_emscripten_bind_MapStringEventMetadata_MAP_has_1"]=Module["asm"]["Zd"]).apply(null,arguments)};var _emscripten_bind_MapStringEventMetadata_MAP_keys_0=Module["_emscripten_bind_MapStringEventMetadata_MAP_keys_0"]=function(){return(_emscripten_bind_MapStringEventMetadata_MAP_keys_0=Module["_emscripten_bind_MapStringEventMetadata_MAP_keys_0"]=Module["asm"]["_d"]).apply(null,arguments)};var _emscripten_bind_MapStringEventMetadata___destroy___0=Module["_emscripten_bind_MapStringEventMetadata___destroy___0"]=function(){return(_emscripten_bind_MapStringEventMetadata___destroy___0=Module["_emscripten_bind_MapStringEventMetadata___destroy___0"]=Module["asm"]["$d"]).apply(null,arguments)};var _emscripten_bind_MapExtensionProperties_MAP_get_1=Module["_emscripten_bind_MapExtensionProperties_MAP_get_1"]=function(){return(_emscripten_bind_MapExtensionProperties_MAP_get_1=Module["_emscripten_bind_MapExtensionProperties_MAP_get_1"]=Module["asm"]["ae"]).apply(null,arguments)};var _emscripten_bind_MapExtensionProperties_MAP_set_2=Module["_emscripten_bind_MapExtensionProperties_MAP_set_2"]=function(){return(_emscripten_bind_MapExtensionProperties_MAP_set_2=Module["_emscripten_bind_MapExtensionProperties_MAP_set_2"]=Module["asm"]["be"]).apply(null,arguments)};var _emscripten_bind_MapExtensionProperties_MAP_has_1=Module["_emscripten_bind_MapExtensionProperties_MAP_has_1"]=function(){return(_emscripten_bind_MapExtensionProperties_MAP_has_1=Module["_emscripten_bind_MapExtensionProperties_MAP_has_1"]=Module["asm"]["ce"]).apply(null,arguments)};var _emscripten_bind_MapExtensionProperties_MAP_keys_0=Module["_emscripten_bind_MapExtensionProperties_MAP_keys_0"]=function(){return(_emscripten_bind_MapExtensionProperties_MAP_keys_0=Module["_emscripten_bind_MapExtensionProperties_MAP_keys_0"]=Module["asm"]["de"]).apply(null,arguments)};var _emscripten_bind_MapExtensionProperties___destroy___0=Module["_emscripten_bind_MapExtensionProperties___destroy___0"]=function(){return(_emscripten_bind_MapExtensionProperties___destroy___0=Module["_emscripten_bind_MapExtensionProperties___destroy___0"]=Module["asm"]["ee"]).apply(null,arguments)};var _emscripten_bind_SetString_SetString_0=Module["_emscripten_bind_SetString_SetString_0"]=function(){return(_emscripten_bind_SetString_SetString_0=Module["_emscripten_bind_SetString_SetString_0"]=Module["asm"]["fe"]).apply(null,arguments)};var _emscripten_bind_SetString_FREE_toNewVectorString_0=Module["_emscripten_bind_SetString_FREE_toNewVectorString_0"]=function(){return(_emscripten_bind_SetString_FREE_toNewVectorString_0=Module["_emscripten_bind_SetString_FREE_toNewVectorString_0"]=Module["asm"]["ge"]).apply(null,arguments)};var _emscripten_bind_SetString___destroy___0=Module["_emscripten_bind_SetString___destroy___0"]=function(){return(_emscripten_bind_SetString___destroy___0=Module["_emscripten_bind_SetString___destroy___0"]=Module["asm"]["he"]).apply(null,arguments)};var _emscripten_bind_ProjectHelper_STATIC_CreateNewGDJSProject_0=Module["_emscripten_bind_ProjectHelper_STATIC_CreateNewGDJSProject_0"]=function(){return(_emscripten_bind_ProjectHelper_STATIC_CreateNewGDJSProject_0=Module["_emscripten_bind_ProjectHelper_STATIC_CreateNewGDJSProject_0"]=Module["asm"]["ie"]).apply(null,arguments)};var _emscripten_bind_ProjectHelper_STATIC_InitializePlatforms_0=Module["_emscripten_bind_ProjectHelper_STATIC_InitializePlatforms_0"]=function(){return(_emscripten_bind_ProjectHelper_STATIC_InitializePlatforms_0=Module["_emscripten_bind_ProjectHelper_STATIC_InitializePlatforms_0"]=Module["asm"]["je"]).apply(null,arguments)};var _emscripten_bind_ProjectHelper_STATIC_SanityCheckBehaviorProperty_3=Module["_emscripten_bind_ProjectHelper_STATIC_SanityCheckBehaviorProperty_3"]=function(){return(_emscripten_bind_ProjectHelper_STATIC_SanityCheckBehaviorProperty_3=Module["_emscripten_bind_ProjectHelper_STATIC_SanityCheckBehaviorProperty_3"]=Module["asm"]["ke"]).apply(null,arguments)};var _emscripten_bind_ProjectHelper_STATIC_SanityCheckBehaviorsSharedDataProperty_3=Module["_emscripten_bind_ProjectHelper_STATIC_SanityCheckBehaviorsSharedDataProperty_3"]=function(){return(_emscripten_bind_ProjectHelper_STATIC_SanityCheckBehaviorsSharedDataProperty_3=Module["_emscripten_bind_ProjectHelper_STATIC_SanityCheckBehaviorsSharedDataProperty_3"]=Module["asm"]["le"]).apply(null,arguments)};var _emscripten_bind_ProjectHelper_STATIC_SanityCheckObjectProperty_3=Module["_emscripten_bind_ProjectHelper_STATIC_SanityCheckObjectProperty_3"]=function(){return(_emscripten_bind_ProjectHelper_STATIC_SanityCheckObjectProperty_3=Module["_emscripten_bind_ProjectHelper_STATIC_SanityCheckObjectProperty_3"]=Module["asm"]["me"]).apply(null,arguments)};var _emscripten_bind_ProjectHelper_STATIC_SanityCheckObjectInitialInstanceProperty_3=Module["_emscripten_bind_ProjectHelper_STATIC_SanityCheckObjectInitialInstanceProperty_3"]=function(){return(_emscripten_bind_ProjectHelper_STATIC_SanityCheckObjectInitialInstanceProperty_3=Module["_emscripten_bind_ProjectHelper_STATIC_SanityCheckObjectInitialInstanceProperty_3"]=Module["asm"]["ne"]).apply(null,arguments)};var _emscripten_bind_ProjectHelper___destroy___0=Module["_emscripten_bind_ProjectHelper___destroy___0"]=function(){return(_emscripten_bind_ProjectHelper___destroy___0=Module["_emscripten_bind_ProjectHelper___destroy___0"]=Module["asm"]["oe"]).apply(null,arguments)};var _emscripten_bind_EventsVariablesFinder_EventsVariablesFinder_0=Module["_emscripten_bind_EventsVariablesFinder_EventsVariablesFinder_0"]=function(){return(_emscripten_bind_EventsVariablesFinder_EventsVariablesFinder_0=Module["_emscripten_bind_EventsVariablesFinder_EventsVariablesFinder_0"]=Module["asm"]["pe"]).apply(null,arguments)};var _emscripten_bind_EventsVariablesFinder_STATIC_FindAllGlobalVariables_2=Module["_emscripten_bind_EventsVariablesFinder_STATIC_FindAllGlobalVariables_2"]=function(){return(_emscripten_bind_EventsVariablesFinder_STATIC_FindAllGlobalVariables_2=Module["_emscripten_bind_EventsVariablesFinder_STATIC_FindAllGlobalVariables_2"]=Module["asm"]["qe"]).apply(null,arguments)};var _emscripten_bind_EventsVariablesFinder_STATIC_FindAllLayoutVariables_3=Module["_emscripten_bind_EventsVariablesFinder_STATIC_FindAllLayoutVariables_3"]=function(){return(_emscripten_bind_EventsVariablesFinder_STATIC_FindAllLayoutVariables_3=Module["_emscripten_bind_EventsVariablesFinder_STATIC_FindAllLayoutVariables_3"]=Module["asm"]["re"]).apply(null,arguments)};var _emscripten_bind_EventsVariablesFinder_STATIC_FindAllObjectVariables_4=Module["_emscripten_bind_EventsVariablesFinder_STATIC_FindAllObjectVariables_4"]=function(){return(_emscripten_bind_EventsVariablesFinder_STATIC_FindAllObjectVariables_4=Module["_emscripten_bind_EventsVariablesFinder_STATIC_FindAllObjectVariables_4"]=Module["asm"]["se"]).apply(null,arguments)};var _emscripten_bind_EventsVariablesFinder___destroy___0=Module["_emscripten_bind_EventsVariablesFinder___destroy___0"]=function(){return(_emscripten_bind_EventsVariablesFinder___destroy___0=Module["_emscripten_bind_EventsVariablesFinder___destroy___0"]=Module["asm"]["te"]).apply(null,arguments)};var _emscripten_bind_EventsIdentifiersFinder_EventsIdentifiersFinder_0=Module["_emscripten_bind_EventsIdentifiersFinder_EventsIdentifiersFinder_0"]=function(){return(_emscripten_bind_EventsIdentifiersFinder_EventsIdentifiersFinder_0=Module["_emscripten_bind_EventsIdentifiersFinder_EventsIdentifiersFinder_0"]=Module["asm"]["ue"]).apply(null,arguments)};var _emscripten_bind_EventsIdentifiersFinder_STATIC_FindAllIdentifierExpressions_5=Module["_emscripten_bind_EventsIdentifiersFinder_STATIC_FindAllIdentifierExpressions_5"]=function(){return(_emscripten_bind_EventsIdentifiersFinder_STATIC_FindAllIdentifierExpressions_5=Module["_emscripten_bind_EventsIdentifiersFinder_STATIC_FindAllIdentifierExpressions_5"]=Module["asm"]["ve"]).apply(null,arguments)};var _emscripten_bind_EventsIdentifiersFinder___destroy___0=Module["_emscripten_bind_EventsIdentifiersFinder___destroy___0"]=function(){return(_emscripten_bind_EventsIdentifiersFinder___destroy___0=Module["_emscripten_bind_EventsIdentifiersFinder___destroy___0"]=Module["asm"]["we"]).apply(null,arguments)};var _emscripten_bind_EventsFunctionSelfCallChecker_STATIC_IsFreeFunctionOnlyCallingItself_3=Module["_emscripten_bind_EventsFunctionSelfCallChecker_STATIC_IsFreeFunctionOnlyCallingItself_3"]=function(){return(_emscripten_bind_EventsFunctionSelfCallChecker_STATIC_IsFreeFunctionOnlyCallingItself_3=Module["_emscripten_bind_EventsFunctionSelfCallChecker_STATIC_IsFreeFunctionOnlyCallingItself_3"]=Module["asm"]["xe"]).apply(null,arguments)};var _emscripten_bind_EventsFunctionSelfCallChecker_STATIC_IsBehaviorFunctionOnlyCallingItself_4=Module["_emscripten_bind_EventsFunctionSelfCallChecker_STATIC_IsBehaviorFunctionOnlyCallingItself_4"]=function(){return(_emscripten_bind_EventsFunctionSelfCallChecker_STATIC_IsBehaviorFunctionOnlyCallingItself_4=Module["_emscripten_bind_EventsFunctionSelfCallChecker_STATIC_IsBehaviorFunctionOnlyCallingItself_4"]=Module["asm"]["ye"]).apply(null,arguments)};var _emscripten_bind_EventsFunctionSelfCallChecker_STATIC_IsObjectFunctionOnlyCallingItself_4=Module["_emscripten_bind_EventsFunctionSelfCallChecker_STATIC_IsObjectFunctionOnlyCallingItself_4"]=function(){return(_emscripten_bind_EventsFunctionSelfCallChecker_STATIC_IsObjectFunctionOnlyCallingItself_4=Module["_emscripten_bind_EventsFunctionSelfCallChecker_STATIC_IsObjectFunctionOnlyCallingItself_4"]=Module["asm"]["ze"]).apply(null,arguments)};var _emscripten_bind_EventsFunctionSelfCallChecker___destroy___0=Module["_emscripten_bind_EventsFunctionSelfCallChecker___destroy___0"]=function(){return(_emscripten_bind_EventsFunctionSelfCallChecker___destroy___0=Module["_emscripten_bind_EventsFunctionSelfCallChecker___destroy___0"]=Module["asm"]["Ae"]).apply(null,arguments)};var _emscripten_bind_InstructionOrExpressionGroupMetadata_InstructionOrExpressionGroupMetadata_0=Module["_emscripten_bind_InstructionOrExpressionGroupMetadata_InstructionOrExpressionGroupMetadata_0"]=function(){return(_emscripten_bind_InstructionOrExpressionGroupMetadata_InstructionOrExpressionGroupMetadata_0=Module["_emscripten_bind_InstructionOrExpressionGroupMetadata_InstructionOrExpressionGroupMetadata_0"]=Module["asm"]["Be"]).apply(null,arguments)};var _emscripten_bind_InstructionOrExpressionGroupMetadata_SetIcon_1=Module["_emscripten_bind_InstructionOrExpressionGroupMetadata_SetIcon_1"]=function(){return(_emscripten_bind_InstructionOrExpressionGroupMetadata_SetIcon_1=Module["_emscripten_bind_InstructionOrExpressionGroupMetadata_SetIcon_1"]=Module["asm"]["Ce"]).apply(null,arguments)};var _emscripten_bind_InstructionOrExpressionGroupMetadata_GetIcon_0=Module["_emscripten_bind_InstructionOrExpressionGroupMetadata_GetIcon_0"]=function(){return(_emscripten_bind_InstructionOrExpressionGroupMetadata_GetIcon_0=Module["_emscripten_bind_InstructionOrExpressionGroupMetadata_GetIcon_0"]=Module["asm"]["De"]).apply(null,arguments)};var _emscripten_bind_InstructionOrExpressionGroupMetadata___destroy___0=Module["_emscripten_bind_InstructionOrExpressionGroupMetadata___destroy___0"]=function(){return(_emscripten_bind_InstructionOrExpressionGroupMetadata___destroy___0=Module["_emscripten_bind_InstructionOrExpressionGroupMetadata___destroy___0"]=Module["asm"]["Ee"]).apply(null,arguments)};var _emscripten_bind_VersionWrapper_STATIC_Major_0=Module["_emscripten_bind_VersionWrapper_STATIC_Major_0"]=function(){return(_emscripten_bind_VersionWrapper_STATIC_Major_0=Module["_emscripten_bind_VersionWrapper_STATIC_Major_0"]=Module["asm"]["Fe"]).apply(null,arguments)};var _emscripten_bind_VersionWrapper_STATIC_Minor_0=Module["_emscripten_bind_VersionWrapper_STATIC_Minor_0"]=function(){return(_emscripten_bind_VersionWrapper_STATIC_Minor_0=Module["_emscripten_bind_VersionWrapper_STATIC_Minor_0"]=Module["asm"]["Ge"]).apply(null,arguments)};var _emscripten_bind_VersionWrapper_STATIC_Build_0=Module["_emscripten_bind_VersionWrapper_STATIC_Build_0"]=function(){return(_emscripten_bind_VersionWrapper_STATIC_Build_0=Module["_emscripten_bind_VersionWrapper_STATIC_Build_0"]=Module["asm"]["He"]).apply(null,arguments)};var _emscripten_bind_VersionWrapper_STATIC_Revision_0=Module["_emscripten_bind_VersionWrapper_STATIC_Revision_0"]=function(){return(_emscripten_bind_VersionWrapper_STATIC_Revision_0=Module["_emscripten_bind_VersionWrapper_STATIC_Revision_0"]=Module["asm"]["Ie"]).apply(null,arguments)};var _emscripten_bind_VersionWrapper_STATIC_FullString_0=Module["_emscripten_bind_VersionWrapper_STATIC_FullString_0"]=function(){return(_emscripten_bind_VersionWrapper_STATIC_FullString_0=Module["_emscripten_bind_VersionWrapper_STATIC_FullString_0"]=Module["asm"]["Je"]).apply(null,arguments)};var _emscripten_bind_VersionWrapper_STATIC_Status_0=Module["_emscripten_bind_VersionWrapper_STATIC_Status_0"]=function(){return(_emscripten_bind_VersionWrapper_STATIC_Status_0=Module["_emscripten_bind_VersionWrapper_STATIC_Status_0"]=Module["asm"]["Ke"]).apply(null,arguments)};var _emscripten_bind_VersionWrapper___destroy___0=Module["_emscripten_bind_VersionWrapper___destroy___0"]=function(){return(_emscripten_bind_VersionWrapper___destroy___0=Module["_emscripten_bind_VersionWrapper___destroy___0"]=Module["asm"]["Le"]).apply(null,arguments)};var _emscripten_bind_JsPlatform_STATIC_Get_0=Module["_emscripten_bind_JsPlatform_STATIC_Get_0"]=function(){return(_emscripten_bind_JsPlatform_STATIC_Get_0=Module["_emscripten_bind_JsPlatform_STATIC_Get_0"]=Module["asm"]["Me"]).apply(null,arguments)};var _emscripten_bind_JsPlatform_AddNewExtension_1=Module["_emscripten_bind_JsPlatform_AddNewExtension_1"]=function(){return(_emscripten_bind_JsPlatform_AddNewExtension_1=Module["_emscripten_bind_JsPlatform_AddNewExtension_1"]=Module["asm"]["Ne"]).apply(null,arguments)};var _emscripten_bind_JsPlatform_GetName_0=Module["_emscripten_bind_JsPlatform_GetName_0"]=function(){return(_emscripten_bind_JsPlatform_GetName_0=Module["_emscripten_bind_JsPlatform_GetName_0"]=Module["asm"]["Oe"]).apply(null,arguments)};var _emscripten_bind_JsPlatform_GetFullName_0=Module["_emscripten_bind_JsPlatform_GetFullName_0"]=function(){return(_emscripten_bind_JsPlatform_GetFullName_0=Module["_emscripten_bind_JsPlatform_GetFullName_0"]=Module["asm"]["Pe"]).apply(null,arguments)};var _emscripten_bind_JsPlatform_GetSubtitle_0=Module["_emscripten_bind_JsPlatform_GetSubtitle_0"]=function(){return(_emscripten_bind_JsPlatform_GetSubtitle_0=Module["_emscripten_bind_JsPlatform_GetSubtitle_0"]=Module["asm"]["Qe"]).apply(null,arguments)};var _emscripten_bind_JsPlatform_GetDescription_0=Module["_emscripten_bind_JsPlatform_GetDescription_0"]=function(){return(_emscripten_bind_JsPlatform_GetDescription_0=Module["_emscripten_bind_JsPlatform_GetDescription_0"]=Module["asm"]["Re"]).apply(null,arguments)};var _emscripten_bind_JsPlatform_GetInstructionOrExpressionGroupMetadata_1=Module["_emscripten_bind_JsPlatform_GetInstructionOrExpressionGroupMetadata_1"]=function(){return(_emscripten_bind_JsPlatform_GetInstructionOrExpressionGroupMetadata_1=Module["_emscripten_bind_JsPlatform_GetInstructionOrExpressionGroupMetadata_1"]=Module["asm"]["Se"]).apply(null,arguments)};var _emscripten_bind_JsPlatform_IsExtensionLoaded_1=Module["_emscripten_bind_JsPlatform_IsExtensionLoaded_1"]=function(){return(_emscripten_bind_JsPlatform_IsExtensionLoaded_1=Module["_emscripten_bind_JsPlatform_IsExtensionLoaded_1"]=Module["asm"]["Te"]).apply(null,arguments)};var _emscripten_bind_JsPlatform_RemoveExtension_1=Module["_emscripten_bind_JsPlatform_RemoveExtension_1"]=function(){return(_emscripten_bind_JsPlatform_RemoveExtension_1=Module["_emscripten_bind_JsPlatform_RemoveExtension_1"]=Module["asm"]["Ue"]).apply(null,arguments)};var _emscripten_bind_JsPlatform_ReloadBuiltinExtensions_0=Module["_emscripten_bind_JsPlatform_ReloadBuiltinExtensions_0"]=function(){return(_emscripten_bind_JsPlatform_ReloadBuiltinExtensions_0=Module["_emscripten_bind_JsPlatform_ReloadBuiltinExtensions_0"]=Module["asm"]["Ve"]).apply(null,arguments)};var _emscripten_bind_JsPlatform_CreateObjectConfiguration_1=Module["_emscripten_bind_JsPlatform_CreateObjectConfiguration_1"]=function(){return(_emscripten_bind_JsPlatform_CreateObjectConfiguration_1=Module["_emscripten_bind_JsPlatform_CreateObjectConfiguration_1"]=Module["asm"]["We"]).apply(null,arguments)};var _emscripten_bind_JsPlatform_GetAllPlatformExtensions_0=Module["_emscripten_bind_JsPlatform_GetAllPlatformExtensions_0"]=function(){return(_emscripten_bind_JsPlatform_GetAllPlatformExtensions_0=Module["_emscripten_bind_JsPlatform_GetAllPlatformExtensions_0"]=Module["asm"]["Xe"]).apply(null,arguments)};var _emscripten_bind_JsPlatform___destroy___0=Module["_emscripten_bind_JsPlatform___destroy___0"]=function(){return(_emscripten_bind_JsPlatform___destroy___0=Module["_emscripten_bind_JsPlatform___destroy___0"]=Module["asm"]["Ye"]).apply(null,arguments)};var _emscripten_bind_PairStringVariable_PairStringVariable_0=Module["_emscripten_bind_PairStringVariable_PairStringVariable_0"]=function(){return(_emscripten_bind_PairStringVariable_PairStringVariable_0=Module["_emscripten_bind_PairStringVariable_PairStringVariable_0"]=Module["asm"]["Ze"]).apply(null,arguments)};var _emscripten_bind_PairStringVariable_WRAPPED_GetName_0=Module["_emscripten_bind_PairStringVariable_WRAPPED_GetName_0"]=function(){return(_emscripten_bind_PairStringVariable_WRAPPED_GetName_0=Module["_emscripten_bind_PairStringVariable_WRAPPED_GetName_0"]=Module["asm"]["_e"]).apply(null,arguments)};var _emscripten_bind_PairStringVariable_WRAPPED_GetVariable_0=Module["_emscripten_bind_PairStringVariable_WRAPPED_GetVariable_0"]=function(){return(_emscripten_bind_PairStringVariable_WRAPPED_GetVariable_0=Module["_emscripten_bind_PairStringVariable_WRAPPED_GetVariable_0"]=Module["asm"]["$e"]).apply(null,arguments)};var _emscripten_bind_PairStringVariable___destroy___0=Module["_emscripten_bind_PairStringVariable___destroy___0"]=function(){return(_emscripten_bind_PairStringVariable___destroy___0=Module["_emscripten_bind_PairStringVariable___destroy___0"]=Module["asm"]["af"]).apply(null,arguments)};var _emscripten_bind_VariableInstructionSwitcher_STATIC_IsSwitchableVariableInstruction_1=Module["_emscripten_bind_VariableInstructionSwitcher_STATIC_IsSwitchableVariableInstruction_1"]=function(){return(_emscripten_bind_VariableInstructionSwitcher_STATIC_IsSwitchableVariableInstruction_1=Module["_emscripten_bind_VariableInstructionSwitcher_STATIC_IsSwitchableVariableInstruction_1"]=Module["asm"]["bf"]).apply(null,arguments)};var _emscripten_bind_VariableInstructionSwitcher_STATIC_IsSwitchableObjectVariableInstruction_1=Module["_emscripten_bind_VariableInstructionSwitcher_STATIC_IsSwitchableObjectVariableInstruction_1"]=function(){return(_emscripten_bind_VariableInstructionSwitcher_STATIC_IsSwitchableObjectVariableInstruction_1=Module["_emscripten_bind_VariableInstructionSwitcher_STATIC_IsSwitchableObjectVariableInstruction_1"]=Module["asm"]["cf"]).apply(null,arguments)};var _emscripten_bind_VariableInstructionSwitcher_STATIC_GetSwitchableVariableInstructionIdentifier_1=Module["_emscripten_bind_VariableInstructionSwitcher_STATIC_GetSwitchableVariableInstructionIdentifier_1"]=function(){return(_emscripten_bind_VariableInstructionSwitcher_STATIC_GetSwitchableVariableInstructionIdentifier_1=Module["_emscripten_bind_VariableInstructionSwitcher_STATIC_GetSwitchableVariableInstructionIdentifier_1"]=Module["asm"]["df"]).apply(null,arguments)};var _emscripten_bind_VariableInstructionSwitcher_STATIC_GetSwitchableInstructionVariableType_1=Module["_emscripten_bind_VariableInstructionSwitcher_STATIC_GetSwitchableInstructionVariableType_1"]=function(){return(_emscripten_bind_VariableInstructionSwitcher_STATIC_GetSwitchableInstructionVariableType_1=Module["_emscripten_bind_VariableInstructionSwitcher_STATIC_GetSwitchableInstructionVariableType_1"]=Module["asm"]["ef"]).apply(null,arguments)};var _emscripten_bind_VariableInstructionSwitcher_STATIC_SwitchVariableInstructionType_2=Module["_emscripten_bind_VariableInstructionSwitcher_STATIC_SwitchVariableInstructionType_2"]=function(){return(_emscripten_bind_VariableInstructionSwitcher_STATIC_SwitchVariableInstructionType_2=Module["_emscripten_bind_VariableInstructionSwitcher_STATIC_SwitchVariableInstructionType_2"]=Module["asm"]["ff"]).apply(null,arguments)};var _emscripten_bind_VariableInstructionSwitcher_STATIC_GetVariableTypeFromParameters_3=Module["_emscripten_bind_VariableInstructionSwitcher_STATIC_GetVariableTypeFromParameters_3"]=function(){return(_emscripten_bind_VariableInstructionSwitcher_STATIC_GetVariableTypeFromParameters_3=Module["_emscripten_bind_VariableInstructionSwitcher_STATIC_GetVariableTypeFromParameters_3"]=Module["asm"]["gf"]).apply(null,arguments)};var _emscripten_bind_VariableInstructionSwitcher_STATIC_SwitchBetweenUnifiedInstructionIfNeeded_3=Module["_emscripten_bind_VariableInstructionSwitcher_STATIC_SwitchBetweenUnifiedInstructionIfNeeded_3"]=function(){return(_emscripten_bind_VariableInstructionSwitcher_STATIC_SwitchBetweenUnifiedInstructionIfNeeded_3=Module["_emscripten_bind_VariableInstructionSwitcher_STATIC_SwitchBetweenUnifiedInstructionIfNeeded_3"]=Module["asm"]["hf"]).apply(null,arguments)};var _emscripten_bind_VariableInstructionSwitcher___destroy___0=Module["_emscripten_bind_VariableInstructionSwitcher___destroy___0"]=function(){return(_emscripten_bind_VariableInstructionSwitcher___destroy___0=Module["_emscripten_bind_VariableInstructionSwitcher___destroy___0"]=Module["asm"]["jf"]).apply(null,arguments)};var _emscripten_bind_Variable_Variable_0=Module["_emscripten_bind_Variable_Variable_0"]=function(){return(_emscripten_bind_Variable_Variable_0=Module["_emscripten_bind_Variable_Variable_0"]=Module["asm"]["kf"]).apply(null,arguments)};var _emscripten_bind_Variable_STATIC_IsPrimitive_1=Module["_emscripten_bind_Variable_STATIC_IsPrimitive_1"]=function(){return(_emscripten_bind_Variable_STATIC_IsPrimitive_1=Module["_emscripten_bind_Variable_STATIC_IsPrimitive_1"]=Module["asm"]["lf"]).apply(null,arguments)};var _emscripten_bind_Variable_STATIC_TypeAsString_1=Module["_emscripten_bind_Variable_STATIC_TypeAsString_1"]=function(){return(_emscripten_bind_Variable_STATIC_TypeAsString_1=Module["_emscripten_bind_Variable_STATIC_TypeAsString_1"]=Module["asm"]["mf"]).apply(null,arguments)};var _emscripten_bind_Variable_GetType_0=Module["_emscripten_bind_Variable_GetType_0"]=function(){return(_emscripten_bind_Variable_GetType_0=Module["_emscripten_bind_Variable_GetType_0"]=Module["asm"]["nf"]).apply(null,arguments)};var _emscripten_bind_Variable_CastTo_1=Module["_emscripten_bind_Variable_CastTo_1"]=function(){return(_emscripten_bind_Variable_CastTo_1=Module["_emscripten_bind_Variable_CastTo_1"]=Module["asm"]["of"]).apply(null,arguments)};var _emscripten_bind_Variable_SetString_1=Module["_emscripten_bind_Variable_SetString_1"]=function(){return(_emscripten_bind_Variable_SetString_1=Module["_emscripten_bind_Variable_SetString_1"]=Module["asm"]["pf"]).apply(null,arguments)};var _emscripten_bind_Variable_GetString_0=Module["_emscripten_bind_Variable_GetString_0"]=function(){return(_emscripten_bind_Variable_GetString_0=Module["_emscripten_bind_Variable_GetString_0"]=Module["asm"]["qf"]).apply(null,arguments)};var _emscripten_bind_Variable_SetValue_1=Module["_emscripten_bind_Variable_SetValue_1"]=function(){return(_emscripten_bind_Variable_SetValue_1=Module["_emscripten_bind_Variable_SetValue_1"]=Module["asm"]["rf"]).apply(null,arguments)};var _emscripten_bind_Variable_GetValue_0=Module["_emscripten_bind_Variable_GetValue_0"]=function(){return(_emscripten_bind_Variable_GetValue_0=Module["_emscripten_bind_Variable_GetValue_0"]=Module["asm"]["sf"]).apply(null,arguments)};var _emscripten_bind_Variable_SetBool_1=Module["_emscripten_bind_Variable_SetBool_1"]=function(){return(_emscripten_bind_Variable_SetBool_1=Module["_emscripten_bind_Variable_SetBool_1"]=Module["asm"]["tf"]).apply(null,arguments)};var _emscripten_bind_Variable_GetBool_0=Module["_emscripten_bind_Variable_GetBool_0"]=function(){return(_emscripten_bind_Variable_GetBool_0=Module["_emscripten_bind_Variable_GetBool_0"]=Module["asm"]["uf"]).apply(null,arguments)};var _emscripten_bind_Variable_HasMixedValues_0=Module["_emscripten_bind_Variable_HasMixedValues_0"]=function(){return(_emscripten_bind_Variable_HasMixedValues_0=Module["_emscripten_bind_Variable_HasMixedValues_0"]=Module["asm"]["vf"]).apply(null,arguments)};var _emscripten_bind_Variable_SetFolded_1=Module["_emscripten_bind_Variable_SetFolded_1"]=function(){return(_emscripten_bind_Variable_SetFolded_1=Module["_emscripten_bind_Variable_SetFolded_1"]=Module["asm"]["wf"]).apply(null,arguments)};var _emscripten_bind_Variable_IsFolded_0=Module["_emscripten_bind_Variable_IsFolded_0"]=function(){return(_emscripten_bind_Variable_IsFolded_0=Module["_emscripten_bind_Variable_IsFolded_0"]=Module["asm"]["xf"]).apply(null,arguments)};var _emscripten_bind_Variable_GetChildrenCount_0=Module["_emscripten_bind_Variable_GetChildrenCount_0"]=function(){return(_emscripten_bind_Variable_GetChildrenCount_0=Module["_emscripten_bind_Variable_GetChildrenCount_0"]=Module["asm"]["yf"]).apply(null,arguments)};var _emscripten_bind_Variable_Contains_2=Module["_emscripten_bind_Variable_Contains_2"]=function(){return(_emscripten_bind_Variable_Contains_2=Module["_emscripten_bind_Variable_Contains_2"]=Module["asm"]["zf"]).apply(null,arguments)};var _emscripten_bind_Variable_HasChild_1=Module["_emscripten_bind_Variable_HasChild_1"]=function(){return(_emscripten_bind_Variable_HasChild_1=Module["_emscripten_bind_Variable_HasChild_1"]=Module["asm"]["Af"]).apply(null,arguments)};var _emscripten_bind_Variable_GetChild_1=Module["_emscripten_bind_Variable_GetChild_1"]=function(){return(_emscripten_bind_Variable_GetChild_1=Module["_emscripten_bind_Variable_GetChild_1"]=Module["asm"]["Bf"]).apply(null,arguments)};var _emscripten_bind_Variable_RemoveChild_1=Module["_emscripten_bind_Variable_RemoveChild_1"]=function(){return(_emscripten_bind_Variable_RemoveChild_1=Module["_emscripten_bind_Variable_RemoveChild_1"]=Module["asm"]["Cf"]).apply(null,arguments)};var _emscripten_bind_Variable_RenameChild_2=Module["_emscripten_bind_Variable_RenameChild_2"]=function(){return(_emscripten_bind_Variable_RenameChild_2=Module["_emscripten_bind_Variable_RenameChild_2"]=Module["asm"]["Df"]).apply(null,arguments)};var _emscripten_bind_Variable_GetAllChildrenNames_0=Module["_emscripten_bind_Variable_GetAllChildrenNames_0"]=function(){return(_emscripten_bind_Variable_GetAllChildrenNames_0=Module["_emscripten_bind_Variable_GetAllChildrenNames_0"]=Module["asm"]["Ef"]).apply(null,arguments)};var _emscripten_bind_Variable_RemoveRecursively_1=Module["_emscripten_bind_Variable_RemoveRecursively_1"]=function(){return(_emscripten_bind_Variable_RemoveRecursively_1=Module["_emscripten_bind_Variable_RemoveRecursively_1"]=Module["asm"]["Ff"]).apply(null,arguments)};var _emscripten_bind_Variable_ClearChildren_0=Module["_emscripten_bind_Variable_ClearChildren_0"]=function(){return(_emscripten_bind_Variable_ClearChildren_0=Module["_emscripten_bind_Variable_ClearChildren_0"]=Module["asm"]["Gf"]).apply(null,arguments)};var _emscripten_bind_Variable_GetAtIndex_1=Module["_emscripten_bind_Variable_GetAtIndex_1"]=function(){return(_emscripten_bind_Variable_GetAtIndex_1=Module["_emscripten_bind_Variable_GetAtIndex_1"]=Module["asm"]["Hf"]).apply(null,arguments)};var _emscripten_bind_Variable_PushNew_0=Module["_emscripten_bind_Variable_PushNew_0"]=function(){return(_emscripten_bind_Variable_PushNew_0=Module["_emscripten_bind_Variable_PushNew_0"]=Module["asm"]["If"]).apply(null,arguments)};var _emscripten_bind_Variable_RemoveAtIndex_1=Module["_emscripten_bind_Variable_RemoveAtIndex_1"]=function(){return(_emscripten_bind_Variable_RemoveAtIndex_1=Module["_emscripten_bind_Variable_RemoveAtIndex_1"]=Module["asm"]["Jf"]).apply(null,arguments)};var _emscripten_bind_Variable_GetAllChildrenArray_0=Module["_emscripten_bind_Variable_GetAllChildrenArray_0"]=function(){return(_emscripten_bind_Variable_GetAllChildrenArray_0=Module["_emscripten_bind_Variable_GetAllChildrenArray_0"]=Module["asm"]["Kf"]).apply(null,arguments)};var _emscripten_bind_Variable_MoveChildInArray_2=Module["_emscripten_bind_Variable_MoveChildInArray_2"]=function(){return(_emscripten_bind_Variable_MoveChildInArray_2=Module["_emscripten_bind_Variable_MoveChildInArray_2"]=Module["asm"]["Lf"]).apply(null,arguments)};var _emscripten_bind_Variable_InsertAtIndex_2=Module["_emscripten_bind_Variable_InsertAtIndex_2"]=function(){return(_emscripten_bind_Variable_InsertAtIndex_2=Module["_emscripten_bind_Variable_InsertAtIndex_2"]=Module["asm"]["Mf"]).apply(null,arguments)};var _emscripten_bind_Variable_InsertChild_2=Module["_emscripten_bind_Variable_InsertChild_2"]=function(){return(_emscripten_bind_Variable_InsertChild_2=Module["_emscripten_bind_Variable_InsertChild_2"]=Module["asm"]["Nf"]).apply(null,arguments)};var _emscripten_bind_Variable_SerializeTo_1=Module["_emscripten_bind_Variable_SerializeTo_1"]=function(){return(_emscripten_bind_Variable_SerializeTo_1=Module["_emscripten_bind_Variable_SerializeTo_1"]=Module["asm"]["Of"]).apply(null,arguments)};var _emscripten_bind_Variable_UnserializeFrom_1=Module["_emscripten_bind_Variable_UnserializeFrom_1"]=function(){return(_emscripten_bind_Variable_UnserializeFrom_1=Module["_emscripten_bind_Variable_UnserializeFrom_1"]=Module["asm"]["Pf"]).apply(null,arguments)};var _emscripten_bind_Variable_ResetPersistentUuid_0=Module["_emscripten_bind_Variable_ResetPersistentUuid_0"]=function(){return(_emscripten_bind_Variable_ResetPersistentUuid_0=Module["_emscripten_bind_Variable_ResetPersistentUuid_0"]=Module["asm"]["Qf"]).apply(null,arguments)};var _emscripten_bind_Variable_ClearPersistentUuid_0=Module["_emscripten_bind_Variable_ClearPersistentUuid_0"]=function(){return(_emscripten_bind_Variable_ClearPersistentUuid_0=Module["_emscripten_bind_Variable_ClearPersistentUuid_0"]=Module["asm"]["Rf"]).apply(null,arguments)};var _emscripten_bind_Variable___destroy___0=Module["_emscripten_bind_Variable___destroy___0"]=function(){return(_emscripten_bind_Variable___destroy___0=Module["_emscripten_bind_Variable___destroy___0"]=Module["asm"]["Sf"]).apply(null,arguments)};var _emscripten_bind_VariablesContainer_VariablesContainer_1=Module["_emscripten_bind_VariablesContainer_VariablesContainer_1"]=function(){return(_emscripten_bind_VariablesContainer_VariablesContainer_1=Module["_emscripten_bind_VariablesContainer_VariablesContainer_1"]=Module["asm"]["Tf"]).apply(null,arguments)};var _emscripten_bind_VariablesContainer_GetSourceType_0=Module["_emscripten_bind_VariablesContainer_GetSourceType_0"]=function(){return(_emscripten_bind_VariablesContainer_GetSourceType_0=Module["_emscripten_bind_VariablesContainer_GetSourceType_0"]=Module["asm"]["Uf"]).apply(null,arguments)};var _emscripten_bind_VariablesContainer_Has_1=Module["_emscripten_bind_VariablesContainer_Has_1"]=function(){return(_emscripten_bind_VariablesContainer_Has_1=Module["_emscripten_bind_VariablesContainer_Has_1"]=Module["asm"]["Vf"]).apply(null,arguments)};var _emscripten_bind_VariablesContainer_Get_1=Module["_emscripten_bind_VariablesContainer_Get_1"]=function(){return(_emscripten_bind_VariablesContainer_Get_1=Module["_emscripten_bind_VariablesContainer_Get_1"]=Module["asm"]["Wf"]).apply(null,arguments)};var _emscripten_bind_VariablesContainer_GetAt_1=Module["_emscripten_bind_VariablesContainer_GetAt_1"]=function(){return(_emscripten_bind_VariablesContainer_GetAt_1=Module["_emscripten_bind_VariablesContainer_GetAt_1"]=Module["asm"]["Xf"]).apply(null,arguments)};var _emscripten_bind_VariablesContainer_GetNameAt_1=Module["_emscripten_bind_VariablesContainer_GetNameAt_1"]=function(){return(_emscripten_bind_VariablesContainer_GetNameAt_1=Module["_emscripten_bind_VariablesContainer_GetNameAt_1"]=Module["asm"]["Yf"]).apply(null,arguments)};var _emscripten_bind_VariablesContainer_Insert_3=Module["_emscripten_bind_VariablesContainer_Insert_3"]=function(){return(_emscripten_bind_VariablesContainer_Insert_3=Module["_emscripten_bind_VariablesContainer_Insert_3"]=Module["asm"]["Zf"]).apply(null,arguments)};var _emscripten_bind_VariablesContainer_InsertNew_2=Module["_emscripten_bind_VariablesContainer_InsertNew_2"]=function(){return(_emscripten_bind_VariablesContainer_InsertNew_2=Module["_emscripten_bind_VariablesContainer_InsertNew_2"]=Module["asm"]["_f"]).apply(null,arguments)};var _emscripten_bind_VariablesContainer_Remove_1=Module["_emscripten_bind_VariablesContainer_Remove_1"]=function(){return(_emscripten_bind_VariablesContainer_Remove_1=Module["_emscripten_bind_VariablesContainer_Remove_1"]=Module["asm"]["$f"]).apply(null,arguments)};var _emscripten_bind_VariablesContainer_Rename_2=Module["_emscripten_bind_VariablesContainer_Rename_2"]=function(){return(_emscripten_bind_VariablesContainer_Rename_2=Module["_emscripten_bind_VariablesContainer_Rename_2"]=Module["asm"]["ag"]).apply(null,arguments)};var _emscripten_bind_VariablesContainer_Swap_2=Module["_emscripten_bind_VariablesContainer_Swap_2"]=function(){return(_emscripten_bind_VariablesContainer_Swap_2=Module["_emscripten_bind_VariablesContainer_Swap_2"]=Module["asm"]["bg"]).apply(null,arguments)};var _emscripten_bind_VariablesContainer_Move_2=Module["_emscripten_bind_VariablesContainer_Move_2"]=function(){return(_emscripten_bind_VariablesContainer_Move_2=Module["_emscripten_bind_VariablesContainer_Move_2"]=Module["asm"]["cg"]).apply(null,arguments)};var _emscripten_bind_VariablesContainer_GetPosition_1=Module["_emscripten_bind_VariablesContainer_GetPosition_1"]=function(){return(_emscripten_bind_VariablesContainer_GetPosition_1=Module["_emscripten_bind_VariablesContainer_GetPosition_1"]=Module["asm"]["dg"]).apply(null,arguments)};var _emscripten_bind_VariablesContainer_Count_0=Module["_emscripten_bind_VariablesContainer_Count_0"]=function(){return(_emscripten_bind_VariablesContainer_Count_0=Module["_emscripten_bind_VariablesContainer_Count_0"]=Module["asm"]["eg"]).apply(null,arguments)};var _emscripten_bind_VariablesContainer_Clear_0=Module["_emscripten_bind_VariablesContainer_Clear_0"]=function(){return(_emscripten_bind_VariablesContainer_Clear_0=Module["_emscripten_bind_VariablesContainer_Clear_0"]=Module["asm"]["fg"]).apply(null,arguments)};var _emscripten_bind_VariablesContainer_RemoveRecursively_1=Module["_emscripten_bind_VariablesContainer_RemoveRecursively_1"]=function(){return(_emscripten_bind_VariablesContainer_RemoveRecursively_1=Module["_emscripten_bind_VariablesContainer_RemoveRecursively_1"]=Module["asm"]["gg"]).apply(null,arguments)};var _emscripten_bind_VariablesContainer_SerializeTo_1=Module["_emscripten_bind_VariablesContainer_SerializeTo_1"]=function(){return(_emscripten_bind_VariablesContainer_SerializeTo_1=Module["_emscripten_bind_VariablesContainer_SerializeTo_1"]=Module["asm"]["hg"]).apply(null,arguments)};var _emscripten_bind_VariablesContainer_UnserializeFrom_1=Module["_emscripten_bind_VariablesContainer_UnserializeFrom_1"]=function(){return(_emscripten_bind_VariablesContainer_UnserializeFrom_1=Module["_emscripten_bind_VariablesContainer_UnserializeFrom_1"]=Module["asm"]["ig"]).apply(null,arguments)};var _emscripten_bind_VariablesContainer_ResetPersistentUuid_0=Module["_emscripten_bind_VariablesContainer_ResetPersistentUuid_0"]=function(){return(_emscripten_bind_VariablesContainer_ResetPersistentUuid_0=Module["_emscripten_bind_VariablesContainer_ResetPersistentUuid_0"]=Module["asm"]["jg"]).apply(null,arguments)};var _emscripten_bind_VariablesContainer_ClearPersistentUuid_0=Module["_emscripten_bind_VariablesContainer_ClearPersistentUuid_0"]=function(){return(_emscripten_bind_VariablesContainer_ClearPersistentUuid_0=Module["_emscripten_bind_VariablesContainer_ClearPersistentUuid_0"]=Module["asm"]["kg"]).apply(null,arguments)};var _emscripten_bind_VariablesContainer___destroy___0=Module["_emscripten_bind_VariablesContainer___destroy___0"]=function(){return(_emscripten_bind_VariablesContainer___destroy___0=Module["_emscripten_bind_VariablesContainer___destroy___0"]=Module["asm"]["lg"]).apply(null,arguments)};var _emscripten_bind_VariablesContainersList_Has_1=Module["_emscripten_bind_VariablesContainersList_Has_1"]=function(){return(_emscripten_bind_VariablesContainersList_Has_1=Module["_emscripten_bind_VariablesContainersList_Has_1"]=Module["asm"]["mg"]).apply(null,arguments)};var _emscripten_bind_VariablesContainersList_Get_1=Module["_emscripten_bind_VariablesContainersList_Get_1"]=function(){return(_emscripten_bind_VariablesContainersList_Get_1=Module["_emscripten_bind_VariablesContainersList_Get_1"]=Module["asm"]["ng"]).apply(null,arguments)};var _emscripten_bind_VariablesContainersList_GetVariablesContainerFromVariableOrPropertyOrParameterName_1=Module["_emscripten_bind_VariablesContainersList_GetVariablesContainerFromVariableOrPropertyOrParameterName_1"]=function(){return(_emscripten_bind_VariablesContainersList_GetVariablesContainerFromVariableOrPropertyOrParameterName_1=Module["_emscripten_bind_VariablesContainersList_GetVariablesContainerFromVariableOrPropertyOrParameterName_1"]=Module["asm"]["og"]).apply(null,arguments)};var _emscripten_bind_VariablesContainersList_GetVariablesContainerFromVariableOrPropertyName_1=Module["_emscripten_bind_VariablesContainersList_GetVariablesContainerFromVariableOrPropertyName_1"]=function(){return(_emscripten_bind_VariablesContainersList_GetVariablesContainerFromVariableOrPropertyName_1=Module["_emscripten_bind_VariablesContainersList_GetVariablesContainerFromVariableOrPropertyName_1"]=Module["asm"]["pg"]).apply(null,arguments)};var _emscripten_bind_VariablesContainersList_GetVariablesContainerFromVariableNameOnly_1=Module["_emscripten_bind_VariablesContainersList_GetVariablesContainerFromVariableNameOnly_1"]=function(){return(_emscripten_bind_VariablesContainersList_GetVariablesContainerFromVariableNameOnly_1=Module["_emscripten_bind_VariablesContainersList_GetVariablesContainerFromVariableNameOnly_1"]=Module["asm"]["qg"]).apply(null,arguments)};var _emscripten_bind_VariablesContainersList_GetVariablesContainer_1=Module["_emscripten_bind_VariablesContainersList_GetVariablesContainer_1"]=function(){return(_emscripten_bind_VariablesContainersList_GetVariablesContainer_1=Module["_emscripten_bind_VariablesContainersList_GetVariablesContainer_1"]=Module["asm"]["rg"]).apply(null,arguments)};var _emscripten_bind_VariablesContainersList_GetVariablesContainersCount_0=Module["_emscripten_bind_VariablesContainersList_GetVariablesContainersCount_0"]=function(){return(_emscripten_bind_VariablesContainersList_GetVariablesContainersCount_0=Module["_emscripten_bind_VariablesContainersList_GetVariablesContainersCount_0"]=Module["asm"]["sg"]).apply(null,arguments)};var _emscripten_bind_VariablesContainersList___destroy___0=Module["_emscripten_bind_VariablesContainersList___destroy___0"]=function(){return(_emscripten_bind_VariablesContainersList___destroy___0=Module["_emscripten_bind_VariablesContainersList___destroy___0"]=Module["asm"]["tg"]).apply(null,arguments)};var _emscripten_bind_ObjectGroup_ObjectGroup_0=Module["_emscripten_bind_ObjectGroup_ObjectGroup_0"]=function(){return(_emscripten_bind_ObjectGroup_ObjectGroup_0=Module["_emscripten_bind_ObjectGroup_ObjectGroup_0"]=Module["asm"]["ug"]).apply(null,arguments)};var _emscripten_bind_ObjectGroup_GetName_0=Module["_emscripten_bind_ObjectGroup_GetName_0"]=function(){return(_emscripten_bind_ObjectGroup_GetName_0=Module["_emscripten_bind_ObjectGroup_GetName_0"]=Module["asm"]["vg"]).apply(null,arguments)};var _emscripten_bind_ObjectGroup_SetName_1=Module["_emscripten_bind_ObjectGroup_SetName_1"]=function(){return(_emscripten_bind_ObjectGroup_SetName_1=Module["_emscripten_bind_ObjectGroup_SetName_1"]=Module["asm"]["wg"]).apply(null,arguments)};var _emscripten_bind_ObjectGroup_AddObject_1=Module["_emscripten_bind_ObjectGroup_AddObject_1"]=function(){return(_emscripten_bind_ObjectGroup_AddObject_1=Module["_emscripten_bind_ObjectGroup_AddObject_1"]=Module["asm"]["xg"]).apply(null,arguments)};var _emscripten_bind_ObjectGroup_RemoveObject_1=Module["_emscripten_bind_ObjectGroup_RemoveObject_1"]=function(){return(_emscripten_bind_ObjectGroup_RemoveObject_1=Module["_emscripten_bind_ObjectGroup_RemoveObject_1"]=Module["asm"]["yg"]).apply(null,arguments)};var _emscripten_bind_ObjectGroup_Find_1=Module["_emscripten_bind_ObjectGroup_Find_1"]=function(){return(_emscripten_bind_ObjectGroup_Find_1=Module["_emscripten_bind_ObjectGroup_Find_1"]=Module["asm"]["zg"]).apply(null,arguments)};var _emscripten_bind_ObjectGroup_GetAllObjectsNames_0=Module["_emscripten_bind_ObjectGroup_GetAllObjectsNames_0"]=function(){return(_emscripten_bind_ObjectGroup_GetAllObjectsNames_0=Module["_emscripten_bind_ObjectGroup_GetAllObjectsNames_0"]=Module["asm"]["Ag"]).apply(null,arguments)};var _emscripten_bind_ObjectGroup_SerializeTo_1=Module["_emscripten_bind_ObjectGroup_SerializeTo_1"]=function(){return(_emscripten_bind_ObjectGroup_SerializeTo_1=Module["_emscripten_bind_ObjectGroup_SerializeTo_1"]=Module["asm"]["Bg"]).apply(null,arguments)};var _emscripten_bind_ObjectGroup_UnserializeFrom_1=Module["_emscripten_bind_ObjectGroup_UnserializeFrom_1"]=function(){return(_emscripten_bind_ObjectGroup_UnserializeFrom_1=Module["_emscripten_bind_ObjectGroup_UnserializeFrom_1"]=Module["asm"]["Cg"]).apply(null,arguments)};var _emscripten_bind_ObjectGroup___destroy___0=Module["_emscripten_bind_ObjectGroup___destroy___0"]=function(){return(_emscripten_bind_ObjectGroup___destroy___0=Module["_emscripten_bind_ObjectGroup___destroy___0"]=Module["asm"]["Dg"]).apply(null,arguments)};var _emscripten_bind_ObjectVariableHelper_STATIC_MergeVariableContainers_2=Module["_emscripten_bind_ObjectVariableHelper_STATIC_MergeVariableContainers_2"]=function(){return(_emscripten_bind_ObjectVariableHelper_STATIC_MergeVariableContainers_2=Module["_emscripten_bind_ObjectVariableHelper_STATIC_MergeVariableContainers_2"]=Module["asm"]["Eg"]).apply(null,arguments)};var _emscripten_bind_ObjectVariableHelper_STATIC_FillAnyVariableBetweenObjects_3=Module["_emscripten_bind_ObjectVariableHelper_STATIC_FillAnyVariableBetweenObjects_3"]=function(){return(_emscripten_bind_ObjectVariableHelper_STATIC_FillAnyVariableBetweenObjects_3=Module["_emscripten_bind_ObjectVariableHelper_STATIC_FillAnyVariableBetweenObjects_3"]=Module["asm"]["Fg"]).apply(null,arguments)};var _emscripten_bind_ObjectVariableHelper_STATIC_ApplyChangesToVariants_3=Module["_emscripten_bind_ObjectVariableHelper_STATIC_ApplyChangesToVariants_3"]=function(){return(_emscripten_bind_ObjectVariableHelper_STATIC_ApplyChangesToVariants_3=Module["_emscripten_bind_ObjectVariableHelper_STATIC_ApplyChangesToVariants_3"]=Module["asm"]["Gg"]).apply(null,arguments)};var _emscripten_bind_ObjectVariableHelper___destroy___0=Module["_emscripten_bind_ObjectVariableHelper___destroy___0"]=function(){return(_emscripten_bind_ObjectVariableHelper___destroy___0=Module["_emscripten_bind_ObjectVariableHelper___destroy___0"]=Module["asm"]["Hg"]).apply(null,arguments)};var _emscripten_bind_EventsBasedObjectVariantHelper_STATIC_ComplyVariantsToEventsBasedObject_2=Module["_emscripten_bind_EventsBasedObjectVariantHelper_STATIC_ComplyVariantsToEventsBasedObject_2"]=function(){return(_emscripten_bind_EventsBasedObjectVariantHelper_STATIC_ComplyVariantsToEventsBasedObject_2=Module["_emscripten_bind_EventsBasedObjectVariantHelper_STATIC_ComplyVariantsToEventsBasedObject_2"]=Module["asm"]["Ig"]).apply(null,arguments)};var _emscripten_bind_EventsBasedObjectVariantHelper_STATIC_FindAllChildrenCustomObjectType_2=Module["_emscripten_bind_EventsBasedObjectVariantHelper_STATIC_FindAllChildrenCustomObjectType_2"]=function(){return(_emscripten_bind_EventsBasedObjectVariantHelper_STATIC_FindAllChildrenCustomObjectType_2=Module["_emscripten_bind_EventsBasedObjectVariantHelper_STATIC_FindAllChildrenCustomObjectType_2"]=Module["asm"]["Jg"]).apply(null,arguments)};var _emscripten_bind_EventsBasedObjectVariantHelper___destroy___0=Module["_emscripten_bind_EventsBasedObjectVariantHelper___destroy___0"]=function(){return(_emscripten_bind_EventsBasedObjectVariantHelper___destroy___0=Module["_emscripten_bind_EventsBasedObjectVariantHelper___destroy___0"]=Module["asm"]["Kg"]).apply(null,arguments)};var _emscripten_bind_ObjectGroupsContainer_ObjectGroupsContainer_0=Module["_emscripten_bind_ObjectGroupsContainer_ObjectGroupsContainer_0"]=function(){return(_emscripten_bind_ObjectGroupsContainer_ObjectGroupsContainer_0=Module["_emscripten_bind_ObjectGroupsContainer_ObjectGroupsContainer_0"]=Module["asm"]["Lg"]).apply(null,arguments)};var _emscripten_bind_ObjectGroupsContainer_Has_1=Module["_emscripten_bind_ObjectGroupsContainer_Has_1"]=function(){return(_emscripten_bind_ObjectGroupsContainer_Has_1=Module["_emscripten_bind_ObjectGroupsContainer_Has_1"]=Module["asm"]["Mg"]).apply(null,arguments)};var _emscripten_bind_ObjectGroupsContainer_Insert_2=Module["_emscripten_bind_ObjectGroupsContainer_Insert_2"]=function(){return(_emscripten_bind_ObjectGroupsContainer_Insert_2=Module["_emscripten_bind_ObjectGroupsContainer_Insert_2"]=Module["asm"]["Ng"]).apply(null,arguments)};var _emscripten_bind_ObjectGroupsContainer_InsertNew_2=Module["_emscripten_bind_ObjectGroupsContainer_InsertNew_2"]=function(){return(_emscripten_bind_ObjectGroupsContainer_InsertNew_2=Module["_emscripten_bind_ObjectGroupsContainer_InsertNew_2"]=Module["asm"]["Og"]).apply(null,arguments)};var _emscripten_bind_ObjectGroupsContainer_Count_0=Module["_emscripten_bind_ObjectGroupsContainer_Count_0"]=function(){return(_emscripten_bind_ObjectGroupsContainer_Count_0=Module["_emscripten_bind_ObjectGroupsContainer_Count_0"]=Module["asm"]["Pg"]).apply(null,arguments)};var _emscripten_bind_ObjectGroupsContainer_Get_1=Module["_emscripten_bind_ObjectGroupsContainer_Get_1"]=function(){return(_emscripten_bind_ObjectGroupsContainer_Get_1=Module["_emscripten_bind_ObjectGroupsContainer_Get_1"]=Module["asm"]["Qg"]).apply(null,arguments)};var _emscripten_bind_ObjectGroupsContainer_GetAt_1=Module["_emscripten_bind_ObjectGroupsContainer_GetAt_1"]=function(){return(_emscripten_bind_ObjectGroupsContainer_GetAt_1=Module["_emscripten_bind_ObjectGroupsContainer_GetAt_1"]=Module["asm"]["Rg"]).apply(null,arguments)};var _emscripten_bind_ObjectGroupsContainer_Clear_0=Module["_emscripten_bind_ObjectGroupsContainer_Clear_0"]=function(){return(_emscripten_bind_ObjectGroupsContainer_Clear_0=Module["_emscripten_bind_ObjectGroupsContainer_Clear_0"]=Module["asm"]["Sg"]).apply(null,arguments)};var _emscripten_bind_ObjectGroupsContainer_Remove_1=Module["_emscripten_bind_ObjectGroupsContainer_Remove_1"]=function(){return(_emscripten_bind_ObjectGroupsContainer_Remove_1=Module["_emscripten_bind_ObjectGroupsContainer_Remove_1"]=Module["asm"]["Tg"]).apply(null,arguments)};var _emscripten_bind_ObjectGroupsContainer_GetPosition_1=Module["_emscripten_bind_ObjectGroupsContainer_GetPosition_1"]=function(){return(_emscripten_bind_ObjectGroupsContainer_GetPosition_1=Module["_emscripten_bind_ObjectGroupsContainer_GetPosition_1"]=Module["asm"]["Ug"]).apply(null,arguments)};var _emscripten_bind_ObjectGroupsContainer_Rename_2=Module["_emscripten_bind_ObjectGroupsContainer_Rename_2"]=function(){return(_emscripten_bind_ObjectGroupsContainer_Rename_2=Module["_emscripten_bind_ObjectGroupsContainer_Rename_2"]=Module["asm"]["Vg"]).apply(null,arguments)};var _emscripten_bind_ObjectGroupsContainer_Move_2=Module["_emscripten_bind_ObjectGroupsContainer_Move_2"]=function(){return(_emscripten_bind_ObjectGroupsContainer_Move_2=Module["_emscripten_bind_ObjectGroupsContainer_Move_2"]=Module["asm"]["Wg"]).apply(null,arguments)};var _emscripten_bind_ObjectGroupsContainer_SerializeTo_1=Module["_emscripten_bind_ObjectGroupsContainer_SerializeTo_1"]=function(){return(_emscripten_bind_ObjectGroupsContainer_SerializeTo_1=Module["_emscripten_bind_ObjectGroupsContainer_SerializeTo_1"]=Module["asm"]["Xg"]).apply(null,arguments)};var _emscripten_bind_ObjectGroupsContainer_UnserializeFrom_1=Module["_emscripten_bind_ObjectGroupsContainer_UnserializeFrom_1"]=function(){return(_emscripten_bind_ObjectGroupsContainer_UnserializeFrom_1=Module["_emscripten_bind_ObjectGroupsContainer_UnserializeFrom_1"]=Module["asm"]["Yg"]).apply(null,arguments)};var _emscripten_bind_ObjectGroupsContainer___destroy___0=Module["_emscripten_bind_ObjectGroupsContainer___destroy___0"]=function(){return(_emscripten_bind_ObjectGroupsContainer___destroy___0=Module["_emscripten_bind_ObjectGroupsContainer___destroy___0"]=Module["asm"]["Zg"]).apply(null,arguments)};var _emscripten_bind_PlatformSpecificAssets_PlatformSpecificAssets_0=Module["_emscripten_bind_PlatformSpecificAssets_PlatformSpecificAssets_0"]=function(){return(_emscripten_bind_PlatformSpecificAssets_PlatformSpecificAssets_0=Module["_emscripten_bind_PlatformSpecificAssets_PlatformSpecificAssets_0"]=Module["asm"]["_g"]).apply(null,arguments)};var _emscripten_bind_PlatformSpecificAssets_Has_2=Module["_emscripten_bind_PlatformSpecificAssets_Has_2"]=function(){return(_emscripten_bind_PlatformSpecificAssets_Has_2=Module["_emscripten_bind_PlatformSpecificAssets_Has_2"]=Module["asm"]["$g"]).apply(null,arguments)};var _emscripten_bind_PlatformSpecificAssets_Get_2=Module["_emscripten_bind_PlatformSpecificAssets_Get_2"]=function(){return(_emscripten_bind_PlatformSpecificAssets_Get_2=Module["_emscripten_bind_PlatformSpecificAssets_Get_2"]=Module["asm"]["ah"]).apply(null,arguments)};var _emscripten_bind_PlatformSpecificAssets_Remove_2=Module["_emscripten_bind_PlatformSpecificAssets_Remove_2"]=function(){return(_emscripten_bind_PlatformSpecificAssets_Remove_2=Module["_emscripten_bind_PlatformSpecificAssets_Remove_2"]=Module["asm"]["bh"]).apply(null,arguments)};var _emscripten_bind_PlatformSpecificAssets_Set_3=Module["_emscripten_bind_PlatformSpecificAssets_Set_3"]=function(){return(_emscripten_bind_PlatformSpecificAssets_Set_3=Module["_emscripten_bind_PlatformSpecificAssets_Set_3"]=Module["asm"]["ch"]).apply(null,arguments)};var _emscripten_bind_PlatformSpecificAssets_ExposeResources_1=Module["_emscripten_bind_PlatformSpecificAssets_ExposeResources_1"]=function(){return(_emscripten_bind_PlatformSpecificAssets_ExposeResources_1=Module["_emscripten_bind_PlatformSpecificAssets_ExposeResources_1"]=Module["asm"]["dh"]).apply(null,arguments)};var _emscripten_bind_PlatformSpecificAssets_SerializeTo_1=Module["_emscripten_bind_PlatformSpecificAssets_SerializeTo_1"]=function(){return(_emscripten_bind_PlatformSpecificAssets_SerializeTo_1=Module["_emscripten_bind_PlatformSpecificAssets_SerializeTo_1"]=Module["asm"]["eh"]).apply(null,arguments)};var _emscripten_bind_PlatformSpecificAssets_UnserializeFrom_1=Module["_emscripten_bind_PlatformSpecificAssets_UnserializeFrom_1"]=function(){return(_emscripten_bind_PlatformSpecificAssets_UnserializeFrom_1=Module["_emscripten_bind_PlatformSpecificAssets_UnserializeFrom_1"]=Module["asm"]["fh"]).apply(null,arguments)};var _emscripten_bind_PlatformSpecificAssets___destroy___0=Module["_emscripten_bind_PlatformSpecificAssets___destroy___0"]=function(){return(_emscripten_bind_PlatformSpecificAssets___destroy___0=Module["_emscripten_bind_PlatformSpecificAssets___destroy___0"]=Module["asm"]["gh"]).apply(null,arguments)};var _emscripten_bind_LoadingScreen_LoadingScreen_0=Module["_emscripten_bind_LoadingScreen_LoadingScreen_0"]=function(){return(_emscripten_bind_LoadingScreen_LoadingScreen_0=Module["_emscripten_bind_LoadingScreen_LoadingScreen_0"]=Module["asm"]["hh"]).apply(null,arguments)};var _emscripten_bind_LoadingScreen_IsGDevelopLogoShownDuringLoadingScreen_0=Module["_emscripten_bind_LoadingScreen_IsGDevelopLogoShownDuringLoadingScreen_0"]=function(){return(_emscripten_bind_LoadingScreen_IsGDevelopLogoShownDuringLoadingScreen_0=Module["_emscripten_bind_LoadingScreen_IsGDevelopLogoShownDuringLoadingScreen_0"]=Module["asm"]["ih"]).apply(null,arguments)};var _emscripten_bind_LoadingScreen_ShowGDevelopLogoDuringLoadingScreen_1=Module["_emscripten_bind_LoadingScreen_ShowGDevelopLogoDuringLoadingScreen_1"]=function(){return(_emscripten_bind_LoadingScreen_ShowGDevelopLogoDuringLoadingScreen_1=Module["_emscripten_bind_LoadingScreen_ShowGDevelopLogoDuringLoadingScreen_1"]=Module["asm"]["jh"]).apply(null,arguments)};var _emscripten_bind_LoadingScreen_GetGDevelopLogoStyle_0=Module["_emscripten_bind_LoadingScreen_GetGDevelopLogoStyle_0"]=function(){return(_emscripten_bind_LoadingScreen_GetGDevelopLogoStyle_0=Module["_emscripten_bind_LoadingScreen_GetGDevelopLogoStyle_0"]=Module["asm"]["kh"]).apply(null,arguments)};var _emscripten_bind_LoadingScreen_SetGDevelopLogoStyle_1=Module["_emscripten_bind_LoadingScreen_SetGDevelopLogoStyle_1"]=function(){return(_emscripten_bind_LoadingScreen_SetGDevelopLogoStyle_1=Module["_emscripten_bind_LoadingScreen_SetGDevelopLogoStyle_1"]=Module["asm"]["lh"]).apply(null,arguments)};var _emscripten_bind_LoadingScreen_GetBackgroundImageResourceName_0=Module["_emscripten_bind_LoadingScreen_GetBackgroundImageResourceName_0"]=function(){return(_emscripten_bind_LoadingScreen_GetBackgroundImageResourceName_0=Module["_emscripten_bind_LoadingScreen_GetBackgroundImageResourceName_0"]=Module["asm"]["mh"]).apply(null,arguments)};var _emscripten_bind_LoadingScreen_SetBackgroundImageResourceName_1=Module["_emscripten_bind_LoadingScreen_SetBackgroundImageResourceName_1"]=function(){return(_emscripten_bind_LoadingScreen_SetBackgroundImageResourceName_1=Module["_emscripten_bind_LoadingScreen_SetBackgroundImageResourceName_1"]=Module["asm"]["nh"]).apply(null,arguments)};var _emscripten_bind_LoadingScreen_GetBackgroundColor_0=Module["_emscripten_bind_LoadingScreen_GetBackgroundColor_0"]=function(){return(_emscripten_bind_LoadingScreen_GetBackgroundColor_0=Module["_emscripten_bind_LoadingScreen_GetBackgroundColor_0"]=Module["asm"]["oh"]).apply(null,arguments)};var _emscripten_bind_LoadingScreen_SetBackgroundColor_1=Module["_emscripten_bind_LoadingScreen_SetBackgroundColor_1"]=function(){return(_emscripten_bind_LoadingScreen_SetBackgroundColor_1=Module["_emscripten_bind_LoadingScreen_SetBackgroundColor_1"]=Module["asm"]["ph"]).apply(null,arguments)};var _emscripten_bind_LoadingScreen_GetBackgroundFadeInDuration_0=Module["_emscripten_bind_LoadingScreen_GetBackgroundFadeInDuration_0"]=function(){return(_emscripten_bind_LoadingScreen_GetBackgroundFadeInDuration_0=Module["_emscripten_bind_LoadingScreen_GetBackgroundFadeInDuration_0"]=Module["asm"]["qh"]).apply(null,arguments)};var _emscripten_bind_LoadingScreen_SetBackgroundFadeInDuration_1=Module["_emscripten_bind_LoadingScreen_SetBackgroundFadeInDuration_1"]=function(){return(_emscripten_bind_LoadingScreen_SetBackgroundFadeInDuration_1=Module["_emscripten_bind_LoadingScreen_SetBackgroundFadeInDuration_1"]=Module["asm"]["rh"]).apply(null,arguments)};var _emscripten_bind_LoadingScreen_GetMinDuration_0=Module["_emscripten_bind_LoadingScreen_GetMinDuration_0"]=function(){return(_emscripten_bind_LoadingScreen_GetMinDuration_0=Module["_emscripten_bind_LoadingScreen_GetMinDuration_0"]=Module["asm"]["sh"]).apply(null,arguments)};var _emscripten_bind_LoadingScreen_SetMinDuration_1=Module["_emscripten_bind_LoadingScreen_SetMinDuration_1"]=function(){return(_emscripten_bind_LoadingScreen_SetMinDuration_1=Module["_emscripten_bind_LoadingScreen_SetMinDuration_1"]=Module["asm"]["th"]).apply(null,arguments)};var _emscripten_bind_LoadingScreen_GetLogoAndProgressFadeInDuration_0=Module["_emscripten_bind_LoadingScreen_GetLogoAndProgressFadeInDuration_0"]=function(){return(_emscripten_bind_LoadingScreen_GetLogoAndProgressFadeInDuration_0=Module["_emscripten_bind_LoadingScreen_GetLogoAndProgressFadeInDuration_0"]=Module["asm"]["uh"]).apply(null,arguments)};var _emscripten_bind_LoadingScreen_SetLogoAndProgressFadeInDuration_1=Module["_emscripten_bind_LoadingScreen_SetLogoAndProgressFadeInDuration_1"]=function(){return(_emscripten_bind_LoadingScreen_SetLogoAndProgressFadeInDuration_1=Module["_emscripten_bind_LoadingScreen_SetLogoAndProgressFadeInDuration_1"]=Module["asm"]["vh"]).apply(null,arguments)};var _emscripten_bind_LoadingScreen_GetLogoAndProgressLogoFadeInDelay_0=Module["_emscripten_bind_LoadingScreen_GetLogoAndProgressLogoFadeInDelay_0"]=function(){return(_emscripten_bind_LoadingScreen_GetLogoAndProgressLogoFadeInDelay_0=Module["_emscripten_bind_LoadingScreen_GetLogoAndProgressLogoFadeInDelay_0"]=Module["asm"]["wh"]).apply(null,arguments)};var _emscripten_bind_LoadingScreen_SetLogoAndProgressLogoFadeInDelay_1=Module["_emscripten_bind_LoadingScreen_SetLogoAndProgressLogoFadeInDelay_1"]=function(){return(_emscripten_bind_LoadingScreen_SetLogoAndProgressLogoFadeInDelay_1=Module["_emscripten_bind_LoadingScreen_SetLogoAndProgressLogoFadeInDelay_1"]=Module["asm"]["xh"]).apply(null,arguments)};var _emscripten_bind_LoadingScreen_GetShowProgressBar_0=Module["_emscripten_bind_LoadingScreen_GetShowProgressBar_0"]=function(){return(_emscripten_bind_LoadingScreen_GetShowProgressBar_0=Module["_emscripten_bind_LoadingScreen_GetShowProgressBar_0"]=Module["asm"]["yh"]).apply(null,arguments)};var _emscripten_bind_LoadingScreen_SetShowProgressBar_1=Module["_emscripten_bind_LoadingScreen_SetShowProgressBar_1"]=function(){return(_emscripten_bind_LoadingScreen_SetShowProgressBar_1=Module["_emscripten_bind_LoadingScreen_SetShowProgressBar_1"]=Module["asm"]["zh"]).apply(null,arguments)};var _emscripten_bind_LoadingScreen_GetProgressBarMaxWidth_0=Module["_emscripten_bind_LoadingScreen_GetProgressBarMaxWidth_0"]=function(){return(_emscripten_bind_LoadingScreen_GetProgressBarMaxWidth_0=Module["_emscripten_bind_LoadingScreen_GetProgressBarMaxWidth_0"]=Module["asm"]["Ah"]).apply(null,arguments)};var _emscripten_bind_LoadingScreen_SetProgressBarMaxWidth_1=Module["_emscripten_bind_LoadingScreen_SetProgressBarMaxWidth_1"]=function(){return(_emscripten_bind_LoadingScreen_SetProgressBarMaxWidth_1=Module["_emscripten_bind_LoadingScreen_SetProgressBarMaxWidth_1"]=Module["asm"]["Bh"]).apply(null,arguments)};var _emscripten_bind_LoadingScreen_GetProgressBarMinWidth_0=Module["_emscripten_bind_LoadingScreen_GetProgressBarMinWidth_0"]=function(){return(_emscripten_bind_LoadingScreen_GetProgressBarMinWidth_0=Module["_emscripten_bind_LoadingScreen_GetProgressBarMinWidth_0"]=Module["asm"]["Ch"]).apply(null,arguments)};var _emscripten_bind_LoadingScreen_SetProgressBarMinWidth_1=Module["_emscripten_bind_LoadingScreen_SetProgressBarMinWidth_1"]=function(){return(_emscripten_bind_LoadingScreen_SetProgressBarMinWidth_1=Module["_emscripten_bind_LoadingScreen_SetProgressBarMinWidth_1"]=Module["asm"]["Dh"]).apply(null,arguments)};var _emscripten_bind_LoadingScreen_GetProgressBarWidthPercent_0=Module["_emscripten_bind_LoadingScreen_GetProgressBarWidthPercent_0"]=function(){return(_emscripten_bind_LoadingScreen_GetProgressBarWidthPercent_0=Module["_emscripten_bind_LoadingScreen_GetProgressBarWidthPercent_0"]=Module["asm"]["Eh"]).apply(null,arguments)};var _emscripten_bind_LoadingScreen_SetProgressBarWidthPercent_1=Module["_emscripten_bind_LoadingScreen_SetProgressBarWidthPercent_1"]=function(){return(_emscripten_bind_LoadingScreen_SetProgressBarWidthPercent_1=Module["_emscripten_bind_LoadingScreen_SetProgressBarWidthPercent_1"]=Module["asm"]["Fh"]).apply(null,arguments)};var _emscripten_bind_LoadingScreen_GetProgressBarHeight_0=Module["_emscripten_bind_LoadingScreen_GetProgressBarHeight_0"]=function(){return(_emscripten_bind_LoadingScreen_GetProgressBarHeight_0=Module["_emscripten_bind_LoadingScreen_GetProgressBarHeight_0"]=Module["asm"]["Gh"]).apply(null,arguments)};var _emscripten_bind_LoadingScreen_SetProgressBarHeight_1=Module["_emscripten_bind_LoadingScreen_SetProgressBarHeight_1"]=function(){return(_emscripten_bind_LoadingScreen_SetProgressBarHeight_1=Module["_emscripten_bind_LoadingScreen_SetProgressBarHeight_1"]=Module["asm"]["Hh"]).apply(null,arguments)};var _emscripten_bind_LoadingScreen_GetProgressBarColor_0=Module["_emscripten_bind_LoadingScreen_GetProgressBarColor_0"]=function(){return(_emscripten_bind_LoadingScreen_GetProgressBarColor_0=Module["_emscripten_bind_LoadingScreen_GetProgressBarColor_0"]=Module["asm"]["Ih"]).apply(null,arguments)};var _emscripten_bind_LoadingScreen_SetProgressBarColor_1=Module["_emscripten_bind_LoadingScreen_SetProgressBarColor_1"]=function(){return(_emscripten_bind_LoadingScreen_SetProgressBarColor_1=Module["_emscripten_bind_LoadingScreen_SetProgressBarColor_1"]=Module["asm"]["Jh"]).apply(null,arguments)};var _emscripten_bind_LoadingScreen_SerializeTo_1=Module["_emscripten_bind_LoadingScreen_SerializeTo_1"]=function(){return(_emscripten_bind_LoadingScreen_SerializeTo_1=Module["_emscripten_bind_LoadingScreen_SerializeTo_1"]=Module["asm"]["Kh"]).apply(null,arguments)};var _emscripten_bind_LoadingScreen_UnserializeFrom_1=Module["_emscripten_bind_LoadingScreen_UnserializeFrom_1"]=function(){return(_emscripten_bind_LoadingScreen_UnserializeFrom_1=Module["_emscripten_bind_LoadingScreen_UnserializeFrom_1"]=Module["asm"]["Lh"]).apply(null,arguments)};var _emscripten_bind_LoadingScreen___destroy___0=Module["_emscripten_bind_LoadingScreen___destroy___0"]=function(){return(_emscripten_bind_LoadingScreen___destroy___0=Module["_emscripten_bind_LoadingScreen___destroy___0"]=Module["asm"]["Mh"]).apply(null,arguments)};var _emscripten_bind_Watermark_Watermark_0=Module["_emscripten_bind_Watermark_Watermark_0"]=function(){return(_emscripten_bind_Watermark_Watermark_0=Module["_emscripten_bind_Watermark_Watermark_0"]=Module["asm"]["Nh"]).apply(null,arguments)};var _emscripten_bind_Watermark_IsGDevelopWatermarkShown_0=Module["_emscripten_bind_Watermark_IsGDevelopWatermarkShown_0"]=function(){return(_emscripten_bind_Watermark_IsGDevelopWatermarkShown_0=Module["_emscripten_bind_Watermark_IsGDevelopWatermarkShown_0"]=Module["asm"]["Oh"]).apply(null,arguments)};var _emscripten_bind_Watermark_ShowGDevelopWatermark_1=Module["_emscripten_bind_Watermark_ShowGDevelopWatermark_1"]=function(){return(_emscripten_bind_Watermark_ShowGDevelopWatermark_1=Module["_emscripten_bind_Watermark_ShowGDevelopWatermark_1"]=Module["asm"]["Ph"]).apply(null,arguments)};var _emscripten_bind_Watermark_GetPlacement_0=Module["_emscripten_bind_Watermark_GetPlacement_0"]=function(){return(_emscripten_bind_Watermark_GetPlacement_0=Module["_emscripten_bind_Watermark_GetPlacement_0"]=Module["asm"]["Qh"]).apply(null,arguments)};var _emscripten_bind_Watermark_SetPlacement_1=Module["_emscripten_bind_Watermark_SetPlacement_1"]=function(){return(_emscripten_bind_Watermark_SetPlacement_1=Module["_emscripten_bind_Watermark_SetPlacement_1"]=Module["asm"]["Rh"]).apply(null,arguments)};var _emscripten_bind_Watermark_SerializeTo_1=Module["_emscripten_bind_Watermark_SerializeTo_1"]=function(){return(_emscripten_bind_Watermark_SerializeTo_1=Module["_emscripten_bind_Watermark_SerializeTo_1"]=Module["asm"]["Sh"]).apply(null,arguments)};var _emscripten_bind_Watermark_UnserializeFrom_1=Module["_emscripten_bind_Watermark_UnserializeFrom_1"]=function(){return(_emscripten_bind_Watermark_UnserializeFrom_1=Module["_emscripten_bind_Watermark_UnserializeFrom_1"]=Module["asm"]["Th"]).apply(null,arguments)};var _emscripten_bind_Watermark___destroy___0=Module["_emscripten_bind_Watermark___destroy___0"]=function(){return(_emscripten_bind_Watermark___destroy___0=Module["_emscripten_bind_Watermark___destroy___0"]=Module["asm"]["Uh"]).apply(null,arguments)};var _emscripten_bind_ObjectFolderOrObject_ObjectFolderOrObject_0=Module["_emscripten_bind_ObjectFolderOrObject_ObjectFolderOrObject_0"]=function(){return(_emscripten_bind_ObjectFolderOrObject_ObjectFolderOrObject_0=Module["_emscripten_bind_ObjectFolderOrObject_ObjectFolderOrObject_0"]=Module["asm"]["Vh"]).apply(null,arguments)};var _emscripten_bind_ObjectFolderOrObject_IsFolder_0=Module["_emscripten_bind_ObjectFolderOrObject_IsFolder_0"]=function(){return(_emscripten_bind_ObjectFolderOrObject_IsFolder_0=Module["_emscripten_bind_ObjectFolderOrObject_IsFolder_0"]=Module["asm"]["Wh"]).apply(null,arguments)};var _emscripten_bind_ObjectFolderOrObject_IsRootFolder_0=Module["_emscripten_bind_ObjectFolderOrObject_IsRootFolder_0"]=function(){return(_emscripten_bind_ObjectFolderOrObject_IsRootFolder_0=Module["_emscripten_bind_ObjectFolderOrObject_IsRootFolder_0"]=Module["asm"]["Xh"]).apply(null,arguments)};var _emscripten_bind_ObjectFolderOrObject_GetObject_0=Module["_emscripten_bind_ObjectFolderOrObject_GetObject_0"]=function(){return(_emscripten_bind_ObjectFolderOrObject_GetObject_0=Module["_emscripten_bind_ObjectFolderOrObject_GetObject_0"]=Module["asm"]["Yh"]).apply(null,arguments)};var _emscripten_bind_ObjectFolderOrObject_GetFolderName_0=Module["_emscripten_bind_ObjectFolderOrObject_GetFolderName_0"]=function(){return(_emscripten_bind_ObjectFolderOrObject_GetFolderName_0=Module["_emscripten_bind_ObjectFolderOrObject_GetFolderName_0"]=Module["asm"]["Zh"]).apply(null,arguments)};var _emscripten_bind_ObjectFolderOrObject_SetFolderName_1=Module["_emscripten_bind_ObjectFolderOrObject_SetFolderName_1"]=function(){return(_emscripten_bind_ObjectFolderOrObject_SetFolderName_1=Module["_emscripten_bind_ObjectFolderOrObject_SetFolderName_1"]=Module["asm"]["_h"]).apply(null,arguments)};var _emscripten_bind_ObjectFolderOrObject_HasObjectNamed_1=Module["_emscripten_bind_ObjectFolderOrObject_HasObjectNamed_1"]=function(){return(_emscripten_bind_ObjectFolderOrObject_HasObjectNamed_1=Module["_emscripten_bind_ObjectFolderOrObject_HasObjectNamed_1"]=Module["asm"]["$h"]).apply(null,arguments)};var _emscripten_bind_ObjectFolderOrObject_GetObjectNamed_1=Module["_emscripten_bind_ObjectFolderOrObject_GetObjectNamed_1"]=function(){return(_emscripten_bind_ObjectFolderOrObject_GetObjectNamed_1=Module["_emscripten_bind_ObjectFolderOrObject_GetObjectNamed_1"]=Module["asm"]["ai"]).apply(null,arguments)};var _emscripten_bind_ObjectFolderOrObject_GetChildrenCount_0=Module["_emscripten_bind_ObjectFolderOrObject_GetChildrenCount_0"]=function(){return(_emscripten_bind_ObjectFolderOrObject_GetChildrenCount_0=Module["_emscripten_bind_ObjectFolderOrObject_GetChildrenCount_0"]=Module["asm"]["bi"]).apply(null,arguments)};var _emscripten_bind_ObjectFolderOrObject_GetChildAt_1=Module["_emscripten_bind_ObjectFolderOrObject_GetChildAt_1"]=function(){return(_emscripten_bind_ObjectFolderOrObject_GetChildAt_1=Module["_emscripten_bind_ObjectFolderOrObject_GetChildAt_1"]=Module["asm"]["ci"]).apply(null,arguments)};var _emscripten_bind_ObjectFolderOrObject_GetObjectChild_1=Module["_emscripten_bind_ObjectFolderOrObject_GetObjectChild_1"]=function(){return(_emscripten_bind_ObjectFolderOrObject_GetObjectChild_1=Module["_emscripten_bind_ObjectFolderOrObject_GetObjectChild_1"]=Module["asm"]["di"]).apply(null,arguments)};var _emscripten_bind_ObjectFolderOrObject_GetChildPosition_1=Module["_emscripten_bind_ObjectFolderOrObject_GetChildPosition_1"]=function(){return(_emscripten_bind_ObjectFolderOrObject_GetChildPosition_1=Module["_emscripten_bind_ObjectFolderOrObject_GetChildPosition_1"]=Module["asm"]["ei"]).apply(null,arguments)};var _emscripten_bind_ObjectFolderOrObject_GetParent_0=Module["_emscripten_bind_ObjectFolderOrObject_GetParent_0"]=function(){return(_emscripten_bind_ObjectFolderOrObject_GetParent_0=Module["_emscripten_bind_ObjectFolderOrObject_GetParent_0"]=Module["asm"]["fi"]).apply(null,arguments)};var _emscripten_bind_ObjectFolderOrObject_InsertNewFolder_2=Module["_emscripten_bind_ObjectFolderOrObject_InsertNewFolder_2"]=function(){return(_emscripten_bind_ObjectFolderOrObject_InsertNewFolder_2=Module["_emscripten_bind_ObjectFolderOrObject_InsertNewFolder_2"]=Module["asm"]["gi"]).apply(null,arguments)};var _emscripten_bind_ObjectFolderOrObject_GetOrCreateFolderChild_1=Module["_emscripten_bind_ObjectFolderOrObject_GetOrCreateFolderChild_1"]=function(){return(_emscripten_bind_ObjectFolderOrObject_GetOrCreateFolderChild_1=Module["_emscripten_bind_ObjectFolderOrObject_GetOrCreateFolderChild_1"]=Module["asm"]["hi"]).apply(null,arguments)};var _emscripten_bind_ObjectFolderOrObject_MoveObjectFolderOrObjectToAnotherFolder_3=Module["_emscripten_bind_ObjectFolderOrObject_MoveObjectFolderOrObjectToAnotherFolder_3"]=function(){return(_emscripten_bind_ObjectFolderOrObject_MoveObjectFolderOrObjectToAnotherFolder_3=Module["_emscripten_bind_ObjectFolderOrObject_MoveObjectFolderOrObjectToAnotherFolder_3"]=Module["asm"]["ii"]).apply(null,arguments)};var _emscripten_bind_ObjectFolderOrObject_MoveChild_2=Module["_emscripten_bind_ObjectFolderOrObject_MoveChild_2"]=function(){return(_emscripten_bind_ObjectFolderOrObject_MoveChild_2=Module["_emscripten_bind_ObjectFolderOrObject_MoveChild_2"]=Module["asm"]["ji"]).apply(null,arguments)};var _emscripten_bind_ObjectFolderOrObject_RemoveFolderChild_1=Module["_emscripten_bind_ObjectFolderOrObject_RemoveFolderChild_1"]=function(){return(_emscripten_bind_ObjectFolderOrObject_RemoveFolderChild_1=Module["_emscripten_bind_ObjectFolderOrObject_RemoveFolderChild_1"]=Module["asm"]["ki"]).apply(null,arguments)};var _emscripten_bind_ObjectFolderOrObject_IsADescendantOf_1=Module["_emscripten_bind_ObjectFolderOrObject_IsADescendantOf_1"]=function(){return(_emscripten_bind_ObjectFolderOrObject_IsADescendantOf_1=Module["_emscripten_bind_ObjectFolderOrObject_IsADescendantOf_1"]=Module["asm"]["li"]).apply(null,arguments)};var _emscripten_bind_ObjectFolderOrObject_GetQuickCustomizationVisibility_0=Module["_emscripten_bind_ObjectFolderOrObject_GetQuickCustomizationVisibility_0"]=function(){return(_emscripten_bind_ObjectFolderOrObject_GetQuickCustomizationVisibility_0=Module["_emscripten_bind_ObjectFolderOrObject_GetQuickCustomizationVisibility_0"]=Module["asm"]["mi"]).apply(null,arguments)};var _emscripten_bind_ObjectFolderOrObject_SetQuickCustomizationVisibility_1=Module["_emscripten_bind_ObjectFolderOrObject_SetQuickCustomizationVisibility_1"]=function(){return(_emscripten_bind_ObjectFolderOrObject_SetQuickCustomizationVisibility_1=Module["_emscripten_bind_ObjectFolderOrObject_SetQuickCustomizationVisibility_1"]=Module["asm"]["ni"]).apply(null,arguments)};var _emscripten_bind_ObjectFolderOrObject___destroy___0=Module["_emscripten_bind_ObjectFolderOrObject___destroy___0"]=function(){return(_emscripten_bind_ObjectFolderOrObject___destroy___0=Module["_emscripten_bind_ObjectFolderOrObject___destroy___0"]=Module["asm"]["oi"]).apply(null,arguments)};var _emscripten_bind_ObjectsContainer_ObjectsContainer_1=Module["_emscripten_bind_ObjectsContainer_ObjectsContainer_1"]=function(){return(_emscripten_bind_ObjectsContainer_ObjectsContainer_1=Module["_emscripten_bind_ObjectsContainer_ObjectsContainer_1"]=Module["asm"]["pi"]).apply(null,arguments)};var _emscripten_bind_ObjectsContainer_GetSourceType_0=Module["_emscripten_bind_ObjectsContainer_GetSourceType_0"]=function(){return(_emscripten_bind_ObjectsContainer_GetSourceType_0=Module["_emscripten_bind_ObjectsContainer_GetSourceType_0"]=Module["asm"]["qi"]).apply(null,arguments)};var _emscripten_bind_ObjectsContainer_InsertNewObject_4=Module["_emscripten_bind_ObjectsContainer_InsertNewObject_4"]=function(){return(_emscripten_bind_ObjectsContainer_InsertNewObject_4=Module["_emscripten_bind_ObjectsContainer_InsertNewObject_4"]=Module["asm"]["ri"]).apply(null,arguments)};var _emscripten_bind_ObjectsContainer_InsertNewObjectInFolder_5=Module["_emscripten_bind_ObjectsContainer_InsertNewObjectInFolder_5"]=function(){return(_emscripten_bind_ObjectsContainer_InsertNewObjectInFolder_5=Module["_emscripten_bind_ObjectsContainer_InsertNewObjectInFolder_5"]=Module["asm"]["si"]).apply(null,arguments)};var _emscripten_bind_ObjectsContainer_InsertObject_2=Module["_emscripten_bind_ObjectsContainer_InsertObject_2"]=function(){return(_emscripten_bind_ObjectsContainer_InsertObject_2=Module["_emscripten_bind_ObjectsContainer_InsertObject_2"]=Module["asm"]["ti"]).apply(null,arguments)};var _emscripten_bind_ObjectsContainer_HasObjectNamed_1=Module["_emscripten_bind_ObjectsContainer_HasObjectNamed_1"]=function(){return(_emscripten_bind_ObjectsContainer_HasObjectNamed_1=Module["_emscripten_bind_ObjectsContainer_HasObjectNamed_1"]=Module["asm"]["ui"]).apply(null,arguments)};var _emscripten_bind_ObjectsContainer_GetObject_1=Module["_emscripten_bind_ObjectsContainer_GetObject_1"]=function(){return(_emscripten_bind_ObjectsContainer_GetObject_1=Module["_emscripten_bind_ObjectsContainer_GetObject_1"]=Module["asm"]["vi"]).apply(null,arguments)};var _emscripten_bind_ObjectsContainer_GetObjectAt_1=Module["_emscripten_bind_ObjectsContainer_GetObjectAt_1"]=function(){return(_emscripten_bind_ObjectsContainer_GetObjectAt_1=Module["_emscripten_bind_ObjectsContainer_GetObjectAt_1"]=Module["asm"]["wi"]).apply(null,arguments)};var _emscripten_bind_ObjectsContainer_GetObjectPosition_1=Module["_emscripten_bind_ObjectsContainer_GetObjectPosition_1"]=function(){return(_emscripten_bind_ObjectsContainer_GetObjectPosition_1=Module["_emscripten_bind_ObjectsContainer_GetObjectPosition_1"]=Module["asm"]["xi"]).apply(null,arguments)};var _emscripten_bind_ObjectsContainer_RemoveObject_1=Module["_emscripten_bind_ObjectsContainer_RemoveObject_1"]=function(){return(_emscripten_bind_ObjectsContainer_RemoveObject_1=Module["_emscripten_bind_ObjectsContainer_RemoveObject_1"]=Module["asm"]["yi"]).apply(null,arguments)};var _emscripten_bind_ObjectsContainer_MoveObject_2=Module["_emscripten_bind_ObjectsContainer_MoveObject_2"]=function(){return(_emscripten_bind_ObjectsContainer_MoveObject_2=Module["_emscripten_bind_ObjectsContainer_MoveObject_2"]=Module["asm"]["zi"]).apply(null,arguments)};var _emscripten_bind_ObjectsContainer_MoveObjectFolderOrObjectToAnotherContainerInFolder_4=Module["_emscripten_bind_ObjectsContainer_MoveObjectFolderOrObjectToAnotherContainerInFolder_4"]=function(){return(_emscripten_bind_ObjectsContainer_MoveObjectFolderOrObjectToAnotherContainerInFolder_4=Module["_emscripten_bind_ObjectsContainer_MoveObjectFolderOrObjectToAnotherContainerInFolder_4"]=Module["asm"]["Ai"]).apply(null,arguments)};var _emscripten_bind_ObjectsContainer_GetObjectsCount_0=Module["_emscripten_bind_ObjectsContainer_GetObjectsCount_0"]=function(){return(_emscripten_bind_ObjectsContainer_GetObjectsCount_0=Module["_emscripten_bind_ObjectsContainer_GetObjectsCount_0"]=Module["asm"]["Bi"]).apply(null,arguments)};var _emscripten_bind_ObjectsContainer_GetRootFolder_0=Module["_emscripten_bind_ObjectsContainer_GetRootFolder_0"]=function(){return(_emscripten_bind_ObjectsContainer_GetRootFolder_0=Module["_emscripten_bind_ObjectsContainer_GetRootFolder_0"]=Module["asm"]["Ci"]).apply(null,arguments)};var _emscripten_bind_ObjectsContainer_GetAllObjectFolderOrObjects_0=Module["_emscripten_bind_ObjectsContainer_GetAllObjectFolderOrObjects_0"]=function(){return(_emscripten_bind_ObjectsContainer_GetAllObjectFolderOrObjects_0=Module["_emscripten_bind_ObjectsContainer_GetAllObjectFolderOrObjects_0"]=Module["asm"]["Di"]).apply(null,arguments)};var _emscripten_bind_ObjectsContainer_GetObjectGroups_0=Module["_emscripten_bind_ObjectsContainer_GetObjectGroups_0"]=function(){return(_emscripten_bind_ObjectsContainer_GetObjectGroups_0=Module["_emscripten_bind_ObjectsContainer_GetObjectGroups_0"]=Module["asm"]["Ei"]).apply(null,arguments)};var _emscripten_bind_ObjectsContainer_FREE_GetTypeOfBehavior_3=Module["_emscripten_bind_ObjectsContainer_FREE_GetTypeOfBehavior_3"]=function(){return(_emscripten_bind_ObjectsContainer_FREE_GetTypeOfBehavior_3=Module["_emscripten_bind_ObjectsContainer_FREE_GetTypeOfBehavior_3"]=Module["asm"]["Fi"]).apply(null,arguments)};var _emscripten_bind_ObjectsContainer_FREE_GetTypeOfObject_3=Module["_emscripten_bind_ObjectsContainer_FREE_GetTypeOfObject_3"]=function(){return(_emscripten_bind_ObjectsContainer_FREE_GetTypeOfObject_3=Module["_emscripten_bind_ObjectsContainer_FREE_GetTypeOfObject_3"]=Module["asm"]["Gi"]).apply(null,arguments)};var _emscripten_bind_ObjectsContainer_FREE_GetBehaviorsOfObject_3=Module["_emscripten_bind_ObjectsContainer_FREE_GetBehaviorsOfObject_3"]=function(){return(_emscripten_bind_ObjectsContainer_FREE_GetBehaviorsOfObject_3=Module["_emscripten_bind_ObjectsContainer_FREE_GetBehaviorsOfObject_3"]=Module["asm"]["Hi"]).apply(null,arguments)};var _emscripten_bind_ObjectsContainer_FREE_IsDefaultBehavior_4=Module["_emscripten_bind_ObjectsContainer_FREE_IsDefaultBehavior_4"]=function(){return(_emscripten_bind_ObjectsContainer_FREE_IsDefaultBehavior_4=Module["_emscripten_bind_ObjectsContainer_FREE_IsDefaultBehavior_4"]=Module["asm"]["Ii"]).apply(null,arguments)};var _emscripten_bind_ObjectsContainer_FREE_GetTypeOfBehaviorInObjectOrGroup_4=Module["_emscripten_bind_ObjectsContainer_FREE_GetTypeOfBehaviorInObjectOrGroup_4"]=function(){return(_emscripten_bind_ObjectsContainer_FREE_GetTypeOfBehaviorInObjectOrGroup_4=Module["_emscripten_bind_ObjectsContainer_FREE_GetTypeOfBehaviorInObjectOrGroup_4"]=Module["asm"]["Ji"]).apply(null,arguments)};var _emscripten_bind_ObjectsContainer_FREE_GetBehaviorNamesInObjectOrGroup_4=Module["_emscripten_bind_ObjectsContainer_FREE_GetBehaviorNamesInObjectOrGroup_4"]=function(){return(_emscripten_bind_ObjectsContainer_FREE_GetBehaviorNamesInObjectOrGroup_4=Module["_emscripten_bind_ObjectsContainer_FREE_GetBehaviorNamesInObjectOrGroup_4"]=Module["asm"]["Ki"]).apply(null,arguments)};var _emscripten_bind_ObjectsContainer___destroy___0=Module["_emscripten_bind_ObjectsContainer___destroy___0"]=function(){return(_emscripten_bind_ObjectsContainer___destroy___0=Module["_emscripten_bind_ObjectsContainer___destroy___0"]=Module["asm"]["Li"]).apply(null,arguments)};var _emscripten_bind_Project_Project_0=Module["_emscripten_bind_Project_Project_0"]=function(){return(_emscripten_bind_Project_Project_0=Module["_emscripten_bind_Project_Project_0"]=Module["asm"]["Mi"]).apply(null,arguments)};var _emscripten_bind_Project_SetName_1=Module["_emscripten_bind_Project_SetName_1"]=function(){return(_emscripten_bind_Project_SetName_1=Module["_emscripten_bind_Project_SetName_1"]=Module["asm"]["Ni"]).apply(null,arguments)};var _emscripten_bind_Project_GetName_0=Module["_emscripten_bind_Project_GetName_0"]=function(){return(_emscripten_bind_Project_GetName_0=Module["_emscripten_bind_Project_GetName_0"]=Module["asm"]["Oi"]).apply(null,arguments)};var _emscripten_bind_Project_GetCategories_0=Module["_emscripten_bind_Project_GetCategories_0"]=function(){return(_emscripten_bind_Project_GetCategories_0=Module["_emscripten_bind_Project_GetCategories_0"]=Module["asm"]["Pi"]).apply(null,arguments)};var _emscripten_bind_Project_SetDescription_1=Module["_emscripten_bind_Project_SetDescription_1"]=function(){return(_emscripten_bind_Project_SetDescription_1=Module["_emscripten_bind_Project_SetDescription_1"]=Module["asm"]["Qi"]).apply(null,arguments)};var _emscripten_bind_Project_GetDescription_0=Module["_emscripten_bind_Project_GetDescription_0"]=function(){return(_emscripten_bind_Project_GetDescription_0=Module["_emscripten_bind_Project_GetDescription_0"]=Module["asm"]["Ri"]).apply(null,arguments)};var _emscripten_bind_Project_SetVersion_1=Module["_emscripten_bind_Project_SetVersion_1"]=function(){return(_emscripten_bind_Project_SetVersion_1=Module["_emscripten_bind_Project_SetVersion_1"]=Module["asm"]["Si"]).apply(null,arguments)};var _emscripten_bind_Project_GetVersion_0=Module["_emscripten_bind_Project_GetVersion_0"]=function(){return(_emscripten_bind_Project_GetVersion_0=Module["_emscripten_bind_Project_GetVersion_0"]=Module["asm"]["Ti"]).apply(null,arguments)};var _emscripten_bind_Project_SetAuthor_1=Module["_emscripten_bind_Project_SetAuthor_1"]=function(){return(_emscripten_bind_Project_SetAuthor_1=Module["_emscripten_bind_Project_SetAuthor_1"]=Module["asm"]["Ui"]).apply(null,arguments)};var _emscripten_bind_Project_GetAuthor_0=Module["_emscripten_bind_Project_GetAuthor_0"]=function(){return(_emscripten_bind_Project_GetAuthor_0=Module["_emscripten_bind_Project_GetAuthor_0"]=Module["asm"]["Vi"]).apply(null,arguments)};var _emscripten_bind_Project_GetAuthorIds_0=Module["_emscripten_bind_Project_GetAuthorIds_0"]=function(){return(_emscripten_bind_Project_GetAuthorIds_0=Module["_emscripten_bind_Project_GetAuthorIds_0"]=Module["asm"]["Wi"]).apply(null,arguments)};var _emscripten_bind_Project_GetAuthorUsernames_0=Module["_emscripten_bind_Project_GetAuthorUsernames_0"]=function(){return(_emscripten_bind_Project_GetAuthorUsernames_0=Module["_emscripten_bind_Project_GetAuthorUsernames_0"]=Module["asm"]["Xi"]).apply(null,arguments)};var _emscripten_bind_Project_IsPlayableWithKeyboard_0=Module["_emscripten_bind_Project_IsPlayableWithKeyboard_0"]=function(){return(_emscripten_bind_Project_IsPlayableWithKeyboard_0=Module["_emscripten_bind_Project_IsPlayableWithKeyboard_0"]=Module["asm"]["Yi"]).apply(null,arguments)};var _emscripten_bind_Project_SetPlayableWithKeyboard_1=Module["_emscripten_bind_Project_SetPlayableWithKeyboard_1"]=function(){return(_emscripten_bind_Project_SetPlayableWithKeyboard_1=Module["_emscripten_bind_Project_SetPlayableWithKeyboard_1"]=Module["asm"]["Zi"]).apply(null,arguments)};var _emscripten_bind_Project_IsPlayableWithGamepad_0=Module["_emscripten_bind_Project_IsPlayableWithGamepad_0"]=function(){return(_emscripten_bind_Project_IsPlayableWithGamepad_0=Module["_emscripten_bind_Project_IsPlayableWithGamepad_0"]=Module["asm"]["_i"]).apply(null,arguments)};var _emscripten_bind_Project_SetPlayableWithGamepad_1=Module["_emscripten_bind_Project_SetPlayableWithGamepad_1"]=function(){return(_emscripten_bind_Project_SetPlayableWithGamepad_1=Module["_emscripten_bind_Project_SetPlayableWithGamepad_1"]=Module["asm"]["$i"]).apply(null,arguments)};var _emscripten_bind_Project_IsPlayableWithMobile_0=Module["_emscripten_bind_Project_IsPlayableWithMobile_0"]=function(){return(_emscripten_bind_Project_IsPlayableWithMobile_0=Module["_emscripten_bind_Project_IsPlayableWithMobile_0"]=Module["asm"]["aj"]).apply(null,arguments)};var _emscripten_bind_Project_SetPlayableWithMobile_1=Module["_emscripten_bind_Project_SetPlayableWithMobile_1"]=function(){return(_emscripten_bind_Project_SetPlayableWithMobile_1=Module["_emscripten_bind_Project_SetPlayableWithMobile_1"]=Module["asm"]["bj"]).apply(null,arguments)};var _emscripten_bind_Project_SetPackageName_1=Module["_emscripten_bind_Project_SetPackageName_1"]=function(){return(_emscripten_bind_Project_SetPackageName_1=Module["_emscripten_bind_Project_SetPackageName_1"]=Module["asm"]["cj"]).apply(null,arguments)};var _emscripten_bind_Project_GetPackageName_0=Module["_emscripten_bind_Project_GetPackageName_0"]=function(){return(_emscripten_bind_Project_GetPackageName_0=Module["_emscripten_bind_Project_GetPackageName_0"]=Module["asm"]["dj"]).apply(null,arguments)};var _emscripten_bind_Project_SetTemplateSlug_1=Module["_emscripten_bind_Project_SetTemplateSlug_1"]=function(){return(_emscripten_bind_Project_SetTemplateSlug_1=Module["_emscripten_bind_Project_SetTemplateSlug_1"]=Module["asm"]["ej"]).apply(null,arguments)};var _emscripten_bind_Project_GetTemplateSlug_0=Module["_emscripten_bind_Project_GetTemplateSlug_0"]=function(){return(_emscripten_bind_Project_GetTemplateSlug_0=Module["_emscripten_bind_Project_GetTemplateSlug_0"]=Module["asm"]["fj"]).apply(null,arguments)};var _emscripten_bind_Project_SetOrientation_1=Module["_emscripten_bind_Project_SetOrientation_1"]=function(){return(_emscripten_bind_Project_SetOrientation_1=Module["_emscripten_bind_Project_SetOrientation_1"]=Module["asm"]["gj"]).apply(null,arguments)};var _emscripten_bind_Project_GetOrientation_0=Module["_emscripten_bind_Project_GetOrientation_0"]=function(){return(_emscripten_bind_Project_GetOrientation_0=Module["_emscripten_bind_Project_GetOrientation_0"]=Module["asm"]["hj"]).apply(null,arguments)};var _emscripten_bind_Project_SetProjectUuid_1=Module["_emscripten_bind_Project_SetProjectUuid_1"]=function(){return(_emscripten_bind_Project_SetProjectUuid_1=Module["_emscripten_bind_Project_SetProjectUuid_1"]=Module["asm"]["ij"]).apply(null,arguments)};var _emscripten_bind_Project_GetProjectUuid_0=Module["_emscripten_bind_Project_GetProjectUuid_0"]=function(){return(_emscripten_bind_Project_GetProjectUuid_0=Module["_emscripten_bind_Project_GetProjectUuid_0"]=Module["asm"]["jj"]).apply(null,arguments)};var _emscripten_bind_Project_ResetProjectUuid_0=Module["_emscripten_bind_Project_ResetProjectUuid_0"]=function(){return(_emscripten_bind_Project_ResetProjectUuid_0=Module["_emscripten_bind_Project_ResetProjectUuid_0"]=Module["asm"]["kj"]).apply(null,arguments)};var _emscripten_bind_Project_SetProjectFile_1=Module["_emscripten_bind_Project_SetProjectFile_1"]=function(){return(_emscripten_bind_Project_SetProjectFile_1=Module["_emscripten_bind_Project_SetProjectFile_1"]=Module["asm"]["lj"]).apply(null,arguments)};var _emscripten_bind_Project_GetProjectFile_0=Module["_emscripten_bind_Project_GetProjectFile_0"]=function(){return(_emscripten_bind_Project_GetProjectFile_0=Module["_emscripten_bind_Project_GetProjectFile_0"]=Module["asm"]["mj"]).apply(null,arguments)};var _emscripten_bind_Project_SetGameResolutionSize_2=Module["_emscripten_bind_Project_SetGameResolutionSize_2"]=function(){return(_emscripten_bind_Project_SetGameResolutionSize_2=Module["_emscripten_bind_Project_SetGameResolutionSize_2"]=Module["asm"]["nj"]).apply(null,arguments)};var _emscripten_bind_Project_GetGameResolutionWidth_0=Module["_emscripten_bind_Project_GetGameResolutionWidth_0"]=function(){return(_emscripten_bind_Project_GetGameResolutionWidth_0=Module["_emscripten_bind_Project_GetGameResolutionWidth_0"]=Module["asm"]["oj"]).apply(null,arguments)};var _emscripten_bind_Project_GetGameResolutionHeight_0=Module["_emscripten_bind_Project_GetGameResolutionHeight_0"]=function(){return(_emscripten_bind_Project_GetGameResolutionHeight_0=Module["_emscripten_bind_Project_GetGameResolutionHeight_0"]=Module["asm"]["pj"]).apply(null,arguments)};var _emscripten_bind_Project_GetAdaptGameResolutionAtRuntime_0=Module["_emscripten_bind_Project_GetAdaptGameResolutionAtRuntime_0"]=function(){return(_emscripten_bind_Project_GetAdaptGameResolutionAtRuntime_0=Module["_emscripten_bind_Project_GetAdaptGameResolutionAtRuntime_0"]=Module["asm"]["qj"]).apply(null,arguments)};var _emscripten_bind_Project_SetAdaptGameResolutionAtRuntime_1=Module["_emscripten_bind_Project_SetAdaptGameResolutionAtRuntime_1"]=function(){return(_emscripten_bind_Project_SetAdaptGameResolutionAtRuntime_1=Module["_emscripten_bind_Project_SetAdaptGameResolutionAtRuntime_1"]=Module["asm"]["rj"]).apply(null,arguments)};var _emscripten_bind_Project_SetScaleMode_1=Module["_emscripten_bind_Project_SetScaleMode_1"]=function(){return(_emscripten_bind_Project_SetScaleMode_1=Module["_emscripten_bind_Project_SetScaleMode_1"]=Module["asm"]["sj"]).apply(null,arguments)};var _emscripten_bind_Project_GetScaleMode_0=Module["_emscripten_bind_Project_GetScaleMode_0"]=function(){return(_emscripten_bind_Project_GetScaleMode_0=Module["_emscripten_bind_Project_GetScaleMode_0"]=Module["asm"]["tj"]).apply(null,arguments)};var _emscripten_bind_Project_SetPixelsRounding_1=Module["_emscripten_bind_Project_SetPixelsRounding_1"]=function(){return(_emscripten_bind_Project_SetPixelsRounding_1=Module["_emscripten_bind_Project_SetPixelsRounding_1"]=Module["asm"]["uj"]).apply(null,arguments)};var _emscripten_bind_Project_GetPixelsRounding_0=Module["_emscripten_bind_Project_GetPixelsRounding_0"]=function(){return(_emscripten_bind_Project_GetPixelsRounding_0=Module["_emscripten_bind_Project_GetPixelsRounding_0"]=Module["asm"]["vj"]).apply(null,arguments)};var _emscripten_bind_Project_SetSizeOnStartupMode_1=Module["_emscripten_bind_Project_SetSizeOnStartupMode_1"]=function(){return(_emscripten_bind_Project_SetSizeOnStartupMode_1=Module["_emscripten_bind_Project_SetSizeOnStartupMode_1"]=Module["asm"]["wj"]).apply(null,arguments)};var _emscripten_bind_Project_GetSizeOnStartupMode_0=Module["_emscripten_bind_Project_GetSizeOnStartupMode_0"]=function(){return(_emscripten_bind_Project_GetSizeOnStartupMode_0=Module["_emscripten_bind_Project_GetSizeOnStartupMode_0"]=Module["asm"]["xj"]).apply(null,arguments)};var _emscripten_bind_Project_SetAntialiasingMode_1=Module["_emscripten_bind_Project_SetAntialiasingMode_1"]=function(){return(_emscripten_bind_Project_SetAntialiasingMode_1=Module["_emscripten_bind_Project_SetAntialiasingMode_1"]=Module["asm"]["yj"]).apply(null,arguments)};var _emscripten_bind_Project_GetAntialiasingMode_0=Module["_emscripten_bind_Project_GetAntialiasingMode_0"]=function(){return(_emscripten_bind_Project_GetAntialiasingMode_0=Module["_emscripten_bind_Project_GetAntialiasingMode_0"]=Module["asm"]["zj"]).apply(null,arguments)};var _emscripten_bind_Project_SetAntialisingEnabledOnMobile_1=Module["_emscripten_bind_Project_SetAntialisingEnabledOnMobile_1"]=function(){return(_emscripten_bind_Project_SetAntialisingEnabledOnMobile_1=Module["_emscripten_bind_Project_SetAntialisingEnabledOnMobile_1"]=Module["asm"]["Aj"]).apply(null,arguments)};var _emscripten_bind_Project_IsAntialisingEnabledOnMobile_0=Module["_emscripten_bind_Project_IsAntialisingEnabledOnMobile_0"]=function(){return(_emscripten_bind_Project_IsAntialisingEnabledOnMobile_0=Module["_emscripten_bind_Project_IsAntialisingEnabledOnMobile_0"]=Module["asm"]["Bj"]).apply(null,arguments)};var _emscripten_bind_Project_GetMaximumFPS_0=Module["_emscripten_bind_Project_GetMaximumFPS_0"]=function(){return(_emscripten_bind_Project_GetMaximumFPS_0=Module["_emscripten_bind_Project_GetMaximumFPS_0"]=Module["asm"]["Cj"]).apply(null,arguments)};var _emscripten_bind_Project_SetMaximumFPS_1=Module["_emscripten_bind_Project_SetMaximumFPS_1"]=function(){return(_emscripten_bind_Project_SetMaximumFPS_1=Module["_emscripten_bind_Project_SetMaximumFPS_1"]=Module["asm"]["Dj"]).apply(null,arguments)};var _emscripten_bind_Project_GetMinimumFPS_0=Module["_emscripten_bind_Project_GetMinimumFPS_0"]=function(){return(_emscripten_bind_Project_GetMinimumFPS_0=Module["_emscripten_bind_Project_GetMinimumFPS_0"]=Module["asm"]["Ej"]).apply(null,arguments)};var _emscripten_bind_Project_SetMinimumFPS_1=Module["_emscripten_bind_Project_SetMinimumFPS_1"]=function(){return(_emscripten_bind_Project_SetMinimumFPS_1=Module["_emscripten_bind_Project_SetMinimumFPS_1"]=Module["asm"]["Fj"]).apply(null,arguments)};var _emscripten_bind_Project_SetFolderProject_1=Module["_emscripten_bind_Project_SetFolderProject_1"]=function(){return(_emscripten_bind_Project_SetFolderProject_1=Module["_emscripten_bind_Project_SetFolderProject_1"]=Module["asm"]["Gj"]).apply(null,arguments)};var _emscripten_bind_Project_IsFolderProject_0=Module["_emscripten_bind_Project_IsFolderProject_0"]=function(){return(_emscripten_bind_Project_IsFolderProject_0=Module["_emscripten_bind_Project_IsFolderProject_0"]=Module["asm"]["Hj"]).apply(null,arguments)};var _emscripten_bind_Project_SetUseDeprecatedZeroAsDefaultZOrder_1=Module["_emscripten_bind_Project_SetUseDeprecatedZeroAsDefaultZOrder_1"]=function(){return(_emscripten_bind_Project_SetUseDeprecatedZeroAsDefaultZOrder_1=Module["_emscripten_bind_Project_SetUseDeprecatedZeroAsDefaultZOrder_1"]=Module["asm"]["Ij"]).apply(null,arguments)};var _emscripten_bind_Project_GetUseDeprecatedZeroAsDefaultZOrder_0=Module["_emscripten_bind_Project_GetUseDeprecatedZeroAsDefaultZOrder_0"]=function(){return(_emscripten_bind_Project_GetUseDeprecatedZeroAsDefaultZOrder_0=Module["_emscripten_bind_Project_GetUseDeprecatedZeroAsDefaultZOrder_0"]=Module["asm"]["Jj"]).apply(null,arguments)};var _emscripten_bind_Project_SetUseDeprecatedZeroAsDefaultStringVariable_1=Module["_emscripten_bind_Project_SetUseDeprecatedZeroAsDefaultStringVariable_1"]=function(){return(_emscripten_bind_Project_SetUseDeprecatedZeroAsDefaultStringVariable_1=Module["_emscripten_bind_Project_SetUseDeprecatedZeroAsDefaultStringVariable_1"]=Module["asm"]["Kj"]).apply(null,arguments)};var _emscripten_bind_Project_GetUseDeprecatedZeroAsDefaultStringVariable_0=Module["_emscripten_bind_Project_GetUseDeprecatedZeroAsDefaultStringVariable_0"]=function(){return(_emscripten_bind_Project_GetUseDeprecatedZeroAsDefaultStringVariable_0=Module["_emscripten_bind_Project_GetUseDeprecatedZeroAsDefaultStringVariable_0"]=Module["asm"]["Lj"]).apply(null,arguments)};var _emscripten_bind_Project_AreEffectsHiddenInEditor_0=Module["_emscripten_bind_Project_AreEffectsHiddenInEditor_0"]=function(){return(_emscripten_bind_Project_AreEffectsHiddenInEditor_0=Module["_emscripten_bind_Project_AreEffectsHiddenInEditor_0"]=Module["asm"]["Mj"]).apply(null,arguments)};var _emscripten_bind_Project_SetEffectsHiddenInEditor_1=Module["_emscripten_bind_Project_SetEffectsHiddenInEditor_1"]=function(){return(_emscripten_bind_Project_SetEffectsHiddenInEditor_1=Module["_emscripten_bind_Project_SetEffectsHiddenInEditor_1"]=Module["asm"]["Nj"]).apply(null,arguments)};var _emscripten_bind_Project_SetLastCompilationDirectory_1=Module["_emscripten_bind_Project_SetLastCompilationDirectory_1"]=function(){return(_emscripten_bind_Project_SetLastCompilationDirectory_1=Module["_emscripten_bind_Project_SetLastCompilationDirectory_1"]=Module["asm"]["Oj"]).apply(null,arguments)};var _emscripten_bind_Project_GetLastCompilationDirectory_0=Module["_emscripten_bind_Project_GetLastCompilationDirectory_0"]=function(){return(_emscripten_bind_Project_GetLastCompilationDirectory_0=Module["_emscripten_bind_Project_GetLastCompilationDirectory_0"]=Module["asm"]["Pj"]).apply(null,arguments)};var _emscripten_bind_Project_GetExtensionProperties_0=Module["_emscripten_bind_Project_GetExtensionProperties_0"]=function(){return(_emscripten_bind_Project_GetExtensionProperties_0=Module["_emscripten_bind_Project_GetExtensionProperties_0"]=Module["asm"]["Qj"]).apply(null,arguments)};var _emscripten_bind_Project_AddPlatform_1=Module["_emscripten_bind_Project_AddPlatform_1"]=function(){return(_emscripten_bind_Project_AddPlatform_1=Module["_emscripten_bind_Project_AddPlatform_1"]=Module["asm"]["Rj"]).apply(null,arguments)};var _emscripten_bind_Project_GetCurrentPlatform_0=Module["_emscripten_bind_Project_GetCurrentPlatform_0"]=function(){return(_emscripten_bind_Project_GetCurrentPlatform_0=Module["_emscripten_bind_Project_GetCurrentPlatform_0"]=Module["asm"]["Sj"]).apply(null,arguments)};var _emscripten_bind_Project_GetPlatformSpecificAssets_0=Module["_emscripten_bind_Project_GetPlatformSpecificAssets_0"]=function(){return(_emscripten_bind_Project_GetPlatformSpecificAssets_0=Module["_emscripten_bind_Project_GetPlatformSpecificAssets_0"]=Module["asm"]["Tj"]).apply(null,arguments)};var _emscripten_bind_Project_GetLoadingScreen_0=Module["_emscripten_bind_Project_GetLoadingScreen_0"]=function(){return(_emscripten_bind_Project_GetLoadingScreen_0=Module["_emscripten_bind_Project_GetLoadingScreen_0"]=Module["asm"]["Uj"]).apply(null,arguments)};var _emscripten_bind_Project_GetWatermark_0=Module["_emscripten_bind_Project_GetWatermark_0"]=function(){return(_emscripten_bind_Project_GetWatermark_0=Module["_emscripten_bind_Project_GetWatermark_0"]=Module["asm"]["Vj"]).apply(null,arguments)};var _emscripten_bind_Project_HasLayoutNamed_1=Module["_emscripten_bind_Project_HasLayoutNamed_1"]=function(){return(_emscripten_bind_Project_HasLayoutNamed_1=Module["_emscripten_bind_Project_HasLayoutNamed_1"]=Module["asm"]["Wj"]).apply(null,arguments)};var _emscripten_bind_Project_GetLayout_1=Module["_emscripten_bind_Project_GetLayout_1"]=function(){return(_emscripten_bind_Project_GetLayout_1=Module["_emscripten_bind_Project_GetLayout_1"]=Module["asm"]["Xj"]).apply(null,arguments)};var _emscripten_bind_Project_GetLayoutAt_1=Module["_emscripten_bind_Project_GetLayoutAt_1"]=function(){return(_emscripten_bind_Project_GetLayoutAt_1=Module["_emscripten_bind_Project_GetLayoutAt_1"]=Module["asm"]["Yj"]).apply(null,arguments)};var _emscripten_bind_Project_MoveLayout_2=Module["_emscripten_bind_Project_MoveLayout_2"]=function(){return(_emscripten_bind_Project_MoveLayout_2=Module["_emscripten_bind_Project_MoveLayout_2"]=Module["asm"]["Zj"]).apply(null,arguments)};var _emscripten_bind_Project_SwapLayouts_2=Module["_emscripten_bind_Project_SwapLayouts_2"]=function(){return(_emscripten_bind_Project_SwapLayouts_2=Module["_emscripten_bind_Project_SwapLayouts_2"]=Module["asm"]["_j"]).apply(null,arguments)};var _emscripten_bind_Project_GetLayoutsCount_0=Module["_emscripten_bind_Project_GetLayoutsCount_0"]=function(){return(_emscripten_bind_Project_GetLayoutsCount_0=Module["_emscripten_bind_Project_GetLayoutsCount_0"]=Module["asm"]["$j"]).apply(null,arguments)};var _emscripten_bind_Project_InsertNewLayout_2=Module["_emscripten_bind_Project_InsertNewLayout_2"]=function(){return(_emscripten_bind_Project_InsertNewLayout_2=Module["_emscripten_bind_Project_InsertNewLayout_2"]=Module["asm"]["ak"]).apply(null,arguments)};var _emscripten_bind_Project_RemoveLayout_1=Module["_emscripten_bind_Project_RemoveLayout_1"]=function(){return(_emscripten_bind_Project_RemoveLayout_1=Module["_emscripten_bind_Project_RemoveLayout_1"]=Module["asm"]["bk"]).apply(null,arguments)};var _emscripten_bind_Project_SetFirstLayout_1=Module["_emscripten_bind_Project_SetFirstLayout_1"]=function(){return(_emscripten_bind_Project_SetFirstLayout_1=Module["_emscripten_bind_Project_SetFirstLayout_1"]=Module["asm"]["ck"]).apply(null,arguments)};var _emscripten_bind_Project_GetFirstLayout_0=Module["_emscripten_bind_Project_GetFirstLayout_0"]=function(){return(_emscripten_bind_Project_GetFirstLayout_0=Module["_emscripten_bind_Project_GetFirstLayout_0"]=Module["asm"]["dk"]).apply(null,arguments)};var _emscripten_bind_Project_GetLayoutPosition_1=Module["_emscripten_bind_Project_GetLayoutPosition_1"]=function(){return(_emscripten_bind_Project_GetLayoutPosition_1=Module["_emscripten_bind_Project_GetLayoutPosition_1"]=Module["asm"]["ek"]).apply(null,arguments)};var _emscripten_bind_Project_HasExternalEventsNamed_1=Module["_emscripten_bind_Project_HasExternalEventsNamed_1"]=function(){return(_emscripten_bind_Project_HasExternalEventsNamed_1=Module["_emscripten_bind_Project_HasExternalEventsNamed_1"]=Module["asm"]["fk"]).apply(null,arguments)};var _emscripten_bind_Project_GetExternalEvents_1=Module["_emscripten_bind_Project_GetExternalEvents_1"]=function(){return(_emscripten_bind_Project_GetExternalEvents_1=Module["_emscripten_bind_Project_GetExternalEvents_1"]=Module["asm"]["gk"]).apply(null,arguments)};var _emscripten_bind_Project_GetExternalEventsAt_1=Module["_emscripten_bind_Project_GetExternalEventsAt_1"]=function(){return(_emscripten_bind_Project_GetExternalEventsAt_1=Module["_emscripten_bind_Project_GetExternalEventsAt_1"]=Module["asm"]["hk"]).apply(null,arguments)};var _emscripten_bind_Project_MoveExternalEvents_2=Module["_emscripten_bind_Project_MoveExternalEvents_2"]=function(){return(_emscripten_bind_Project_MoveExternalEvents_2=Module["_emscripten_bind_Project_MoveExternalEvents_2"]=Module["asm"]["ik"]).apply(null,arguments)};var _emscripten_bind_Project_SwapExternalEvents_2=Module["_emscripten_bind_Project_SwapExternalEvents_2"]=function(){return(_emscripten_bind_Project_SwapExternalEvents_2=Module["_emscripten_bind_Project_SwapExternalEvents_2"]=Module["asm"]["jk"]).apply(null,arguments)};var _emscripten_bind_Project_GetExternalEventsCount_0=Module["_emscripten_bind_Project_GetExternalEventsCount_0"]=function(){return(_emscripten_bind_Project_GetExternalEventsCount_0=Module["_emscripten_bind_Project_GetExternalEventsCount_0"]=Module["asm"]["kk"]).apply(null,arguments)};var _emscripten_bind_Project_InsertNewExternalEvents_2=Module["_emscripten_bind_Project_InsertNewExternalEvents_2"]=function(){return(_emscripten_bind_Project_InsertNewExternalEvents_2=Module["_emscripten_bind_Project_InsertNewExternalEvents_2"]=Module["asm"]["lk"]).apply(null,arguments)};var _emscripten_bind_Project_RemoveExternalEvents_1=Module["_emscripten_bind_Project_RemoveExternalEvents_1"]=function(){return(_emscripten_bind_Project_RemoveExternalEvents_1=Module["_emscripten_bind_Project_RemoveExternalEvents_1"]=Module["asm"]["mk"]).apply(null,arguments)};var _emscripten_bind_Project_GetExternalEventsPosition_1=Module["_emscripten_bind_Project_GetExternalEventsPosition_1"]=function(){return(_emscripten_bind_Project_GetExternalEventsPosition_1=Module["_emscripten_bind_Project_GetExternalEventsPosition_1"]=Module["asm"]["nk"]).apply(null,arguments)};var _emscripten_bind_Project_HasExternalLayoutNamed_1=Module["_emscripten_bind_Project_HasExternalLayoutNamed_1"]=function(){return(_emscripten_bind_Project_HasExternalLayoutNamed_1=Module["_emscripten_bind_Project_HasExternalLayoutNamed_1"]=Module["asm"]["ok"]).apply(null,arguments)};var _emscripten_bind_Project_GetExternalLayout_1=Module["_emscripten_bind_Project_GetExternalLayout_1"]=function(){return(_emscripten_bind_Project_GetExternalLayout_1=Module["_emscripten_bind_Project_GetExternalLayout_1"]=Module["asm"]["pk"]).apply(null,arguments)};var _emscripten_bind_Project_GetExternalLayoutAt_1=Module["_emscripten_bind_Project_GetExternalLayoutAt_1"]=function(){return(_emscripten_bind_Project_GetExternalLayoutAt_1=Module["_emscripten_bind_Project_GetExternalLayoutAt_1"]=Module["asm"]["qk"]).apply(null,arguments)};var _emscripten_bind_Project_MoveExternalLayout_2=Module["_emscripten_bind_Project_MoveExternalLayout_2"]=function(){return(_emscripten_bind_Project_MoveExternalLayout_2=Module["_emscripten_bind_Project_MoveExternalLayout_2"]=Module["asm"]["rk"]).apply(null,arguments)};var _emscripten_bind_Project_SwapExternalLayouts_2=Module["_emscripten_bind_Project_SwapExternalLayouts_2"]=function(){return(_emscripten_bind_Project_SwapExternalLayouts_2=Module["_emscripten_bind_Project_SwapExternalLayouts_2"]=Module["asm"]["sk"]).apply(null,arguments)};var _emscripten_bind_Project_GetExternalLayoutsCount_0=Module["_emscripten_bind_Project_GetExternalLayoutsCount_0"]=function(){return(_emscripten_bind_Project_GetExternalLayoutsCount_0=Module["_emscripten_bind_Project_GetExternalLayoutsCount_0"]=Module["asm"]["tk"]).apply(null,arguments)};var _emscripten_bind_Project_InsertNewExternalLayout_2=Module["_emscripten_bind_Project_InsertNewExternalLayout_2"]=function(){return(_emscripten_bind_Project_InsertNewExternalLayout_2=Module["_emscripten_bind_Project_InsertNewExternalLayout_2"]=Module["asm"]["uk"]).apply(null,arguments)};var _emscripten_bind_Project_RemoveExternalLayout_1=Module["_emscripten_bind_Project_RemoveExternalLayout_1"]=function(){return(_emscripten_bind_Project_RemoveExternalLayout_1=Module["_emscripten_bind_Project_RemoveExternalLayout_1"]=Module["asm"]["vk"]).apply(null,arguments)};var _emscripten_bind_Project_GetExternalLayoutPosition_1=Module["_emscripten_bind_Project_GetExternalLayoutPosition_1"]=function(){return(_emscripten_bind_Project_GetExternalLayoutPosition_1=Module["_emscripten_bind_Project_GetExternalLayoutPosition_1"]=Module["asm"]["wk"]).apply(null,arguments)};var _emscripten_bind_Project_HasEventsFunctionsExtensionNamed_1=Module["_emscripten_bind_Project_HasEventsFunctionsExtensionNamed_1"]=function(){return(_emscripten_bind_Project_HasEventsFunctionsExtensionNamed_1=Module["_emscripten_bind_Project_HasEventsFunctionsExtensionNamed_1"]=Module["asm"]["xk"]).apply(null,arguments)};var _emscripten_bind_Project_GetEventsFunctionsExtension_1=Module["_emscripten_bind_Project_GetEventsFunctionsExtension_1"]=function(){return(_emscripten_bind_Project_GetEventsFunctionsExtension_1=Module["_emscripten_bind_Project_GetEventsFunctionsExtension_1"]=Module["asm"]["yk"]).apply(null,arguments)};var _emscripten_bind_Project_GetEventsFunctionsExtensionAt_1=Module["_emscripten_bind_Project_GetEventsFunctionsExtensionAt_1"]=function(){return(_emscripten_bind_Project_GetEventsFunctionsExtensionAt_1=Module["_emscripten_bind_Project_GetEventsFunctionsExtensionAt_1"]=Module["asm"]["zk"]).apply(null,arguments)};var _emscripten_bind_Project_MoveEventsFunctionsExtension_2=Module["_emscripten_bind_Project_MoveEventsFunctionsExtension_2"]=function(){return(_emscripten_bind_Project_MoveEventsFunctionsExtension_2=Module["_emscripten_bind_Project_MoveEventsFunctionsExtension_2"]=Module["asm"]["Ak"]).apply(null,arguments)};var _emscripten_bind_Project_SwapEventsFunctionsExtensions_2=Module["_emscripten_bind_Project_SwapEventsFunctionsExtensions_2"]=function(){return(_emscripten_bind_Project_SwapEventsFunctionsExtensions_2=Module["_emscripten_bind_Project_SwapEventsFunctionsExtensions_2"]=Module["asm"]["Bk"]).apply(null,arguments)};var _emscripten_bind_Project_GetEventsFunctionsExtensionsCount_0=Module["_emscripten_bind_Project_GetEventsFunctionsExtensionsCount_0"]=function(){return(_emscripten_bind_Project_GetEventsFunctionsExtensionsCount_0=Module["_emscripten_bind_Project_GetEventsFunctionsExtensionsCount_0"]=Module["asm"]["Ck"]).apply(null,arguments)};var _emscripten_bind_Project_InsertNewEventsFunctionsExtension_2=Module["_emscripten_bind_Project_InsertNewEventsFunctionsExtension_2"]=function(){return(_emscripten_bind_Project_InsertNewEventsFunctionsExtension_2=Module["_emscripten_bind_Project_InsertNewEventsFunctionsExtension_2"]=Module["asm"]["Dk"]).apply(null,arguments)};var _emscripten_bind_Project_InsertEventsFunctionsExtension_2=Module["_emscripten_bind_Project_InsertEventsFunctionsExtension_2"]=function(){return(_emscripten_bind_Project_InsertEventsFunctionsExtension_2=Module["_emscripten_bind_Project_InsertEventsFunctionsExtension_2"]=Module["asm"]["Ek"]).apply(null,arguments)};var _emscripten_bind_Project_RemoveEventsFunctionsExtension_1=Module["_emscripten_bind_Project_RemoveEventsFunctionsExtension_1"]=function(){return(_emscripten_bind_Project_RemoveEventsFunctionsExtension_1=Module["_emscripten_bind_Project_RemoveEventsFunctionsExtension_1"]=Module["asm"]["Fk"]).apply(null,arguments)};var _emscripten_bind_Project_GetEventsFunctionsExtensionPosition_1=Module["_emscripten_bind_Project_GetEventsFunctionsExtensionPosition_1"]=function(){return(_emscripten_bind_Project_GetEventsFunctionsExtensionPosition_1=Module["_emscripten_bind_Project_GetEventsFunctionsExtensionPosition_1"]=Module["asm"]["Gk"]).apply(null,arguments)};var _emscripten_bind_Project_UnserializeAndInsertExtensionsFrom_1=Module["_emscripten_bind_Project_UnserializeAndInsertExtensionsFrom_1"]=function(){return(_emscripten_bind_Project_UnserializeAndInsertExtensionsFrom_1=Module["_emscripten_bind_Project_UnserializeAndInsertExtensionsFrom_1"]=Module["asm"]["Hk"]).apply(null,arguments)};var _emscripten_bind_Project_HasEventsBasedBehavior_1=Module["_emscripten_bind_Project_HasEventsBasedBehavior_1"]=function(){return(_emscripten_bind_Project_HasEventsBasedBehavior_1=Module["_emscripten_bind_Project_HasEventsBasedBehavior_1"]=Module["asm"]["Ik"]).apply(null,arguments)};var _emscripten_bind_Project_GetEventsBasedBehavior_1=Module["_emscripten_bind_Project_GetEventsBasedBehavior_1"]=function(){return(_emscripten_bind_Project_GetEventsBasedBehavior_1=Module["_emscripten_bind_Project_GetEventsBasedBehavior_1"]=Module["asm"]["Jk"]).apply(null,arguments)};var _emscripten_bind_Project_HasEventsBasedObject_1=Module["_emscripten_bind_Project_HasEventsBasedObject_1"]=function(){return(_emscripten_bind_Project_HasEventsBasedObject_1=Module["_emscripten_bind_Project_HasEventsBasedObject_1"]=Module["asm"]["Kk"]).apply(null,arguments)};var _emscripten_bind_Project_GetEventsBasedObject_1=Module["_emscripten_bind_Project_GetEventsBasedObject_1"]=function(){return(_emscripten_bind_Project_GetEventsBasedObject_1=Module["_emscripten_bind_Project_GetEventsBasedObject_1"]=Module["asm"]["Lk"]).apply(null,arguments)};var _emscripten_bind_Project_GetVariables_0=Module["_emscripten_bind_Project_GetVariables_0"]=function(){return(_emscripten_bind_Project_GetVariables_0=Module["_emscripten_bind_Project_GetVariables_0"]=Module["asm"]["Mk"]).apply(null,arguments)};var _emscripten_bind_Project_GetObjects_0=Module["_emscripten_bind_Project_GetObjects_0"]=function(){return(_emscripten_bind_Project_GetObjects_0=Module["_emscripten_bind_Project_GetObjects_0"]=Module["asm"]["Nk"]).apply(null,arguments)};var _emscripten_bind_Project_GetResourcesManager_0=Module["_emscripten_bind_Project_GetResourcesManager_0"]=function(){return(_emscripten_bind_Project_GetResourcesManager_0=Module["_emscripten_bind_Project_GetResourcesManager_0"]=Module["asm"]["Ok"]).apply(null,arguments)};var _emscripten_bind_Project_SetSceneResourcesPreloading_1=Module["_emscripten_bind_Project_SetSceneResourcesPreloading_1"]=function(){return(_emscripten_bind_Project_SetSceneResourcesPreloading_1=Module["_emscripten_bind_Project_SetSceneResourcesPreloading_1"]=Module["asm"]["Pk"]).apply(null,arguments)};var _emscripten_bind_Project_GetSceneResourcesPreloading_0=Module["_emscripten_bind_Project_GetSceneResourcesPreloading_0"]=function(){return(_emscripten_bind_Project_GetSceneResourcesPreloading_0=Module["_emscripten_bind_Project_GetSceneResourcesPreloading_0"]=Module["asm"]["Qk"]).apply(null,arguments)};var _emscripten_bind_Project_SetSceneResourcesUnloading_1=Module["_emscripten_bind_Project_SetSceneResourcesUnloading_1"]=function(){return(_emscripten_bind_Project_SetSceneResourcesUnloading_1=Module["_emscripten_bind_Project_SetSceneResourcesUnloading_1"]=Module["asm"]["Rk"]).apply(null,arguments)};var _emscripten_bind_Project_GetSceneResourcesUnloading_0=Module["_emscripten_bind_Project_GetSceneResourcesUnloading_0"]=function(){return(_emscripten_bind_Project_GetSceneResourcesUnloading_0=Module["_emscripten_bind_Project_GetSceneResourcesUnloading_0"]=Module["asm"]["Sk"]).apply(null,arguments)};var _emscripten_bind_Project_SerializeTo_1=Module["_emscripten_bind_Project_SerializeTo_1"]=function(){return(_emscripten_bind_Project_SerializeTo_1=Module["_emscripten_bind_Project_SerializeTo_1"]=Module["asm"]["Tk"]).apply(null,arguments)};var _emscripten_bind_Project_UnserializeFrom_1=Module["_emscripten_bind_Project_UnserializeFrom_1"]=function(){return(_emscripten_bind_Project_UnserializeFrom_1=Module["_emscripten_bind_Project_UnserializeFrom_1"]=Module["asm"]["Uk"]).apply(null,arguments)};var _emscripten_bind_Project_GetWholeProjectDiagnosticReport_0=Module["_emscripten_bind_Project_GetWholeProjectDiagnosticReport_0"]=function(){return(_emscripten_bind_Project_GetWholeProjectDiagnosticReport_0=Module["_emscripten_bind_Project_GetWholeProjectDiagnosticReport_0"]=Module["asm"]["Vk"]).apply(null,arguments)};var _emscripten_bind_Project_STATIC_IsNameSafe_1=Module["_emscripten_bind_Project_STATIC_IsNameSafe_1"]=function(){return(_emscripten_bind_Project_STATIC_IsNameSafe_1=Module["_emscripten_bind_Project_STATIC_IsNameSafe_1"]=Module["asm"]["Wk"]).apply(null,arguments)};var _emscripten_bind_Project_STATIC_GetSafeName_1=Module["_emscripten_bind_Project_STATIC_GetSafeName_1"]=function(){return(_emscripten_bind_Project_STATIC_GetSafeName_1=Module["_emscripten_bind_Project_STATIC_GetSafeName_1"]=Module["asm"]["Xk"]).apply(null,arguments)};var _emscripten_bind_Project___destroy___0=Module["_emscripten_bind_Project___destroy___0"]=function(){return(_emscripten_bind_Project___destroy___0=Module["_emscripten_bind_Project___destroy___0"]=Module["asm"]["Yk"]).apply(null,arguments)};var _emscripten_bind_ObjectsContainersList_STATIC_MakeNewObjectsContainersListForProjectAndLayout_2=Module["_emscripten_bind_ObjectsContainersList_STATIC_MakeNewObjectsContainersListForProjectAndLayout_2"]=function(){return(_emscripten_bind_ObjectsContainersList_STATIC_MakeNewObjectsContainersListForProjectAndLayout_2=Module["_emscripten_bind_ObjectsContainersList_STATIC_MakeNewObjectsContainersListForProjectAndLayout_2"]=Module["asm"]["Zk"]).apply(null,arguments)};var _emscripten_bind_ObjectsContainersList_STATIC_MakeNewObjectsContainersListForContainers_2=Module["_emscripten_bind_ObjectsContainersList_STATIC_MakeNewObjectsContainersListForContainers_2"]=function(){return(_emscripten_bind_ObjectsContainersList_STATIC_MakeNewObjectsContainersListForContainers_2=Module["_emscripten_bind_ObjectsContainersList_STATIC_MakeNewObjectsContainersListForContainers_2"]=Module["asm"]["_k"]).apply(null,arguments)};var _emscripten_bind_ObjectsContainersList_GetTypeOfObject_1=Module["_emscripten_bind_ObjectsContainersList_GetTypeOfObject_1"]=function(){return(_emscripten_bind_ObjectsContainersList_GetTypeOfObject_1=Module["_emscripten_bind_ObjectsContainersList_GetTypeOfObject_1"]=Module["asm"]["$k"]).apply(null,arguments)};var _emscripten_bind_ObjectsContainersList_GetTypeOfBehavior_2=Module["_emscripten_bind_ObjectsContainersList_GetTypeOfBehavior_2"]=function(){return(_emscripten_bind_ObjectsContainersList_GetTypeOfBehavior_2=Module["_emscripten_bind_ObjectsContainersList_GetTypeOfBehavior_2"]=Module["asm"]["al"]).apply(null,arguments)};var _emscripten_bind_ObjectsContainersList_GetBehaviorsOfObject_2=Module["_emscripten_bind_ObjectsContainersList_GetBehaviorsOfObject_2"]=function(){return(_emscripten_bind_ObjectsContainersList_GetBehaviorsOfObject_2=Module["_emscripten_bind_ObjectsContainersList_GetBehaviorsOfObject_2"]=Module["asm"]["bl"]).apply(null,arguments)};var _emscripten_bind_ObjectsContainersList_GetBehaviorNamesInObjectOrGroup_3=Module["_emscripten_bind_ObjectsContainersList_GetBehaviorNamesInObjectOrGroup_3"]=function(){return(_emscripten_bind_ObjectsContainersList_GetBehaviorNamesInObjectOrGroup_3=Module["_emscripten_bind_ObjectsContainersList_GetBehaviorNamesInObjectOrGroup_3"]=Module["asm"]["cl"]).apply(null,arguments)};var _emscripten_bind_ObjectsContainersList_IsDefaultBehavior_3=Module["_emscripten_bind_ObjectsContainersList_IsDefaultBehavior_3"]=function(){return(_emscripten_bind_ObjectsContainersList_IsDefaultBehavior_3=Module["_emscripten_bind_ObjectsContainersList_IsDefaultBehavior_3"]=Module["asm"]["dl"]).apply(null,arguments)};var _emscripten_bind_ObjectsContainersList_GetAnimationNamesOfObject_1=Module["_emscripten_bind_ObjectsContainersList_GetAnimationNamesOfObject_1"]=function(){return(_emscripten_bind_ObjectsContainersList_GetAnimationNamesOfObject_1=Module["_emscripten_bind_ObjectsContainersList_GetAnimationNamesOfObject_1"]=Module["asm"]["el"]).apply(null,arguments)};var _emscripten_bind_ObjectsContainersList_GetTypeOfBehaviorInObjectOrGroup_3=Module["_emscripten_bind_ObjectsContainersList_GetTypeOfBehaviorInObjectOrGroup_3"]=function(){return(_emscripten_bind_ObjectsContainersList_GetTypeOfBehaviorInObjectOrGroup_3=Module["_emscripten_bind_ObjectsContainersList_GetTypeOfBehaviorInObjectOrGroup_3"]=Module["asm"]["fl"]).apply(null,arguments)};var _emscripten_bind_ObjectsContainersList_HasObjectOrGroupNamed_1=Module["_emscripten_bind_ObjectsContainersList_HasObjectOrGroupNamed_1"]=function(){return(_emscripten_bind_ObjectsContainersList_HasObjectOrGroupNamed_1=Module["_emscripten_bind_ObjectsContainersList_HasObjectOrGroupNamed_1"]=Module["asm"]["gl"]).apply(null,arguments)};var _emscripten_bind_ObjectsContainersList_HasObjectNamed_1=Module["_emscripten_bind_ObjectsContainersList_HasObjectNamed_1"]=function(){return(_emscripten_bind_ObjectsContainersList_HasObjectNamed_1=Module["_emscripten_bind_ObjectsContainersList_HasObjectNamed_1"]=Module["asm"]["hl"]).apply(null,arguments)};var _emscripten_bind_ObjectsContainersList_HasObjectOrGroupWithVariableNamed_2=Module["_emscripten_bind_ObjectsContainersList_HasObjectOrGroupWithVariableNamed_2"]=function(){return(_emscripten_bind_ObjectsContainersList_HasObjectOrGroupWithVariableNamed_2=Module["_emscripten_bind_ObjectsContainersList_HasObjectOrGroupWithVariableNamed_2"]=Module["asm"]["il"]).apply(null,arguments)};var _emscripten_bind_ObjectsContainersList_GetObjectsContainerSourceType_1=Module["_emscripten_bind_ObjectsContainersList_GetObjectsContainerSourceType_1"]=function(){return(_emscripten_bind_ObjectsContainersList_GetObjectsContainerSourceType_1=Module["_emscripten_bind_ObjectsContainersList_GetObjectsContainerSourceType_1"]=Module["asm"]["jl"]).apply(null,arguments)};var _emscripten_bind_ObjectsContainersList_GetObjectsContainer_1=Module["_emscripten_bind_ObjectsContainersList_GetObjectsContainer_1"]=function(){return(_emscripten_bind_ObjectsContainersList_GetObjectsContainer_1=Module["_emscripten_bind_ObjectsContainersList_GetObjectsContainer_1"]=Module["asm"]["kl"]).apply(null,arguments)};var _emscripten_bind_ObjectsContainersList_GetObjectsContainersCount_0=Module["_emscripten_bind_ObjectsContainersList_GetObjectsContainersCount_0"]=function(){return(_emscripten_bind_ObjectsContainersList_GetObjectsContainersCount_0=Module["_emscripten_bind_ObjectsContainersList_GetObjectsContainersCount_0"]=Module["asm"]["ll"]).apply(null,arguments)};var _emscripten_bind_ObjectsContainersList___destroy___0=Module["_emscripten_bind_ObjectsContainersList___destroy___0"]=function(){return(_emscripten_bind_ObjectsContainersList___destroy___0=Module["_emscripten_bind_ObjectsContainersList___destroy___0"]=Module["asm"]["ml"]).apply(null,arguments)};var _emscripten_bind_ProjectScopedContainers_STATIC_MakeNewProjectScopedContainersForProjectAndLayout_2=Module["_emscripten_bind_ProjectScopedContainers_STATIC_MakeNewProjectScopedContainersForProjectAndLayout_2"]=function(){return(_emscripten_bind_ProjectScopedContainers_STATIC_MakeNewProjectScopedContainersForProjectAndLayout_2=Module["_emscripten_bind_ProjectScopedContainers_STATIC_MakeNewProjectScopedContainersForProjectAndLayout_2"]=Module["asm"]["nl"]).apply(null,arguments)};var _emscripten_bind_ProjectScopedContainers_STATIC_MakeNewProjectScopedContainersForProject_1=Module["_emscripten_bind_ProjectScopedContainers_STATIC_MakeNewProjectScopedContainersForProject_1"]=function(){return(_emscripten_bind_ProjectScopedContainers_STATIC_MakeNewProjectScopedContainersForProject_1=Module["_emscripten_bind_ProjectScopedContainers_STATIC_MakeNewProjectScopedContainersForProject_1"]=Module["asm"]["ol"]).apply(null,arguments)};var _emscripten_bind_ProjectScopedContainers_STATIC_MakeNewProjectScopedContainersForEventsFunctionsExtension_2=Module["_emscripten_bind_ProjectScopedContainers_STATIC_MakeNewProjectScopedContainersForEventsFunctionsExtension_2"]=function(){return(_emscripten_bind_ProjectScopedContainers_STATIC_MakeNewProjectScopedContainersForEventsFunctionsExtension_2=Module["_emscripten_bind_ProjectScopedContainers_STATIC_MakeNewProjectScopedContainersForEventsFunctionsExtension_2"]=Module["asm"]["pl"]).apply(null,arguments)};var _emscripten_bind_ProjectScopedContainers_STATIC_MakeNewProjectScopedContainersForFreeEventsFunction_6=Module["_emscripten_bind_ProjectScopedContainers_STATIC_MakeNewProjectScopedContainersForFreeEventsFunction_6"]=function(){return(_emscripten_bind_ProjectScopedContainers_STATIC_MakeNewProjectScopedContainersForFreeEventsFunction_6=Module["_emscripten_bind_ProjectScopedContainers_STATIC_MakeNewProjectScopedContainersForFreeEventsFunction_6"]=Module["asm"]["ql"]).apply(null,arguments)};var _emscripten_bind_ProjectScopedContainers_STATIC_MakeNewProjectScopedContainersForBehaviorEventsFunction_9=Module["_emscripten_bind_ProjectScopedContainers_STATIC_MakeNewProjectScopedContainersForBehaviorEventsFunction_9"]=function(){return(_emscripten_bind_ProjectScopedContainers_STATIC_MakeNewProjectScopedContainersForBehaviorEventsFunction_9=Module["_emscripten_bind_ProjectScopedContainers_STATIC_MakeNewProjectScopedContainersForBehaviorEventsFunction_9"]=Module["asm"]["rl"]).apply(null,arguments)};var _emscripten_bind_ProjectScopedContainers_STATIC_MakeNewProjectScopedContainersForObjectEventsFunction_9=Module["_emscripten_bind_ProjectScopedContainers_STATIC_MakeNewProjectScopedContainersForObjectEventsFunction_9"]=function(){return(_emscripten_bind_ProjectScopedContainers_STATIC_MakeNewProjectScopedContainersForObjectEventsFunction_9=Module["_emscripten_bind_ProjectScopedContainers_STATIC_MakeNewProjectScopedContainersForObjectEventsFunction_9"]=Module["asm"]["sl"]).apply(null,arguments)};var _emscripten_bind_ProjectScopedContainers_STATIC_MakeNewProjectScopedContainersForEventsBasedObject_4=Module["_emscripten_bind_ProjectScopedContainers_STATIC_MakeNewProjectScopedContainersForEventsBasedObject_4"]=function(){return(_emscripten_bind_ProjectScopedContainers_STATIC_MakeNewProjectScopedContainersForEventsBasedObject_4=Module["_emscripten_bind_ProjectScopedContainers_STATIC_MakeNewProjectScopedContainersForEventsBasedObject_4"]=Module["asm"]["tl"]).apply(null,arguments)};var _emscripten_bind_ProjectScopedContainers_STATIC_MakeNewProjectScopedContainersWithLocalVariables_2=Module["_emscripten_bind_ProjectScopedContainers_STATIC_MakeNewProjectScopedContainersWithLocalVariables_2"]=function(){return(_emscripten_bind_ProjectScopedContainers_STATIC_MakeNewProjectScopedContainersWithLocalVariables_2=Module["_emscripten_bind_ProjectScopedContainers_STATIC_MakeNewProjectScopedContainersWithLocalVariables_2"]=Module["asm"]["ul"]).apply(null,arguments)};var _emscripten_bind_ProjectScopedContainers_AddPropertiesContainer_1=Module["_emscripten_bind_ProjectScopedContainers_AddPropertiesContainer_1"]=function(){return(_emscripten_bind_ProjectScopedContainers_AddPropertiesContainer_1=Module["_emscripten_bind_ProjectScopedContainers_AddPropertiesContainer_1"]=Module["asm"]["vl"]).apply(null,arguments)};var _emscripten_bind_ProjectScopedContainers_AddParameters_1=Module["_emscripten_bind_ProjectScopedContainers_AddParameters_1"]=function(){return(_emscripten_bind_ProjectScopedContainers_AddParameters_1=Module["_emscripten_bind_ProjectScopedContainers_AddParameters_1"]=Module["asm"]["wl"]).apply(null,arguments)};var _emscripten_bind_ProjectScopedContainers_GetObjectsContainersList_0=Module["_emscripten_bind_ProjectScopedContainers_GetObjectsContainersList_0"]=function(){return(_emscripten_bind_ProjectScopedContainers_GetObjectsContainersList_0=Module["_emscripten_bind_ProjectScopedContainers_GetObjectsContainersList_0"]=Module["asm"]["xl"]).apply(null,arguments)};var _emscripten_bind_ProjectScopedContainers_GetVariablesContainersList_0=Module["_emscripten_bind_ProjectScopedContainers_GetVariablesContainersList_0"]=function(){return(_emscripten_bind_ProjectScopedContainers_GetVariablesContainersList_0=Module["_emscripten_bind_ProjectScopedContainers_GetVariablesContainersList_0"]=Module["asm"]["yl"]).apply(null,arguments)};var _emscripten_bind_ProjectScopedContainers_GetResourcesContainersList_0=Module["_emscripten_bind_ProjectScopedContainers_GetResourcesContainersList_0"]=function(){return(_emscripten_bind_ProjectScopedContainers_GetResourcesContainersList_0=Module["_emscripten_bind_ProjectScopedContainers_GetResourcesContainersList_0"]=Module["asm"]["zl"]).apply(null,arguments)};var _emscripten_bind_ProjectScopedContainers_GetScopeSceneName_0=Module["_emscripten_bind_ProjectScopedContainers_GetScopeSceneName_0"]=function(){return(_emscripten_bind_ProjectScopedContainers_GetScopeSceneName_0=Module["_emscripten_bind_ProjectScopedContainers_GetScopeSceneName_0"]=Module["asm"]["Al"]).apply(null,arguments)};var _emscripten_bind_ProjectScopedContainers_GetScopeExternalEventsName_0=Module["_emscripten_bind_ProjectScopedContainers_GetScopeExternalEventsName_0"]=function(){return(_emscripten_bind_ProjectScopedContainers_GetScopeExternalEventsName_0=Module["_emscripten_bind_ProjectScopedContainers_GetScopeExternalEventsName_0"]=Module["asm"]["Bl"]).apply(null,arguments)};var _emscripten_bind_ProjectScopedContainers_GetScopeExtensionName_0=Module["_emscripten_bind_ProjectScopedContainers_GetScopeExtensionName_0"]=function(){return(_emscripten_bind_ProjectScopedContainers_GetScopeExtensionName_0=Module["_emscripten_bind_ProjectScopedContainers_GetScopeExtensionName_0"]=Module["asm"]["Cl"]).apply(null,arguments)};var _emscripten_bind_ProjectScopedContainers_GetScopeFunctionName_0=Module["_emscripten_bind_ProjectScopedContainers_GetScopeFunctionName_0"]=function(){return(_emscripten_bind_ProjectScopedContainers_GetScopeFunctionName_0=Module["_emscripten_bind_ProjectScopedContainers_GetScopeFunctionName_0"]=Module["asm"]["Dl"]).apply(null,arguments)};var _emscripten_bind_ProjectScopedContainers_GetScopeBehaviorName_0=Module["_emscripten_bind_ProjectScopedContainers_GetScopeBehaviorName_0"]=function(){return(_emscripten_bind_ProjectScopedContainers_GetScopeBehaviorName_0=Module["_emscripten_bind_ProjectScopedContainers_GetScopeBehaviorName_0"]=Module["asm"]["El"]).apply(null,arguments)};var _emscripten_bind_ProjectScopedContainers_GetScopeObjectName_0=Module["_emscripten_bind_ProjectScopedContainers_GetScopeObjectName_0"]=function(){return(_emscripten_bind_ProjectScopedContainers_GetScopeObjectName_0=Module["_emscripten_bind_ProjectScopedContainers_GetScopeObjectName_0"]=Module["asm"]["Fl"]).apply(null,arguments)};var _emscripten_bind_ProjectScopedContainers___destroy___0=Module["_emscripten_bind_ProjectScopedContainers___destroy___0"]=function(){return(_emscripten_bind_ProjectScopedContainers___destroy___0=Module["_emscripten_bind_ProjectScopedContainers___destroy___0"]=Module["asm"]["Gl"]).apply(null,arguments)};var _emscripten_bind_ExtensionProperties_GetValue_2=Module["_emscripten_bind_ExtensionProperties_GetValue_2"]=function(){return(_emscripten_bind_ExtensionProperties_GetValue_2=Module["_emscripten_bind_ExtensionProperties_GetValue_2"]=Module["asm"]["Hl"]).apply(null,arguments)};var _emscripten_bind_ExtensionProperties_SetValue_3=Module["_emscripten_bind_ExtensionProperties_SetValue_3"]=function(){return(_emscripten_bind_ExtensionProperties_SetValue_3=Module["_emscripten_bind_ExtensionProperties_SetValue_3"]=Module["asm"]["Il"]).apply(null,arguments)};var _emscripten_bind_ExtensionProperties_HasProperty_2=Module["_emscripten_bind_ExtensionProperties_HasProperty_2"]=function(){return(_emscripten_bind_ExtensionProperties_HasProperty_2=Module["_emscripten_bind_ExtensionProperties_HasProperty_2"]=Module["asm"]["Jl"]).apply(null,arguments)};var _emscripten_bind_ExtensionProperties_GetAllExtensionProperties_2=Module["_emscripten_bind_ExtensionProperties_GetAllExtensionProperties_2"]=function(){return(_emscripten_bind_ExtensionProperties_GetAllExtensionProperties_2=Module["_emscripten_bind_ExtensionProperties_GetAllExtensionProperties_2"]=Module["asm"]["Kl"]).apply(null,arguments)};var _emscripten_bind_ExtensionProperties_SerializeTo_1=Module["_emscripten_bind_ExtensionProperties_SerializeTo_1"]=function(){return(_emscripten_bind_ExtensionProperties_SerializeTo_1=Module["_emscripten_bind_ExtensionProperties_SerializeTo_1"]=Module["asm"]["Ll"]).apply(null,arguments)};var _emscripten_bind_ExtensionProperties_UnserializeFrom_1=Module["_emscripten_bind_ExtensionProperties_UnserializeFrom_1"]=function(){return(_emscripten_bind_ExtensionProperties_UnserializeFrom_1=Module["_emscripten_bind_ExtensionProperties_UnserializeFrom_1"]=Module["asm"]["Ml"]).apply(null,arguments)};var _emscripten_bind_ExtensionProperties___destroy___0=Module["_emscripten_bind_ExtensionProperties___destroy___0"]=function(){return(_emscripten_bind_ExtensionProperties___destroy___0=Module["_emscripten_bind_ExtensionProperties___destroy___0"]=Module["asm"]["Nl"]).apply(null,arguments)};var _emscripten_bind_BehaviorDefaultFlagClearer_STATIC_SerializeObjectWithCleanDefaultBehaviorFlags_2=Module["_emscripten_bind_BehaviorDefaultFlagClearer_STATIC_SerializeObjectWithCleanDefaultBehaviorFlags_2"]=function(){return(_emscripten_bind_BehaviorDefaultFlagClearer_STATIC_SerializeObjectWithCleanDefaultBehaviorFlags_2=Module["_emscripten_bind_BehaviorDefaultFlagClearer_STATIC_SerializeObjectWithCleanDefaultBehaviorFlags_2"]=Module["asm"]["Ol"]).apply(null,arguments)};var _emscripten_bind_BehaviorDefaultFlagClearer___destroy___0=Module["_emscripten_bind_BehaviorDefaultFlagClearer___destroy___0"]=function(){return(_emscripten_bind_BehaviorDefaultFlagClearer___destroy___0=Module["_emscripten_bind_BehaviorDefaultFlagClearer___destroy___0"]=Module["asm"]["Pl"]).apply(null,arguments)};var _emscripten_bind_BehaviorJsImplementation_BehaviorJsImplementation_0=Module["_emscripten_bind_BehaviorJsImplementation_BehaviorJsImplementation_0"]=function(){return(_emscripten_bind_BehaviorJsImplementation_BehaviorJsImplementation_0=Module["_emscripten_bind_BehaviorJsImplementation_BehaviorJsImplementation_0"]=Module["asm"]["Ql"]).apply(null,arguments)};var _emscripten_bind_BehaviorJsImplementation_GetProperties_1=Module["_emscripten_bind_BehaviorJsImplementation_GetProperties_1"]=function(){return(_emscripten_bind_BehaviorJsImplementation_GetProperties_1=Module["_emscripten_bind_BehaviorJsImplementation_GetProperties_1"]=Module["asm"]["Rl"]).apply(null,arguments)};var _emscripten_bind_BehaviorJsImplementation_UpdateProperty_3=Module["_emscripten_bind_BehaviorJsImplementation_UpdateProperty_3"]=function(){return(_emscripten_bind_BehaviorJsImplementation_UpdateProperty_3=Module["_emscripten_bind_BehaviorJsImplementation_UpdateProperty_3"]=Module["asm"]["Sl"]).apply(null,arguments)};var _emscripten_bind_BehaviorJsImplementation_InitializeContent_1=Module["_emscripten_bind_BehaviorJsImplementation_InitializeContent_1"]=function(){return(_emscripten_bind_BehaviorJsImplementation_InitializeContent_1=Module["_emscripten_bind_BehaviorJsImplementation_InitializeContent_1"]=Module["asm"]["Tl"]).apply(null,arguments)};var _emscripten_bind_BehaviorJsImplementation___destroy___0=Module["_emscripten_bind_BehaviorJsImplementation___destroy___0"]=function(){return(_emscripten_bind_BehaviorJsImplementation___destroy___0=Module["_emscripten_bind_BehaviorJsImplementation___destroy___0"]=Module["asm"]["Ul"]).apply(null,arguments)};var _emscripten_bind_BehaviorSharedDataJsImplementation_BehaviorSharedDataJsImplementation_0=Module["_emscripten_bind_BehaviorSharedDataJsImplementation_BehaviorSharedDataJsImplementation_0"]=function(){return(_emscripten_bind_BehaviorSharedDataJsImplementation_BehaviorSharedDataJsImplementation_0=Module["_emscripten_bind_BehaviorSharedDataJsImplementation_BehaviorSharedDataJsImplementation_0"]=Module["asm"]["Vl"]).apply(null,arguments)};var _emscripten_bind_BehaviorSharedDataJsImplementation_GetProperties_1=Module["_emscripten_bind_BehaviorSharedDataJsImplementation_GetProperties_1"]=function(){return(_emscripten_bind_BehaviorSharedDataJsImplementation_GetProperties_1=Module["_emscripten_bind_BehaviorSharedDataJsImplementation_GetProperties_1"]=Module["asm"]["Wl"]).apply(null,arguments)};var _emscripten_bind_BehaviorSharedDataJsImplementation_UpdateProperty_3=Module["_emscripten_bind_BehaviorSharedDataJsImplementation_UpdateProperty_3"]=function(){return(_emscripten_bind_BehaviorSharedDataJsImplementation_UpdateProperty_3=Module["_emscripten_bind_BehaviorSharedDataJsImplementation_UpdateProperty_3"]=Module["asm"]["Xl"]).apply(null,arguments)};var _emscripten_bind_BehaviorSharedDataJsImplementation_InitializeContent_1=Module["_emscripten_bind_BehaviorSharedDataJsImplementation_InitializeContent_1"]=function(){return(_emscripten_bind_BehaviorSharedDataJsImplementation_InitializeContent_1=Module["_emscripten_bind_BehaviorSharedDataJsImplementation_InitializeContent_1"]=Module["asm"]["Yl"]).apply(null,arguments)};var _emscripten_bind_BehaviorSharedDataJsImplementation___destroy___0=Module["_emscripten_bind_BehaviorSharedDataJsImplementation___destroy___0"]=function(){return(_emscripten_bind_BehaviorSharedDataJsImplementation___destroy___0=Module["_emscripten_bind_BehaviorSharedDataJsImplementation___destroy___0"]=Module["asm"]["Zl"]).apply(null,arguments)};var _emscripten_bind_UniquePtrObjectConfiguration_get_0=Module["_emscripten_bind_UniquePtrObjectConfiguration_get_0"]=function(){return(_emscripten_bind_UniquePtrObjectConfiguration_get_0=Module["_emscripten_bind_UniquePtrObjectConfiguration_get_0"]=Module["asm"]["_l"]).apply(null,arguments)};var _emscripten_bind_UniquePtrObjectConfiguration_release_0=Module["_emscripten_bind_UniquePtrObjectConfiguration_release_0"]=function(){return(_emscripten_bind_UniquePtrObjectConfiguration_release_0=Module["_emscripten_bind_UniquePtrObjectConfiguration_release_0"]=Module["asm"]["$l"]).apply(null,arguments)};var _emscripten_bind_UniquePtrObjectConfiguration___destroy___0=Module["_emscripten_bind_UniquePtrObjectConfiguration___destroy___0"]=function(){return(_emscripten_bind_UniquePtrObjectConfiguration___destroy___0=Module["_emscripten_bind_UniquePtrObjectConfiguration___destroy___0"]=Module["asm"]["am"]).apply(null,arguments)};var _emscripten_bind_gdObject_gdObject_3=Module["_emscripten_bind_gdObject_gdObject_3"]=function(){return(_emscripten_bind_gdObject_gdObject_3=Module["_emscripten_bind_gdObject_gdObject_3"]=Module["asm"]["bm"]).apply(null,arguments)};var _emscripten_bind_gdObject_Clone_0=Module["_emscripten_bind_gdObject_Clone_0"]=function(){return(_emscripten_bind_gdObject_Clone_0=Module["_emscripten_bind_gdObject_Clone_0"]=Module["asm"]["cm"]).apply(null,arguments)};var _emscripten_bind_gdObject_SetName_1=Module["_emscripten_bind_gdObject_SetName_1"]=function(){return(_emscripten_bind_gdObject_SetName_1=Module["_emscripten_bind_gdObject_SetName_1"]=Module["asm"]["dm"]).apply(null,arguments)};var _emscripten_bind_gdObject_GetName_0=Module["_emscripten_bind_gdObject_GetName_0"]=function(){return(_emscripten_bind_gdObject_GetName_0=Module["_emscripten_bind_gdObject_GetName_0"]=Module["asm"]["em"]).apply(null,arguments)};var _emscripten_bind_gdObject_SetAssetStoreId_1=Module["_emscripten_bind_gdObject_SetAssetStoreId_1"]=function(){return(_emscripten_bind_gdObject_SetAssetStoreId_1=Module["_emscripten_bind_gdObject_SetAssetStoreId_1"]=Module["asm"]["fm"]).apply(null,arguments)};var _emscripten_bind_gdObject_GetAssetStoreId_0=Module["_emscripten_bind_gdObject_GetAssetStoreId_0"]=function(){return(_emscripten_bind_gdObject_GetAssetStoreId_0=Module["_emscripten_bind_gdObject_GetAssetStoreId_0"]=Module["asm"]["gm"]).apply(null,arguments)};var _emscripten_bind_gdObject_SetType_1=Module["_emscripten_bind_gdObject_SetType_1"]=function(){return(_emscripten_bind_gdObject_SetType_1=Module["_emscripten_bind_gdObject_SetType_1"]=Module["asm"]["hm"]).apply(null,arguments)};var _emscripten_bind_gdObject_GetType_0=Module["_emscripten_bind_gdObject_GetType_0"]=function(){return(_emscripten_bind_gdObject_GetType_0=Module["_emscripten_bind_gdObject_GetType_0"]=Module["asm"]["im"]).apply(null,arguments)};var _emscripten_bind_gdObject_SetResourcesPreloading_1=Module["_emscripten_bind_gdObject_SetResourcesPreloading_1"]=function(){return(_emscripten_bind_gdObject_SetResourcesPreloading_1=Module["_emscripten_bind_gdObject_SetResourcesPreloading_1"]=Module["asm"]["jm"]).apply(null,arguments)};var _emscripten_bind_gdObject_GetResourcesPreloading_0=Module["_emscripten_bind_gdObject_GetResourcesPreloading_0"]=function(){return(_emscripten_bind_gdObject_GetResourcesPreloading_0=Module["_emscripten_bind_gdObject_GetResourcesPreloading_0"]=Module["asm"]["km"]).apply(null,arguments)};var _emscripten_bind_gdObject_GetConfiguration_0=Module["_emscripten_bind_gdObject_GetConfiguration_0"]=function(){return(_emscripten_bind_gdObject_GetConfiguration_0=Module["_emscripten_bind_gdObject_GetConfiguration_0"]=Module["asm"]["lm"]).apply(null,arguments)};var _emscripten_bind_gdObject_GetVariables_0=Module["_emscripten_bind_gdObject_GetVariables_0"]=function(){return(_emscripten_bind_gdObject_GetVariables_0=Module["_emscripten_bind_gdObject_GetVariables_0"]=Module["asm"]["mm"]).apply(null,arguments)};var _emscripten_bind_gdObject_GetEffects_0=Module["_emscripten_bind_gdObject_GetEffects_0"]=function(){return(_emscripten_bind_gdObject_GetEffects_0=Module["_emscripten_bind_gdObject_GetEffects_0"]=Module["asm"]["nm"]).apply(null,arguments)};var _emscripten_bind_gdObject_GetAllBehaviorNames_0=Module["_emscripten_bind_gdObject_GetAllBehaviorNames_0"]=function(){return(_emscripten_bind_gdObject_GetAllBehaviorNames_0=Module["_emscripten_bind_gdObject_GetAllBehaviorNames_0"]=Module["asm"]["om"]).apply(null,arguments)};var _emscripten_bind_gdObject_HasBehaviorNamed_1=Module["_emscripten_bind_gdObject_HasBehaviorNamed_1"]=function(){return(_emscripten_bind_gdObject_HasBehaviorNamed_1=Module["_emscripten_bind_gdObject_HasBehaviorNamed_1"]=Module["asm"]["pm"]).apply(null,arguments)};var _emscripten_bind_gdObject_AddNewBehavior_3=Module["_emscripten_bind_gdObject_AddNewBehavior_3"]=function(){return(_emscripten_bind_gdObject_AddNewBehavior_3=Module["_emscripten_bind_gdObject_AddNewBehavior_3"]=Module["asm"]["qm"]).apply(null,arguments)};var _emscripten_bind_gdObject_GetBehavior_1=Module["_emscripten_bind_gdObject_GetBehavior_1"]=function(){return(_emscripten_bind_gdObject_GetBehavior_1=Module["_emscripten_bind_gdObject_GetBehavior_1"]=Module["asm"]["rm"]).apply(null,arguments)};var _emscripten_bind_gdObject_RemoveBehavior_1=Module["_emscripten_bind_gdObject_RemoveBehavior_1"]=function(){return(_emscripten_bind_gdObject_RemoveBehavior_1=Module["_emscripten_bind_gdObject_RemoveBehavior_1"]=Module["asm"]["sm"]).apply(null,arguments)};var _emscripten_bind_gdObject_RenameBehavior_2=Module["_emscripten_bind_gdObject_RenameBehavior_2"]=function(){return(_emscripten_bind_gdObject_RenameBehavior_2=Module["_emscripten_bind_gdObject_RenameBehavior_2"]=Module["asm"]["tm"]).apply(null,arguments)};var _emscripten_bind_gdObject_SerializeTo_1=Module["_emscripten_bind_gdObject_SerializeTo_1"]=function(){return(_emscripten_bind_gdObject_SerializeTo_1=Module["_emscripten_bind_gdObject_SerializeTo_1"]=Module["asm"]["um"]).apply(null,arguments)};var _emscripten_bind_gdObject_UnserializeFrom_2=Module["_emscripten_bind_gdObject_UnserializeFrom_2"]=function(){return(_emscripten_bind_gdObject_UnserializeFrom_2=Module["_emscripten_bind_gdObject_UnserializeFrom_2"]=Module["asm"]["vm"]).apply(null,arguments)};var _emscripten_bind_gdObject_ResetPersistentUuid_0=Module["_emscripten_bind_gdObject_ResetPersistentUuid_0"]=function(){return(_emscripten_bind_gdObject_ResetPersistentUuid_0=Module["_emscripten_bind_gdObject_ResetPersistentUuid_0"]=Module["asm"]["wm"]).apply(null,arguments)};var _emscripten_bind_gdObject_GetPersistentUuid_0=Module["_emscripten_bind_gdObject_GetPersistentUuid_0"]=function(){return(_emscripten_bind_gdObject_GetPersistentUuid_0=Module["_emscripten_bind_gdObject_GetPersistentUuid_0"]=Module["asm"]["xm"]).apply(null,arguments)};var _emscripten_bind_gdObject___destroy___0=Module["_emscripten_bind_gdObject___destroy___0"]=function(){return(_emscripten_bind_gdObject___destroy___0=Module["_emscripten_bind_gdObject___destroy___0"]=Module["asm"]["ym"]).apply(null,arguments)};var _emscripten_bind_UniquePtrObject_get_0=Module["_emscripten_bind_UniquePtrObject_get_0"]=function(){return(_emscripten_bind_UniquePtrObject_get_0=Module["_emscripten_bind_UniquePtrObject_get_0"]=Module["asm"]["zm"]).apply(null,arguments)};var _emscripten_bind_UniquePtrObject_release_0=Module["_emscripten_bind_UniquePtrObject_release_0"]=function(){return(_emscripten_bind_UniquePtrObject_release_0=Module["_emscripten_bind_UniquePtrObject_release_0"]=Module["asm"]["Am"]).apply(null,arguments)};var _emscripten_bind_UniquePtrObject___destroy___0=Module["_emscripten_bind_UniquePtrObject___destroy___0"]=function(){return(_emscripten_bind_UniquePtrObject___destroy___0=Module["_emscripten_bind_UniquePtrObject___destroy___0"]=Module["asm"]["Bm"]).apply(null,arguments)};var _emscripten_bind_ObjectJsImplementation_ObjectJsImplementation_0=Module["_emscripten_bind_ObjectJsImplementation_ObjectJsImplementation_0"]=function(){return(_emscripten_bind_ObjectJsImplementation_ObjectJsImplementation_0=Module["_emscripten_bind_ObjectJsImplementation_ObjectJsImplementation_0"]=Module["asm"]["Cm"]).apply(null,arguments)};var _emscripten_bind_ObjectJsImplementation_Clone_0=Module["_emscripten_bind_ObjectJsImplementation_Clone_0"]=function(){return(_emscripten_bind_ObjectJsImplementation_Clone_0=Module["_emscripten_bind_ObjectJsImplementation_Clone_0"]=Module["asm"]["Dm"]).apply(null,arguments)};var _emscripten_bind_ObjectJsImplementation_GetProperties_0=Module["_emscripten_bind_ObjectJsImplementation_GetProperties_0"]=function(){return(_emscripten_bind_ObjectJsImplementation_GetProperties_0=Module["_emscripten_bind_ObjectJsImplementation_GetProperties_0"]=Module["asm"]["Em"]).apply(null,arguments)};var _emscripten_bind_ObjectJsImplementation_UpdateProperty_2=Module["_emscripten_bind_ObjectJsImplementation_UpdateProperty_2"]=function(){return(_emscripten_bind_ObjectJsImplementation_UpdateProperty_2=Module["_emscripten_bind_ObjectJsImplementation_UpdateProperty_2"]=Module["asm"]["Fm"]).apply(null,arguments)};var _emscripten_bind_ObjectJsImplementation_GetInitialInstanceProperties_1=Module["_emscripten_bind_ObjectJsImplementation_GetInitialInstanceProperties_1"]=function(){return(_emscripten_bind_ObjectJsImplementation_GetInitialInstanceProperties_1=Module["_emscripten_bind_ObjectJsImplementation_GetInitialInstanceProperties_1"]=Module["asm"]["Gm"]).apply(null,arguments)};var _emscripten_bind_ObjectJsImplementation_UpdateInitialInstanceProperty_3=Module["_emscripten_bind_ObjectJsImplementation_UpdateInitialInstanceProperty_3"]=function(){return(_emscripten_bind_ObjectJsImplementation_UpdateInitialInstanceProperty_3=Module["_emscripten_bind_ObjectJsImplementation_UpdateInitialInstanceProperty_3"]=Module["asm"]["Hm"]).apply(null,arguments)};var _emscripten_bind_ObjectJsImplementation_SerializeTo_1=Module["_emscripten_bind_ObjectJsImplementation_SerializeTo_1"]=function(){return(_emscripten_bind_ObjectJsImplementation_SerializeTo_1=Module["_emscripten_bind_ObjectJsImplementation_SerializeTo_1"]=Module["asm"]["Im"]).apply(null,arguments)};var _emscripten_bind_ObjectJsImplementation_UnserializeFrom_2=Module["_emscripten_bind_ObjectJsImplementation_UnserializeFrom_2"]=function(){return(_emscripten_bind_ObjectJsImplementation_UnserializeFrom_2=Module["_emscripten_bind_ObjectJsImplementation_UnserializeFrom_2"]=Module["asm"]["Jm"]).apply(null,arguments)};var _emscripten_bind_ObjectJsImplementation___destroy___0=Module["_emscripten_bind_ObjectJsImplementation___destroy___0"]=function(){return(_emscripten_bind_ObjectJsImplementation___destroy___0=Module["_emscripten_bind_ObjectJsImplementation___destroy___0"]=Module["asm"]["Km"]).apply(null,arguments)};var _emscripten_bind_CustomObjectConfiguration_Clone_0=Module["_emscripten_bind_CustomObjectConfiguration_Clone_0"]=function(){return(_emscripten_bind_CustomObjectConfiguration_Clone_0=Module["_emscripten_bind_CustomObjectConfiguration_Clone_0"]=Module["asm"]["Lm"]).apply(null,arguments)};var _emscripten_bind_CustomObjectConfiguration_GetVariantName_0=Module["_emscripten_bind_CustomObjectConfiguration_GetVariantName_0"]=function(){return(_emscripten_bind_CustomObjectConfiguration_GetVariantName_0=Module["_emscripten_bind_CustomObjectConfiguration_GetVariantName_0"]=Module["asm"]["Mm"]).apply(null,arguments)};var _emscripten_bind_CustomObjectConfiguration_SetVariantName_1=Module["_emscripten_bind_CustomObjectConfiguration_SetVariantName_1"]=function(){return(_emscripten_bind_CustomObjectConfiguration_SetVariantName_1=Module["_emscripten_bind_CustomObjectConfiguration_SetVariantName_1"]=Module["asm"]["Nm"]).apply(null,arguments)};var _emscripten_bind_CustomObjectConfiguration_IsForcedToOverrideEventsBasedObjectChildrenConfiguration_0=Module["_emscripten_bind_CustomObjectConfiguration_IsForcedToOverrideEventsBasedObjectChildrenConfiguration_0"]=function(){return(_emscripten_bind_CustomObjectConfiguration_IsForcedToOverrideEventsBasedObjectChildrenConfiguration_0=Module["_emscripten_bind_CustomObjectConfiguration_IsForcedToOverrideEventsBasedObjectChildrenConfiguration_0"]=Module["asm"]["Om"]).apply(null,arguments)};var _emscripten_bind_CustomObjectConfiguration_IsMarkedAsOverridingEventsBasedObjectChildrenConfiguration_0=Module["_emscripten_bind_CustomObjectConfiguration_IsMarkedAsOverridingEventsBasedObjectChildrenConfiguration_0"]=function(){return(_emscripten_bind_CustomObjectConfiguration_IsMarkedAsOverridingEventsBasedObjectChildrenConfiguration_0=Module["_emscripten_bind_CustomObjectConfiguration_IsMarkedAsOverridingEventsBasedObjectChildrenConfiguration_0"]=Module["asm"]["Pm"]).apply(null,arguments)};var _emscripten_bind_CustomObjectConfiguration_SetMarkedAsOverridingEventsBasedObjectChildrenConfiguration_1=Module["_emscripten_bind_CustomObjectConfiguration_SetMarkedAsOverridingEventsBasedObjectChildrenConfiguration_1"]=function(){return(_emscripten_bind_CustomObjectConfiguration_SetMarkedAsOverridingEventsBasedObjectChildrenConfiguration_1=Module["_emscripten_bind_CustomObjectConfiguration_SetMarkedAsOverridingEventsBasedObjectChildrenConfiguration_1"]=Module["asm"]["Qm"]).apply(null,arguments)};var _emscripten_bind_CustomObjectConfiguration_ClearChildrenConfiguration_0=Module["_emscripten_bind_CustomObjectConfiguration_ClearChildrenConfiguration_0"]=function(){return(_emscripten_bind_CustomObjectConfiguration_ClearChildrenConfiguration_0=Module["_emscripten_bind_CustomObjectConfiguration_ClearChildrenConfiguration_0"]=Module["asm"]["Rm"]).apply(null,arguments)};var _emscripten_bind_CustomObjectConfiguration_GetChildObjectConfiguration_1=Module["_emscripten_bind_CustomObjectConfiguration_GetChildObjectConfiguration_1"]=function(){return(_emscripten_bind_CustomObjectConfiguration_GetChildObjectConfiguration_1=Module["_emscripten_bind_CustomObjectConfiguration_GetChildObjectConfiguration_1"]=Module["asm"]["Sm"]).apply(null,arguments)};var _emscripten_bind_CustomObjectConfiguration_GetProperties_0=Module["_emscripten_bind_CustomObjectConfiguration_GetProperties_0"]=function(){return(_emscripten_bind_CustomObjectConfiguration_GetProperties_0=Module["_emscripten_bind_CustomObjectConfiguration_GetProperties_0"]=Module["asm"]["Tm"]).apply(null,arguments)};var _emscripten_bind_CustomObjectConfiguration_UpdateProperty_2=Module["_emscripten_bind_CustomObjectConfiguration_UpdateProperty_2"]=function(){return(_emscripten_bind_CustomObjectConfiguration_UpdateProperty_2=Module["_emscripten_bind_CustomObjectConfiguration_UpdateProperty_2"]=Module["asm"]["Um"]).apply(null,arguments)};var _emscripten_bind_CustomObjectConfiguration_GetInitialInstanceProperties_1=Module["_emscripten_bind_CustomObjectConfiguration_GetInitialInstanceProperties_1"]=function(){return(_emscripten_bind_CustomObjectConfiguration_GetInitialInstanceProperties_1=Module["_emscripten_bind_CustomObjectConfiguration_GetInitialInstanceProperties_1"]=Module["asm"]["Vm"]).apply(null,arguments)};var _emscripten_bind_CustomObjectConfiguration_UpdateInitialInstanceProperty_3=Module["_emscripten_bind_CustomObjectConfiguration_UpdateInitialInstanceProperty_3"]=function(){return(_emscripten_bind_CustomObjectConfiguration_UpdateInitialInstanceProperty_3=Module["_emscripten_bind_CustomObjectConfiguration_UpdateInitialInstanceProperty_3"]=Module["asm"]["Wm"]).apply(null,arguments)};var _emscripten_bind_CustomObjectConfiguration_GetAnimations_0=Module["_emscripten_bind_CustomObjectConfiguration_GetAnimations_0"]=function(){return(_emscripten_bind_CustomObjectConfiguration_GetAnimations_0=Module["_emscripten_bind_CustomObjectConfiguration_GetAnimations_0"]=Module["asm"]["Xm"]).apply(null,arguments)};var _emscripten_bind_CustomObjectConfiguration_IsChildObjectFolded_1=Module["_emscripten_bind_CustomObjectConfiguration_IsChildObjectFolded_1"]=function(){return(_emscripten_bind_CustomObjectConfiguration_IsChildObjectFolded_1=Module["_emscripten_bind_CustomObjectConfiguration_IsChildObjectFolded_1"]=Module["asm"]["Ym"]).apply(null,arguments)};var _emscripten_bind_CustomObjectConfiguration_SetChildObjectFolded_2=Module["_emscripten_bind_CustomObjectConfiguration_SetChildObjectFolded_2"]=function(){return(_emscripten_bind_CustomObjectConfiguration_SetChildObjectFolded_2=Module["_emscripten_bind_CustomObjectConfiguration_SetChildObjectFolded_2"]=Module["asm"]["Zm"]).apply(null,arguments)};var _emscripten_bind_CustomObjectConfiguration_STATIC_GetEdgeAnchorFromString_1=Module["_emscripten_bind_CustomObjectConfiguration_STATIC_GetEdgeAnchorFromString_1"]=function(){return(_emscripten_bind_CustomObjectConfiguration_STATIC_GetEdgeAnchorFromString_1=Module["_emscripten_bind_CustomObjectConfiguration_STATIC_GetEdgeAnchorFromString_1"]=Module["asm"]["_m"]).apply(null,arguments)};var _emscripten_bind_CustomObjectConfiguration_GetType_0=Module["_emscripten_bind_CustomObjectConfiguration_GetType_0"]=function(){return(_emscripten_bind_CustomObjectConfiguration_GetType_0=Module["_emscripten_bind_CustomObjectConfiguration_GetType_0"]=Module["asm"]["$m"]).apply(null,arguments)};var _emscripten_bind_CustomObjectConfiguration_SetType_1=Module["_emscripten_bind_CustomObjectConfiguration_SetType_1"]=function(){return(_emscripten_bind_CustomObjectConfiguration_SetType_1=Module["_emscripten_bind_CustomObjectConfiguration_SetType_1"]=Module["asm"]["an"]).apply(null,arguments)};var _emscripten_bind_CustomObjectConfiguration_ExposeResources_1=Module["_emscripten_bind_CustomObjectConfiguration_ExposeResources_1"]=function(){return(_emscripten_bind_CustomObjectConfiguration_ExposeResources_1=Module["_emscripten_bind_CustomObjectConfiguration_ExposeResources_1"]=Module["asm"]["bn"]).apply(null,arguments)};var _emscripten_bind_CustomObjectConfiguration_SerializeTo_1=Module["_emscripten_bind_CustomObjectConfiguration_SerializeTo_1"]=function(){return(_emscripten_bind_CustomObjectConfiguration_SerializeTo_1=Module["_emscripten_bind_CustomObjectConfiguration_SerializeTo_1"]=Module["asm"]["cn"]).apply(null,arguments)};var _emscripten_bind_CustomObjectConfiguration_UnserializeFrom_2=Module["_emscripten_bind_CustomObjectConfiguration_UnserializeFrom_2"]=function(){return(_emscripten_bind_CustomObjectConfiguration_UnserializeFrom_2=Module["_emscripten_bind_CustomObjectConfiguration_UnserializeFrom_2"]=Module["asm"]["dn"]).apply(null,arguments)};var _emscripten_bind_CustomObjectConfiguration_GetAnimationsCount_0=Module["_emscripten_bind_CustomObjectConfiguration_GetAnimationsCount_0"]=function(){return(_emscripten_bind_CustomObjectConfiguration_GetAnimationsCount_0=Module["_emscripten_bind_CustomObjectConfiguration_GetAnimationsCount_0"]=Module["asm"]["en"]).apply(null,arguments)};var _emscripten_bind_CustomObjectConfiguration_GetAnimationName_1=Module["_emscripten_bind_CustomObjectConfiguration_GetAnimationName_1"]=function(){return(_emscripten_bind_CustomObjectConfiguration_GetAnimationName_1=Module["_emscripten_bind_CustomObjectConfiguration_GetAnimationName_1"]=Module["asm"]["fn"]).apply(null,arguments)};var _emscripten_bind_CustomObjectConfiguration___destroy___0=Module["_emscripten_bind_CustomObjectConfiguration___destroy___0"]=function(){return(_emscripten_bind_CustomObjectConfiguration___destroy___0=Module["_emscripten_bind_CustomObjectConfiguration___destroy___0"]=Module["asm"]["gn"]).apply(null,arguments)};var _emscripten_bind_Layout_Layout_0=Module["_emscripten_bind_Layout_Layout_0"]=function(){return(_emscripten_bind_Layout_Layout_0=Module["_emscripten_bind_Layout_Layout_0"]=Module["asm"]["hn"]).apply(null,arguments)};var _emscripten_bind_Layout_SetName_1=Module["_emscripten_bind_Layout_SetName_1"]=function(){return(_emscripten_bind_Layout_SetName_1=Module["_emscripten_bind_Layout_SetName_1"]=Module["asm"]["jn"]).apply(null,arguments)};var _emscripten_bind_Layout_GetName_0=Module["_emscripten_bind_Layout_GetName_0"]=function(){return(_emscripten_bind_Layout_GetName_0=Module["_emscripten_bind_Layout_GetName_0"]=Module["asm"]["kn"]).apply(null,arguments)};var _emscripten_bind_Layout_SetBackgroundColor_3=Module["_emscripten_bind_Layout_SetBackgroundColor_3"]=function(){return(_emscripten_bind_Layout_SetBackgroundColor_3=Module["_emscripten_bind_Layout_SetBackgroundColor_3"]=Module["asm"]["ln"]).apply(null,arguments)};var _emscripten_bind_Layout_GetBackgroundColorRed_0=Module["_emscripten_bind_Layout_GetBackgroundColorRed_0"]=function(){return(_emscripten_bind_Layout_GetBackgroundColorRed_0=Module["_emscripten_bind_Layout_GetBackgroundColorRed_0"]=Module["asm"]["mn"]).apply(null,arguments)};var _emscripten_bind_Layout_GetBackgroundColorGreen_0=Module["_emscripten_bind_Layout_GetBackgroundColorGreen_0"]=function(){return(_emscripten_bind_Layout_GetBackgroundColorGreen_0=Module["_emscripten_bind_Layout_GetBackgroundColorGreen_0"]=Module["asm"]["nn"]).apply(null,arguments)};var _emscripten_bind_Layout_GetBackgroundColorBlue_0=Module["_emscripten_bind_Layout_GetBackgroundColorBlue_0"]=function(){return(_emscripten_bind_Layout_GetBackgroundColorBlue_0=Module["_emscripten_bind_Layout_GetBackgroundColorBlue_0"]=Module["asm"]["on"]).apply(null,arguments)};var _emscripten_bind_Layout_SetWindowDefaultTitle_1=Module["_emscripten_bind_Layout_SetWindowDefaultTitle_1"]=function(){return(_emscripten_bind_Layout_SetWindowDefaultTitle_1=Module["_emscripten_bind_Layout_SetWindowDefaultTitle_1"]=Module["asm"]["pn"]).apply(null,arguments)};var _emscripten_bind_Layout_GetWindowDefaultTitle_0=Module["_emscripten_bind_Layout_GetWindowDefaultTitle_0"]=function(){return(_emscripten_bind_Layout_GetWindowDefaultTitle_0=Module["_emscripten_bind_Layout_GetWindowDefaultTitle_0"]=Module["asm"]["qn"]).apply(null,arguments)};var _emscripten_bind_Layout_GetInitialInstances_0=Module["_emscripten_bind_Layout_GetInitialInstances_0"]=function(){return(_emscripten_bind_Layout_GetInitialInstances_0=Module["_emscripten_bind_Layout_GetInitialInstances_0"]=Module["asm"]["rn"]).apply(null,arguments)};var _emscripten_bind_Layout_GetVariables_0=Module["_emscripten_bind_Layout_GetVariables_0"]=function(){return(_emscripten_bind_Layout_GetVariables_0=Module["_emscripten_bind_Layout_GetVariables_0"]=Module["asm"]["sn"]).apply(null,arguments)};var _emscripten_bind_Layout_GetObjects_0=Module["_emscripten_bind_Layout_GetObjects_0"]=function(){return(_emscripten_bind_Layout_GetObjects_0=Module["_emscripten_bind_Layout_GetObjects_0"]=Module["asm"]["tn"]).apply(null,arguments)};var _emscripten_bind_Layout_GetEvents_0=Module["_emscripten_bind_Layout_GetEvents_0"]=function(){return(_emscripten_bind_Layout_GetEvents_0=Module["_emscripten_bind_Layout_GetEvents_0"]=Module["asm"]["un"]).apply(null,arguments)};var _emscripten_bind_Layout_GetLayers_0=Module["_emscripten_bind_Layout_GetLayers_0"]=function(){return(_emscripten_bind_Layout_GetLayers_0=Module["_emscripten_bind_Layout_GetLayers_0"]=Module["asm"]["vn"]).apply(null,arguments)};var _emscripten_bind_Layout_UpdateBehaviorsSharedData_1=Module["_emscripten_bind_Layout_UpdateBehaviorsSharedData_1"]=function(){return(_emscripten_bind_Layout_UpdateBehaviorsSharedData_1=Module["_emscripten_bind_Layout_UpdateBehaviorsSharedData_1"]=Module["asm"]["wn"]).apply(null,arguments)};var _emscripten_bind_Layout_GetAllBehaviorSharedDataNames_0=Module["_emscripten_bind_Layout_GetAllBehaviorSharedDataNames_0"]=function(){return(_emscripten_bind_Layout_GetAllBehaviorSharedDataNames_0=Module["_emscripten_bind_Layout_GetAllBehaviorSharedDataNames_0"]=Module["asm"]["xn"]).apply(null,arguments)};var _emscripten_bind_Layout_HasBehaviorSharedData_1=Module["_emscripten_bind_Layout_HasBehaviorSharedData_1"]=function(){return(_emscripten_bind_Layout_HasBehaviorSharedData_1=Module["_emscripten_bind_Layout_HasBehaviorSharedData_1"]=Module["asm"]["yn"]).apply(null,arguments)};var _emscripten_bind_Layout_GetBehaviorSharedData_1=Module["_emscripten_bind_Layout_GetBehaviorSharedData_1"]=function(){return(_emscripten_bind_Layout_GetBehaviorSharedData_1=Module["_emscripten_bind_Layout_GetBehaviorSharedData_1"]=Module["asm"]["zn"]).apply(null,arguments)};var _emscripten_bind_Layout_InsertNewLayer_2=Module["_emscripten_bind_Layout_InsertNewLayer_2"]=function(){return(_emscripten_bind_Layout_InsertNewLayer_2=Module["_emscripten_bind_Layout_InsertNewLayer_2"]=Module["asm"]["An"]).apply(null,arguments)};var _emscripten_bind_Layout_InsertLayer_2=Module["_emscripten_bind_Layout_InsertLayer_2"]=function(){return(_emscripten_bind_Layout_InsertLayer_2=Module["_emscripten_bind_Layout_InsertLayer_2"]=Module["asm"]["Bn"]).apply(null,arguments)};var _emscripten_bind_Layout_GetLayer_1=Module["_emscripten_bind_Layout_GetLayer_1"]=function(){return(_emscripten_bind_Layout_GetLayer_1=Module["_emscripten_bind_Layout_GetLayer_1"]=Module["asm"]["Cn"]).apply(null,arguments)};var _emscripten_bind_Layout_GetLayerAt_1=Module["_emscripten_bind_Layout_GetLayerAt_1"]=function(){return(_emscripten_bind_Layout_GetLayerAt_1=Module["_emscripten_bind_Layout_GetLayerAt_1"]=Module["asm"]["Dn"]).apply(null,arguments)};var _emscripten_bind_Layout_HasLayerNamed_1=Module["_emscripten_bind_Layout_HasLayerNamed_1"]=function(){return(_emscripten_bind_Layout_HasLayerNamed_1=Module["_emscripten_bind_Layout_HasLayerNamed_1"]=Module["asm"]["En"]).apply(null,arguments)};var _emscripten_bind_Layout_RemoveLayer_1=Module["_emscripten_bind_Layout_RemoveLayer_1"]=function(){return(_emscripten_bind_Layout_RemoveLayer_1=Module["_emscripten_bind_Layout_RemoveLayer_1"]=Module["asm"]["Fn"]).apply(null,arguments)};var _emscripten_bind_Layout_GetLayersCount_0=Module["_emscripten_bind_Layout_GetLayersCount_0"]=function(){return(_emscripten_bind_Layout_GetLayersCount_0=Module["_emscripten_bind_Layout_GetLayersCount_0"]=Module["asm"]["Gn"]).apply(null,arguments)};var _emscripten_bind_Layout_SwapLayers_2=Module["_emscripten_bind_Layout_SwapLayers_2"]=function(){return(_emscripten_bind_Layout_SwapLayers_2=Module["_emscripten_bind_Layout_SwapLayers_2"]=Module["asm"]["Hn"]).apply(null,arguments)};var _emscripten_bind_Layout_MoveLayer_2=Module["_emscripten_bind_Layout_MoveLayer_2"]=function(){return(_emscripten_bind_Layout_MoveLayer_2=Module["_emscripten_bind_Layout_MoveLayer_2"]=Module["asm"]["In"]).apply(null,arguments)};var _emscripten_bind_Layout_GetAssociatedEditorSettings_0=Module["_emscripten_bind_Layout_GetAssociatedEditorSettings_0"]=function(){return(_emscripten_bind_Layout_GetAssociatedEditorSettings_0=Module["_emscripten_bind_Layout_GetAssociatedEditorSettings_0"]=Module["asm"]["Jn"]).apply(null,arguments)};var _emscripten_bind_Layout_SerializeTo_1=Module["_emscripten_bind_Layout_SerializeTo_1"]=function(){return(_emscripten_bind_Layout_SerializeTo_1=Module["_emscripten_bind_Layout_SerializeTo_1"]=Module["asm"]["Kn"]).apply(null,arguments)};var _emscripten_bind_Layout_UnserializeFrom_2=Module["_emscripten_bind_Layout_UnserializeFrom_2"]=function(){return(_emscripten_bind_Layout_UnserializeFrom_2=Module["_emscripten_bind_Layout_UnserializeFrom_2"]=Module["asm"]["Ln"]).apply(null,arguments)};var _emscripten_bind_Layout_SetStopSoundsOnStartup_1=Module["_emscripten_bind_Layout_SetStopSoundsOnStartup_1"]=function(){return(_emscripten_bind_Layout_SetStopSoundsOnStartup_1=Module["_emscripten_bind_Layout_SetStopSoundsOnStartup_1"]=Module["asm"]["Mn"]).apply(null,arguments)};var _emscripten_bind_Layout_StopSoundsOnStartup_0=Module["_emscripten_bind_Layout_StopSoundsOnStartup_0"]=function(){return(_emscripten_bind_Layout_StopSoundsOnStartup_0=Module["_emscripten_bind_Layout_StopSoundsOnStartup_0"]=Module["asm"]["Nn"]).apply(null,arguments)};var _emscripten_bind_Layout_SetResourcesPreloading_1=Module["_emscripten_bind_Layout_SetResourcesPreloading_1"]=function(){return(_emscripten_bind_Layout_SetResourcesPreloading_1=Module["_emscripten_bind_Layout_SetResourcesPreloading_1"]=Module["asm"]["On"]).apply(null,arguments)};var _emscripten_bind_Layout_GetResourcesPreloading_0=Module["_emscripten_bind_Layout_GetResourcesPreloading_0"]=function(){return(_emscripten_bind_Layout_GetResourcesPreloading_0=Module["_emscripten_bind_Layout_GetResourcesPreloading_0"]=Module["asm"]["Pn"]).apply(null,arguments)};var _emscripten_bind_Layout_SetResourcesUnloading_1=Module["_emscripten_bind_Layout_SetResourcesUnloading_1"]=function(){return(_emscripten_bind_Layout_SetResourcesUnloading_1=Module["_emscripten_bind_Layout_SetResourcesUnloading_1"]=Module["asm"]["Qn"]).apply(null,arguments)};var _emscripten_bind_Layout_GetResourcesUnloading_0=Module["_emscripten_bind_Layout_GetResourcesUnloading_0"]=function(){return(_emscripten_bind_Layout_GetResourcesUnloading_0=Module["_emscripten_bind_Layout_GetResourcesUnloading_0"]=Module["asm"]["Rn"]).apply(null,arguments)};var _emscripten_bind_Layout___destroy___0=Module["_emscripten_bind_Layout___destroy___0"]=function(){return(_emscripten_bind_Layout___destroy___0=Module["_emscripten_bind_Layout___destroy___0"]=Module["asm"]["Sn"]).apply(null,arguments)};var _emscripten_bind_ExternalEvents_ExternalEvents_0=Module["_emscripten_bind_ExternalEvents_ExternalEvents_0"]=function(){return(_emscripten_bind_ExternalEvents_ExternalEvents_0=Module["_emscripten_bind_ExternalEvents_ExternalEvents_0"]=Module["asm"]["Tn"]).apply(null,arguments)};var _emscripten_bind_ExternalEvents_SetName_1=Module["_emscripten_bind_ExternalEvents_SetName_1"]=function(){return(_emscripten_bind_ExternalEvents_SetName_1=Module["_emscripten_bind_ExternalEvents_SetName_1"]=Module["asm"]["Un"]).apply(null,arguments)};var _emscripten_bind_ExternalEvents_GetName_0=Module["_emscripten_bind_ExternalEvents_GetName_0"]=function(){return(_emscripten_bind_ExternalEvents_GetName_0=Module["_emscripten_bind_ExternalEvents_GetName_0"]=Module["asm"]["Vn"]).apply(null,arguments)};var _emscripten_bind_ExternalEvents_GetAssociatedLayout_0=Module["_emscripten_bind_ExternalEvents_GetAssociatedLayout_0"]=function(){return(_emscripten_bind_ExternalEvents_GetAssociatedLayout_0=Module["_emscripten_bind_ExternalEvents_GetAssociatedLayout_0"]=Module["asm"]["Wn"]).apply(null,arguments)};var _emscripten_bind_ExternalEvents_SetAssociatedLayout_1=Module["_emscripten_bind_ExternalEvents_SetAssociatedLayout_1"]=function(){return(_emscripten_bind_ExternalEvents_SetAssociatedLayout_1=Module["_emscripten_bind_ExternalEvents_SetAssociatedLayout_1"]=Module["asm"]["Xn"]).apply(null,arguments)};var _emscripten_bind_ExternalEvents_GetEvents_0=Module["_emscripten_bind_ExternalEvents_GetEvents_0"]=function(){return(_emscripten_bind_ExternalEvents_GetEvents_0=Module["_emscripten_bind_ExternalEvents_GetEvents_0"]=Module["asm"]["Yn"]).apply(null,arguments)};var _emscripten_bind_ExternalEvents_SerializeTo_1=Module["_emscripten_bind_ExternalEvents_SerializeTo_1"]=function(){return(_emscripten_bind_ExternalEvents_SerializeTo_1=Module["_emscripten_bind_ExternalEvents_SerializeTo_1"]=Module["asm"]["Zn"]).apply(null,arguments)};var _emscripten_bind_ExternalEvents_UnserializeFrom_2=Module["_emscripten_bind_ExternalEvents_UnserializeFrom_2"]=function(){return(_emscripten_bind_ExternalEvents_UnserializeFrom_2=Module["_emscripten_bind_ExternalEvents_UnserializeFrom_2"]=Module["asm"]["_n"]).apply(null,arguments)};var _emscripten_bind_ExternalEvents___destroy___0=Module["_emscripten_bind_ExternalEvents___destroy___0"]=function(){return(_emscripten_bind_ExternalEvents___destroy___0=Module["_emscripten_bind_ExternalEvents___destroy___0"]=Module["asm"]["$n"]).apply(null,arguments)};var _emscripten_bind_ExternalLayout_ExternalLayout_0=Module["_emscripten_bind_ExternalLayout_ExternalLayout_0"]=function(){return(_emscripten_bind_ExternalLayout_ExternalLayout_0=Module["_emscripten_bind_ExternalLayout_ExternalLayout_0"]=Module["asm"]["ao"]).apply(null,arguments)};var _emscripten_bind_ExternalLayout_SetName_1=Module["_emscripten_bind_ExternalLayout_SetName_1"]=function(){return(_emscripten_bind_ExternalLayout_SetName_1=Module["_emscripten_bind_ExternalLayout_SetName_1"]=Module["asm"]["bo"]).apply(null,arguments)};var _emscripten_bind_ExternalLayout_GetName_0=Module["_emscripten_bind_ExternalLayout_GetName_0"]=function(){return(_emscripten_bind_ExternalLayout_GetName_0=Module["_emscripten_bind_ExternalLayout_GetName_0"]=Module["asm"]["co"]).apply(null,arguments)};var _emscripten_bind_ExternalLayout_SetAssociatedLayout_1=Module["_emscripten_bind_ExternalLayout_SetAssociatedLayout_1"]=function(){return(_emscripten_bind_ExternalLayout_SetAssociatedLayout_1=Module["_emscripten_bind_ExternalLayout_SetAssociatedLayout_1"]=Module["asm"]["eo"]).apply(null,arguments)};var _emscripten_bind_ExternalLayout_GetAssociatedLayout_0=Module["_emscripten_bind_ExternalLayout_GetAssociatedLayout_0"]=function(){return(_emscripten_bind_ExternalLayout_GetAssociatedLayout_0=Module["_emscripten_bind_ExternalLayout_GetAssociatedLayout_0"]=Module["asm"]["fo"]).apply(null,arguments)};var _emscripten_bind_ExternalLayout_GetInitialInstances_0=Module["_emscripten_bind_ExternalLayout_GetInitialInstances_0"]=function(){return(_emscripten_bind_ExternalLayout_GetInitialInstances_0=Module["_emscripten_bind_ExternalLayout_GetInitialInstances_0"]=Module["asm"]["go"]).apply(null,arguments)};var _emscripten_bind_ExternalLayout_GetAssociatedEditorSettings_0=Module["_emscripten_bind_ExternalLayout_GetAssociatedEditorSettings_0"]=function(){return(_emscripten_bind_ExternalLayout_GetAssociatedEditorSettings_0=Module["_emscripten_bind_ExternalLayout_GetAssociatedEditorSettings_0"]=Module["asm"]["ho"]).apply(null,arguments)};var _emscripten_bind_ExternalLayout_SerializeTo_1=Module["_emscripten_bind_ExternalLayout_SerializeTo_1"]=function(){return(_emscripten_bind_ExternalLayout_SerializeTo_1=Module["_emscripten_bind_ExternalLayout_SerializeTo_1"]=Module["asm"]["io"]).apply(null,arguments)};var _emscripten_bind_ExternalLayout_UnserializeFrom_2=Module["_emscripten_bind_ExternalLayout_UnserializeFrom_2"]=function(){return(_emscripten_bind_ExternalLayout_UnserializeFrom_2=Module["_emscripten_bind_ExternalLayout_UnserializeFrom_2"]=Module["asm"]["jo"]).apply(null,arguments)};var _emscripten_bind_ExternalLayout___destroy___0=Module["_emscripten_bind_ExternalLayout___destroy___0"]=function(){return(_emscripten_bind_ExternalLayout___destroy___0=Module["_emscripten_bind_ExternalLayout___destroy___0"]=Module["asm"]["ko"]).apply(null,arguments)};var _emscripten_bind_Effect_Effect_0=Module["_emscripten_bind_Effect_Effect_0"]=function(){return(_emscripten_bind_Effect_Effect_0=Module["_emscripten_bind_Effect_Effect_0"]=Module["asm"]["lo"]).apply(null,arguments)};var _emscripten_bind_Effect_SetName_1=Module["_emscripten_bind_Effect_SetName_1"]=function(){return(_emscripten_bind_Effect_SetName_1=Module["_emscripten_bind_Effect_SetName_1"]=Module["asm"]["mo"]).apply(null,arguments)};var _emscripten_bind_Effect_GetName_0=Module["_emscripten_bind_Effect_GetName_0"]=function(){return(_emscripten_bind_Effect_GetName_0=Module["_emscripten_bind_Effect_GetName_0"]=Module["asm"]["no"]).apply(null,arguments)};var _emscripten_bind_Effect_SetEffectType_1=Module["_emscripten_bind_Effect_SetEffectType_1"]=function(){return(_emscripten_bind_Effect_SetEffectType_1=Module["_emscripten_bind_Effect_SetEffectType_1"]=Module["asm"]["oo"]).apply(null,arguments)};var _emscripten_bind_Effect_GetEffectType_0=Module["_emscripten_bind_Effect_GetEffectType_0"]=function(){return(_emscripten_bind_Effect_GetEffectType_0=Module["_emscripten_bind_Effect_GetEffectType_0"]=Module["asm"]["po"]).apply(null,arguments)};var _emscripten_bind_Effect_SetFolded_1=Module["_emscripten_bind_Effect_SetFolded_1"]=function(){return(_emscripten_bind_Effect_SetFolded_1=Module["_emscripten_bind_Effect_SetFolded_1"]=Module["asm"]["qo"]).apply(null,arguments)};var _emscripten_bind_Effect_IsFolded_0=Module["_emscripten_bind_Effect_IsFolded_0"]=function(){return(_emscripten_bind_Effect_IsFolded_0=Module["_emscripten_bind_Effect_IsFolded_0"]=Module["asm"]["ro"]).apply(null,arguments)};var _emscripten_bind_Effect_SetEnabled_1=Module["_emscripten_bind_Effect_SetEnabled_1"]=function(){return(_emscripten_bind_Effect_SetEnabled_1=Module["_emscripten_bind_Effect_SetEnabled_1"]=Module["asm"]["so"]).apply(null,arguments)};var _emscripten_bind_Effect_IsEnabled_0=Module["_emscripten_bind_Effect_IsEnabled_0"]=function(){return(_emscripten_bind_Effect_IsEnabled_0=Module["_emscripten_bind_Effect_IsEnabled_0"]=Module["asm"]["to"]).apply(null,arguments)};var _emscripten_bind_Effect_SetDoubleParameter_2=Module["_emscripten_bind_Effect_SetDoubleParameter_2"]=function(){return(_emscripten_bind_Effect_SetDoubleParameter_2=Module["_emscripten_bind_Effect_SetDoubleParameter_2"]=Module["asm"]["uo"]).apply(null,arguments)};var _emscripten_bind_Effect_GetDoubleParameter_1=Module["_emscripten_bind_Effect_GetDoubleParameter_1"]=function(){return(_emscripten_bind_Effect_GetDoubleParameter_1=Module["_emscripten_bind_Effect_GetDoubleParameter_1"]=Module["asm"]["vo"]).apply(null,arguments)};var _emscripten_bind_Effect_HasDoubleParameter_1=Module["_emscripten_bind_Effect_HasDoubleParameter_1"]=function(){return(_emscripten_bind_Effect_HasDoubleParameter_1=Module["_emscripten_bind_Effect_HasDoubleParameter_1"]=Module["asm"]["wo"]).apply(null,arguments)};var _emscripten_bind_Effect_SetStringParameter_2=Module["_emscripten_bind_Effect_SetStringParameter_2"]=function(){return(_emscripten_bind_Effect_SetStringParameter_2=Module["_emscripten_bind_Effect_SetStringParameter_2"]=Module["asm"]["xo"]).apply(null,arguments)};var _emscripten_bind_Effect_GetStringParameter_1=Module["_emscripten_bind_Effect_GetStringParameter_1"]=function(){return(_emscripten_bind_Effect_GetStringParameter_1=Module["_emscripten_bind_Effect_GetStringParameter_1"]=Module["asm"]["yo"]).apply(null,arguments)};var _emscripten_bind_Effect_HasStringParameter_1=Module["_emscripten_bind_Effect_HasStringParameter_1"]=function(){return(_emscripten_bind_Effect_HasStringParameter_1=Module["_emscripten_bind_Effect_HasStringParameter_1"]=Module["asm"]["zo"]).apply(null,arguments)};var _emscripten_bind_Effect_SetBooleanParameter_2=Module["_emscripten_bind_Effect_SetBooleanParameter_2"]=function(){return(_emscripten_bind_Effect_SetBooleanParameter_2=Module["_emscripten_bind_Effect_SetBooleanParameter_2"]=Module["asm"]["Ao"]).apply(null,arguments)};var _emscripten_bind_Effect_GetBooleanParameter_1=Module["_emscripten_bind_Effect_GetBooleanParameter_1"]=function(){return(_emscripten_bind_Effect_GetBooleanParameter_1=Module["_emscripten_bind_Effect_GetBooleanParameter_1"]=Module["asm"]["Bo"]).apply(null,arguments)};var _emscripten_bind_Effect_HasBooleanParameter_1=Module["_emscripten_bind_Effect_HasBooleanParameter_1"]=function(){return(_emscripten_bind_Effect_HasBooleanParameter_1=Module["_emscripten_bind_Effect_HasBooleanParameter_1"]=Module["asm"]["Co"]).apply(null,arguments)};var _emscripten_bind_Effect_GetAllDoubleParameters_0=Module["_emscripten_bind_Effect_GetAllDoubleParameters_0"]=function(){return(_emscripten_bind_Effect_GetAllDoubleParameters_0=Module["_emscripten_bind_Effect_GetAllDoubleParameters_0"]=Module["asm"]["Do"]).apply(null,arguments)};var _emscripten_bind_Effect_GetAllStringParameters_0=Module["_emscripten_bind_Effect_GetAllStringParameters_0"]=function(){return(_emscripten_bind_Effect_GetAllStringParameters_0=Module["_emscripten_bind_Effect_GetAllStringParameters_0"]=Module["asm"]["Eo"]).apply(null,arguments)};var _emscripten_bind_Effect_GetAllBooleanParameters_0=Module["_emscripten_bind_Effect_GetAllBooleanParameters_0"]=function(){return(_emscripten_bind_Effect_GetAllBooleanParameters_0=Module["_emscripten_bind_Effect_GetAllBooleanParameters_0"]=Module["asm"]["Fo"]).apply(null,arguments)};var _emscripten_bind_Effect_ClearParameters_0=Module["_emscripten_bind_Effect_ClearParameters_0"]=function(){return(_emscripten_bind_Effect_ClearParameters_0=Module["_emscripten_bind_Effect_ClearParameters_0"]=Module["asm"]["Go"]).apply(null,arguments)};var _emscripten_bind_Effect_SerializeTo_1=Module["_emscripten_bind_Effect_SerializeTo_1"]=function(){return(_emscripten_bind_Effect_SerializeTo_1=Module["_emscripten_bind_Effect_SerializeTo_1"]=Module["asm"]["Ho"]).apply(null,arguments)};var _emscripten_bind_Effect_UnserializeFrom_1=Module["_emscripten_bind_Effect_UnserializeFrom_1"]=function(){return(_emscripten_bind_Effect_UnserializeFrom_1=Module["_emscripten_bind_Effect_UnserializeFrom_1"]=Module["asm"]["Io"]).apply(null,arguments)};var _emscripten_bind_Effect___destroy___0=Module["_emscripten_bind_Effect___destroy___0"]=function(){return(_emscripten_bind_Effect___destroy___0=Module["_emscripten_bind_Effect___destroy___0"]=Module["asm"]["Jo"]).apply(null,arguments)};var _emscripten_bind_EffectsContainer_EffectsContainer_0=Module["_emscripten_bind_EffectsContainer_EffectsContainer_0"]=function(){return(_emscripten_bind_EffectsContainer_EffectsContainer_0=Module["_emscripten_bind_EffectsContainer_EffectsContainer_0"]=Module["asm"]["Ko"]).apply(null,arguments)};var _emscripten_bind_EffectsContainer_HasEffectNamed_1=Module["_emscripten_bind_EffectsContainer_HasEffectNamed_1"]=function(){return(_emscripten_bind_EffectsContainer_HasEffectNamed_1=Module["_emscripten_bind_EffectsContainer_HasEffectNamed_1"]=Module["asm"]["Lo"]).apply(null,arguments)};var _emscripten_bind_EffectsContainer_GetEffect_1=Module["_emscripten_bind_EffectsContainer_GetEffect_1"]=function(){return(_emscripten_bind_EffectsContainer_GetEffect_1=Module["_emscripten_bind_EffectsContainer_GetEffect_1"]=Module["asm"]["Mo"]).apply(null,arguments)};var _emscripten_bind_EffectsContainer_GetEffectAt_1=Module["_emscripten_bind_EffectsContainer_GetEffectAt_1"]=function(){return(_emscripten_bind_EffectsContainer_GetEffectAt_1=Module["_emscripten_bind_EffectsContainer_GetEffectAt_1"]=Module["asm"]["No"]).apply(null,arguments)};var _emscripten_bind_EffectsContainer_GetEffectPosition_1=Module["_emscripten_bind_EffectsContainer_GetEffectPosition_1"]=function(){return(_emscripten_bind_EffectsContainer_GetEffectPosition_1=Module["_emscripten_bind_EffectsContainer_GetEffectPosition_1"]=Module["asm"]["Oo"]).apply(null,arguments)};var _emscripten_bind_EffectsContainer_GetEffectsCount_0=Module["_emscripten_bind_EffectsContainer_GetEffectsCount_0"]=function(){return(_emscripten_bind_EffectsContainer_GetEffectsCount_0=Module["_emscripten_bind_EffectsContainer_GetEffectsCount_0"]=Module["asm"]["Po"]).apply(null,arguments)};var _emscripten_bind_EffectsContainer_InsertNewEffect_2=Module["_emscripten_bind_EffectsContainer_InsertNewEffect_2"]=function(){return(_emscripten_bind_EffectsContainer_InsertNewEffect_2=Module["_emscripten_bind_EffectsContainer_InsertNewEffect_2"]=Module["asm"]["Qo"]).apply(null,arguments)};var _emscripten_bind_EffectsContainer_InsertEffect_2=Module["_emscripten_bind_EffectsContainer_InsertEffect_2"]=function(){return(_emscripten_bind_EffectsContainer_InsertEffect_2=Module["_emscripten_bind_EffectsContainer_InsertEffect_2"]=Module["asm"]["Ro"]).apply(null,arguments)};var _emscripten_bind_EffectsContainer_RemoveEffect_1=Module["_emscripten_bind_EffectsContainer_RemoveEffect_1"]=function(){return(_emscripten_bind_EffectsContainer_RemoveEffect_1=Module["_emscripten_bind_EffectsContainer_RemoveEffect_1"]=Module["asm"]["So"]).apply(null,arguments)};var _emscripten_bind_EffectsContainer_SwapEffects_2=Module["_emscripten_bind_EffectsContainer_SwapEffects_2"]=function(){return(_emscripten_bind_EffectsContainer_SwapEffects_2=Module["_emscripten_bind_EffectsContainer_SwapEffects_2"]=Module["asm"]["To"]).apply(null,arguments)};var _emscripten_bind_EffectsContainer_MoveEffect_2=Module["_emscripten_bind_EffectsContainer_MoveEffect_2"]=function(){return(_emscripten_bind_EffectsContainer_MoveEffect_2=Module["_emscripten_bind_EffectsContainer_MoveEffect_2"]=Module["asm"]["Uo"]).apply(null,arguments)};var _emscripten_bind_EffectsContainer_Clear_0=Module["_emscripten_bind_EffectsContainer_Clear_0"]=function(){return(_emscripten_bind_EffectsContainer_Clear_0=Module["_emscripten_bind_EffectsContainer_Clear_0"]=Module["asm"]["Vo"]).apply(null,arguments)};var _emscripten_bind_EffectsContainer_SerializeTo_1=Module["_emscripten_bind_EffectsContainer_SerializeTo_1"]=function(){return(_emscripten_bind_EffectsContainer_SerializeTo_1=Module["_emscripten_bind_EffectsContainer_SerializeTo_1"]=Module["asm"]["Wo"]).apply(null,arguments)};var _emscripten_bind_EffectsContainer_UnserializeFrom_1=Module["_emscripten_bind_EffectsContainer_UnserializeFrom_1"]=function(){return(_emscripten_bind_EffectsContainer_UnserializeFrom_1=Module["_emscripten_bind_EffectsContainer_UnserializeFrom_1"]=Module["asm"]["Xo"]).apply(null,arguments)};var _emscripten_bind_EffectsContainer___destroy___0=Module["_emscripten_bind_EffectsContainer___destroy___0"]=function(){return(_emscripten_bind_EffectsContainer___destroy___0=Module["_emscripten_bind_EffectsContainer___destroy___0"]=Module["asm"]["Yo"]).apply(null,arguments)};var _emscripten_bind_Layer_Layer_0=Module["_emscripten_bind_Layer_Layer_0"]=function(){return(_emscripten_bind_Layer_Layer_0=Module["_emscripten_bind_Layer_Layer_0"]=Module["asm"]["Zo"]).apply(null,arguments)};var _emscripten_bind_Layer_SetName_1=Module["_emscripten_bind_Layer_SetName_1"]=function(){return(_emscripten_bind_Layer_SetName_1=Module["_emscripten_bind_Layer_SetName_1"]=Module["asm"]["_o"]).apply(null,arguments)};var _emscripten_bind_Layer_GetName_0=Module["_emscripten_bind_Layer_GetName_0"]=function(){return(_emscripten_bind_Layer_GetName_0=Module["_emscripten_bind_Layer_GetName_0"]=Module["asm"]["$o"]).apply(null,arguments)};var _emscripten_bind_Layer_SetRenderingType_1=Module["_emscripten_bind_Layer_SetRenderingType_1"]=function(){return(_emscripten_bind_Layer_SetRenderingType_1=Module["_emscripten_bind_Layer_SetRenderingType_1"]=Module["asm"]["ap"]).apply(null,arguments)};var _emscripten_bind_Layer_GetRenderingType_0=Module["_emscripten_bind_Layer_GetRenderingType_0"]=function(){return(_emscripten_bind_Layer_GetRenderingType_0=Module["_emscripten_bind_Layer_GetRenderingType_0"]=Module["asm"]["bp"]).apply(null,arguments)};var _emscripten_bind_Layer_SetCameraType_1=Module["_emscripten_bind_Layer_SetCameraType_1"]=function(){return(_emscripten_bind_Layer_SetCameraType_1=Module["_emscripten_bind_Layer_SetCameraType_1"]=Module["asm"]["cp"]).apply(null,arguments)};var _emscripten_bind_Layer_GetCameraType_0=Module["_emscripten_bind_Layer_GetCameraType_0"]=function(){return(_emscripten_bind_Layer_GetCameraType_0=Module["_emscripten_bind_Layer_GetCameraType_0"]=Module["asm"]["dp"]).apply(null,arguments)};var _emscripten_bind_Layer_SetDefaultCameraBehavior_1=Module["_emscripten_bind_Layer_SetDefaultCameraBehavior_1"]=function(){return(_emscripten_bind_Layer_SetDefaultCameraBehavior_1=Module["_emscripten_bind_Layer_SetDefaultCameraBehavior_1"]=Module["asm"]["ep"]).apply(null,arguments)};var _emscripten_bind_Layer_GetDefaultCameraBehavior_0=Module["_emscripten_bind_Layer_GetDefaultCameraBehavior_0"]=function(){return(_emscripten_bind_Layer_GetDefaultCameraBehavior_0=Module["_emscripten_bind_Layer_GetDefaultCameraBehavior_0"]=Module["asm"]["fp"]).apply(null,arguments)};var _emscripten_bind_Layer_SetVisibility_1=Module["_emscripten_bind_Layer_SetVisibility_1"]=function(){return(_emscripten_bind_Layer_SetVisibility_1=Module["_emscripten_bind_Layer_SetVisibility_1"]=Module["asm"]["gp"]).apply(null,arguments)};var _emscripten_bind_Layer_GetVisibility_0=Module["_emscripten_bind_Layer_GetVisibility_0"]=function(){return(_emscripten_bind_Layer_GetVisibility_0=Module["_emscripten_bind_Layer_GetVisibility_0"]=Module["asm"]["hp"]).apply(null,arguments)};var _emscripten_bind_Layer_SetLocked_1=Module["_emscripten_bind_Layer_SetLocked_1"]=function(){return(_emscripten_bind_Layer_SetLocked_1=Module["_emscripten_bind_Layer_SetLocked_1"]=Module["asm"]["ip"]).apply(null,arguments)};var _emscripten_bind_Layer_IsLocked_0=Module["_emscripten_bind_Layer_IsLocked_0"]=function(){return(_emscripten_bind_Layer_IsLocked_0=Module["_emscripten_bind_Layer_IsLocked_0"]=Module["asm"]["jp"]).apply(null,arguments)};var _emscripten_bind_Layer_SetLightingLayer_1=Module["_emscripten_bind_Layer_SetLightingLayer_1"]=function(){return(_emscripten_bind_Layer_SetLightingLayer_1=Module["_emscripten_bind_Layer_SetLightingLayer_1"]=Module["asm"]["kp"]).apply(null,arguments)};var _emscripten_bind_Layer_IsLightingLayer_0=Module["_emscripten_bind_Layer_IsLightingLayer_0"]=function(){return(_emscripten_bind_Layer_IsLightingLayer_0=Module["_emscripten_bind_Layer_IsLightingLayer_0"]=Module["asm"]["lp"]).apply(null,arguments)};var _emscripten_bind_Layer_SetFollowBaseLayerCamera_1=Module["_emscripten_bind_Layer_SetFollowBaseLayerCamera_1"]=function(){return(_emscripten_bind_Layer_SetFollowBaseLayerCamera_1=Module["_emscripten_bind_Layer_SetFollowBaseLayerCamera_1"]=Module["asm"]["mp"]).apply(null,arguments)};var _emscripten_bind_Layer_IsFollowingBaseLayerCamera_0=Module["_emscripten_bind_Layer_IsFollowingBaseLayerCamera_0"]=function(){return(_emscripten_bind_Layer_IsFollowingBaseLayerCamera_0=Module["_emscripten_bind_Layer_IsFollowingBaseLayerCamera_0"]=Module["asm"]["np"]).apply(null,arguments)};var _emscripten_bind_Layer_GetCamera3DNearPlaneDistance_0=Module["_emscripten_bind_Layer_GetCamera3DNearPlaneDistance_0"]=function(){return(_emscripten_bind_Layer_GetCamera3DNearPlaneDistance_0=Module["_emscripten_bind_Layer_GetCamera3DNearPlaneDistance_0"]=Module["asm"]["op"]).apply(null,arguments)};var _emscripten_bind_Layer_SetCamera3DNearPlaneDistance_1=Module["_emscripten_bind_Layer_SetCamera3DNearPlaneDistance_1"]=function(){return(_emscripten_bind_Layer_SetCamera3DNearPlaneDistance_1=Module["_emscripten_bind_Layer_SetCamera3DNearPlaneDistance_1"]=Module["asm"]["pp"]).apply(null,arguments)};var _emscripten_bind_Layer_GetCamera3DFarPlaneDistance_0=Module["_emscripten_bind_Layer_GetCamera3DFarPlaneDistance_0"]=function(){return(_emscripten_bind_Layer_GetCamera3DFarPlaneDistance_0=Module["_emscripten_bind_Layer_GetCamera3DFarPlaneDistance_0"]=Module["asm"]["qp"]).apply(null,arguments)};var _emscripten_bind_Layer_SetCamera3DFarPlaneDistance_1=Module["_emscripten_bind_Layer_SetCamera3DFarPlaneDistance_1"]=function(){return(_emscripten_bind_Layer_SetCamera3DFarPlaneDistance_1=Module["_emscripten_bind_Layer_SetCamera3DFarPlaneDistance_1"]=Module["asm"]["rp"]).apply(null,arguments)};var _emscripten_bind_Layer_GetCamera3DFieldOfView_0=Module["_emscripten_bind_Layer_GetCamera3DFieldOfView_0"]=function(){return(_emscripten_bind_Layer_GetCamera3DFieldOfView_0=Module["_emscripten_bind_Layer_GetCamera3DFieldOfView_0"]=Module["asm"]["sp"]).apply(null,arguments)};var _emscripten_bind_Layer_SetCamera3DFieldOfView_1=Module["_emscripten_bind_Layer_SetCamera3DFieldOfView_1"]=function(){return(_emscripten_bind_Layer_SetCamera3DFieldOfView_1=Module["_emscripten_bind_Layer_SetCamera3DFieldOfView_1"]=Module["asm"]["tp"]).apply(null,arguments)};var _emscripten_bind_Layer_GetCamera2DPlaneMaxDrawingDistance_0=Module["_emscripten_bind_Layer_GetCamera2DPlaneMaxDrawingDistance_0"]=function(){return(_emscripten_bind_Layer_GetCamera2DPlaneMaxDrawingDistance_0=Module["_emscripten_bind_Layer_GetCamera2DPlaneMaxDrawingDistance_0"]=Module["asm"]["up"]).apply(null,arguments)};var _emscripten_bind_Layer_SetCamera2DPlaneMaxDrawingDistance_1=Module["_emscripten_bind_Layer_SetCamera2DPlaneMaxDrawingDistance_1"]=function(){return(_emscripten_bind_Layer_SetCamera2DPlaneMaxDrawingDistance_1=Module["_emscripten_bind_Layer_SetCamera2DPlaneMaxDrawingDistance_1"]=Module["asm"]["vp"]).apply(null,arguments)};var _emscripten_bind_Layer_SetAmbientLightColor_3=Module["_emscripten_bind_Layer_SetAmbientLightColor_3"]=function(){return(_emscripten_bind_Layer_SetAmbientLightColor_3=Module["_emscripten_bind_Layer_SetAmbientLightColor_3"]=Module["asm"]["wp"]).apply(null,arguments)};var _emscripten_bind_Layer_GetAmbientLightColorRed_0=Module["_emscripten_bind_Layer_GetAmbientLightColorRed_0"]=function(){return(_emscripten_bind_Layer_GetAmbientLightColorRed_0=Module["_emscripten_bind_Layer_GetAmbientLightColorRed_0"]=Module["asm"]["xp"]).apply(null,arguments)};var _emscripten_bind_Layer_GetAmbientLightColorGreen_0=Module["_emscripten_bind_Layer_GetAmbientLightColorGreen_0"]=function(){return(_emscripten_bind_Layer_GetAmbientLightColorGreen_0=Module["_emscripten_bind_Layer_GetAmbientLightColorGreen_0"]=Module["asm"]["yp"]).apply(null,arguments)};var _emscripten_bind_Layer_GetAmbientLightColorBlue_0=Module["_emscripten_bind_Layer_GetAmbientLightColorBlue_0"]=function(){return(_emscripten_bind_Layer_GetAmbientLightColorBlue_0=Module["_emscripten_bind_Layer_GetAmbientLightColorBlue_0"]=Module["asm"]["zp"]).apply(null,arguments)};var _emscripten_bind_Layer_GetEffects_0=Module["_emscripten_bind_Layer_GetEffects_0"]=function(){return(_emscripten_bind_Layer_GetEffects_0=Module["_emscripten_bind_Layer_GetEffects_0"]=Module["asm"]["Ap"]).apply(null,arguments)};var _emscripten_bind_Layer_GetCameraCount_0=Module["_emscripten_bind_Layer_GetCameraCount_0"]=function(){return(_emscripten_bind_Layer_GetCameraCount_0=Module["_emscripten_bind_Layer_GetCameraCount_0"]=Module["asm"]["Bp"]).apply(null,arguments)};var _emscripten_bind_Layer_SetCameraCount_1=Module["_emscripten_bind_Layer_SetCameraCount_1"]=function(){return(_emscripten_bind_Layer_SetCameraCount_1=Module["_emscripten_bind_Layer_SetCameraCount_1"]=Module["asm"]["Cp"]).apply(null,arguments)};var _emscripten_bind_Layer_SerializeTo_1=Module["_emscripten_bind_Layer_SerializeTo_1"]=function(){return(_emscripten_bind_Layer_SerializeTo_1=Module["_emscripten_bind_Layer_SerializeTo_1"]=Module["asm"]["Dp"]).apply(null,arguments)};var _emscripten_bind_Layer_UnserializeFrom_1=Module["_emscripten_bind_Layer_UnserializeFrom_1"]=function(){return(_emscripten_bind_Layer_UnserializeFrom_1=Module["_emscripten_bind_Layer_UnserializeFrom_1"]=Module["asm"]["Ep"]).apply(null,arguments)};var _emscripten_bind_Layer___destroy___0=Module["_emscripten_bind_Layer___destroy___0"]=function(){return(_emscripten_bind_Layer___destroy___0=Module["_emscripten_bind_Layer___destroy___0"]=Module["asm"]["Fp"]).apply(null,arguments)};var _emscripten_bind_LayersContainer_InsertNewLayer_2=Module["_emscripten_bind_LayersContainer_InsertNewLayer_2"]=function(){return(_emscripten_bind_LayersContainer_InsertNewLayer_2=Module["_emscripten_bind_LayersContainer_InsertNewLayer_2"]=Module["asm"]["Gp"]).apply(null,arguments)};var _emscripten_bind_LayersContainer_InsertLayer_2=Module["_emscripten_bind_LayersContainer_InsertLayer_2"]=function(){return(_emscripten_bind_LayersContainer_InsertLayer_2=Module["_emscripten_bind_LayersContainer_InsertLayer_2"]=Module["asm"]["Hp"]).apply(null,arguments)};var _emscripten_bind_LayersContainer_GetLayer_1=Module["_emscripten_bind_LayersContainer_GetLayer_1"]=function(){return(_emscripten_bind_LayersContainer_GetLayer_1=Module["_emscripten_bind_LayersContainer_GetLayer_1"]=Module["asm"]["Ip"]).apply(null,arguments)};var _emscripten_bind_LayersContainer_GetLayerAt_1=Module["_emscripten_bind_LayersContainer_GetLayerAt_1"]=function(){return(_emscripten_bind_LayersContainer_GetLayerAt_1=Module["_emscripten_bind_LayersContainer_GetLayerAt_1"]=Module["asm"]["Jp"]).apply(null,arguments)};var _emscripten_bind_LayersContainer_HasLayerNamed_1=Module["_emscripten_bind_LayersContainer_HasLayerNamed_1"]=function(){return(_emscripten_bind_LayersContainer_HasLayerNamed_1=Module["_emscripten_bind_LayersContainer_HasLayerNamed_1"]=Module["asm"]["Kp"]).apply(null,arguments)};var _emscripten_bind_LayersContainer_RemoveLayer_1=Module["_emscripten_bind_LayersContainer_RemoveLayer_1"]=function(){return(_emscripten_bind_LayersContainer_RemoveLayer_1=Module["_emscripten_bind_LayersContainer_RemoveLayer_1"]=Module["asm"]["Lp"]).apply(null,arguments)};var _emscripten_bind_LayersContainer_GetLayersCount_0=Module["_emscripten_bind_LayersContainer_GetLayersCount_0"]=function(){return(_emscripten_bind_LayersContainer_GetLayersCount_0=Module["_emscripten_bind_LayersContainer_GetLayersCount_0"]=Module["asm"]["Mp"]).apply(null,arguments)};var _emscripten_bind_LayersContainer_GetLayerPosition_1=Module["_emscripten_bind_LayersContainer_GetLayerPosition_1"]=function(){return(_emscripten_bind_LayersContainer_GetLayerPosition_1=Module["_emscripten_bind_LayersContainer_GetLayerPosition_1"]=Module["asm"]["Np"]).apply(null,arguments)};var _emscripten_bind_LayersContainer_SwapLayers_2=Module["_emscripten_bind_LayersContainer_SwapLayers_2"]=function(){return(_emscripten_bind_LayersContainer_SwapLayers_2=Module["_emscripten_bind_LayersContainer_SwapLayers_2"]=Module["asm"]["Op"]).apply(null,arguments)};var _emscripten_bind_LayersContainer_MoveLayer_2=Module["_emscripten_bind_LayersContainer_MoveLayer_2"]=function(){return(_emscripten_bind_LayersContainer_MoveLayer_2=Module["_emscripten_bind_LayersContainer_MoveLayer_2"]=Module["asm"]["Pp"]).apply(null,arguments)};var _emscripten_bind_LayersContainer_SerializeLayersTo_1=Module["_emscripten_bind_LayersContainer_SerializeLayersTo_1"]=function(){return(_emscripten_bind_LayersContainer_SerializeLayersTo_1=Module["_emscripten_bind_LayersContainer_SerializeLayersTo_1"]=Module["asm"]["Qp"]).apply(null,arguments)};var _emscripten_bind_LayersContainer_UnserializeLayersFrom_1=Module["_emscripten_bind_LayersContainer_UnserializeLayersFrom_1"]=function(){return(_emscripten_bind_LayersContainer_UnserializeLayersFrom_1=Module["_emscripten_bind_LayersContainer_UnserializeLayersFrom_1"]=Module["asm"]["Rp"]).apply(null,arguments)};var _emscripten_bind_LayersContainer___destroy___0=Module["_emscripten_bind_LayersContainer___destroy___0"]=function(){return(_emscripten_bind_LayersContainer___destroy___0=Module["_emscripten_bind_LayersContainer___destroy___0"]=Module["asm"]["Sp"]).apply(null,arguments)};var _emscripten_bind_PropertyDescriptorChoice_PropertyDescriptorChoice_2=Module["_emscripten_bind_PropertyDescriptorChoice_PropertyDescriptorChoice_2"]=function(){return(_emscripten_bind_PropertyDescriptorChoice_PropertyDescriptorChoice_2=Module["_emscripten_bind_PropertyDescriptorChoice_PropertyDescriptorChoice_2"]=Module["asm"]["Tp"]).apply(null,arguments)};var _emscripten_bind_PropertyDescriptorChoice_GetValue_0=Module["_emscripten_bind_PropertyDescriptorChoice_GetValue_0"]=function(){return(_emscripten_bind_PropertyDescriptorChoice_GetValue_0=Module["_emscripten_bind_PropertyDescriptorChoice_GetValue_0"]=Module["asm"]["Up"]).apply(null,arguments)};var _emscripten_bind_PropertyDescriptorChoice_GetLabel_0=Module["_emscripten_bind_PropertyDescriptorChoice_GetLabel_0"]=function(){return(_emscripten_bind_PropertyDescriptorChoice_GetLabel_0=Module["_emscripten_bind_PropertyDescriptorChoice_GetLabel_0"]=Module["asm"]["Vp"]).apply(null,arguments)};var _emscripten_bind_PropertyDescriptorChoice___destroy___0=Module["_emscripten_bind_PropertyDescriptorChoice___destroy___0"]=function(){return(_emscripten_bind_PropertyDescriptorChoice___destroy___0=Module["_emscripten_bind_PropertyDescriptorChoice___destroy___0"]=Module["asm"]["Wp"]).apply(null,arguments)};var _emscripten_bind_VectorPropertyDescriptorChoice_size_0=Module["_emscripten_bind_VectorPropertyDescriptorChoice_size_0"]=function(){return(_emscripten_bind_VectorPropertyDescriptorChoice_size_0=Module["_emscripten_bind_VectorPropertyDescriptorChoice_size_0"]=Module["asm"]["Xp"]).apply(null,arguments)};var _emscripten_bind_VectorPropertyDescriptorChoice_at_1=Module["_emscripten_bind_VectorPropertyDescriptorChoice_at_1"]=function(){return(_emscripten_bind_VectorPropertyDescriptorChoice_at_1=Module["_emscripten_bind_VectorPropertyDescriptorChoice_at_1"]=Module["asm"]["Yp"]).apply(null,arguments)};var _emscripten_bind_VectorPropertyDescriptorChoice___destroy___0=Module["_emscripten_bind_VectorPropertyDescriptorChoice___destroy___0"]=function(){return(_emscripten_bind_VectorPropertyDescriptorChoice___destroy___0=Module["_emscripten_bind_VectorPropertyDescriptorChoice___destroy___0"]=Module["asm"]["Zp"]).apply(null,arguments)};var _emscripten_bind_MeasurementUnit_MeasurementUnit_3=Module["_emscripten_bind_MeasurementUnit_MeasurementUnit_3"]=function(){return(_emscripten_bind_MeasurementUnit_MeasurementUnit_3=Module["_emscripten_bind_MeasurementUnit_MeasurementUnit_3"]=Module["asm"]["_p"]).apply(null,arguments)};var _emscripten_bind_MeasurementUnit_GetName_0=Module["_emscripten_bind_MeasurementUnit_GetName_0"]=function(){return(_emscripten_bind_MeasurementUnit_GetName_0=Module["_emscripten_bind_MeasurementUnit_GetName_0"]=Module["asm"]["$p"]).apply(null,arguments)};var _emscripten_bind_MeasurementUnit_GetLabel_0=Module["_emscripten_bind_MeasurementUnit_GetLabel_0"]=function(){return(_emscripten_bind_MeasurementUnit_GetLabel_0=Module["_emscripten_bind_MeasurementUnit_GetLabel_0"]=Module["asm"]["aq"]).apply(null,arguments)};var _emscripten_bind_MeasurementUnit_GetDescription_0=Module["_emscripten_bind_MeasurementUnit_GetDescription_0"]=function(){return(_emscripten_bind_MeasurementUnit_GetDescription_0=Module["_emscripten_bind_MeasurementUnit_GetDescription_0"]=Module["asm"]["bq"]).apply(null,arguments)};var _emscripten_bind_MeasurementUnit_GetElementsWithWords_0=Module["_emscripten_bind_MeasurementUnit_GetElementsWithWords_0"]=function(){return(_emscripten_bind_MeasurementUnit_GetElementsWithWords_0=Module["_emscripten_bind_MeasurementUnit_GetElementsWithWords_0"]=Module["asm"]["cq"]).apply(null,arguments)};var _emscripten_bind_MeasurementUnit_GetElementsCount_0=Module["_emscripten_bind_MeasurementUnit_GetElementsCount_0"]=function(){return(_emscripten_bind_MeasurementUnit_GetElementsCount_0=Module["_emscripten_bind_MeasurementUnit_GetElementsCount_0"]=Module["asm"]["dq"]).apply(null,arguments)};var _emscripten_bind_MeasurementUnit_GetElementPower_1=Module["_emscripten_bind_MeasurementUnit_GetElementPower_1"]=function(){return(_emscripten_bind_MeasurementUnit_GetElementPower_1=Module["_emscripten_bind_MeasurementUnit_GetElementPower_1"]=Module["asm"]["eq"]).apply(null,arguments)};var _emscripten_bind_MeasurementUnit_GetElementBaseUnit_1=Module["_emscripten_bind_MeasurementUnit_GetElementBaseUnit_1"]=function(){return(_emscripten_bind_MeasurementUnit_GetElementBaseUnit_1=Module["_emscripten_bind_MeasurementUnit_GetElementBaseUnit_1"]=Module["asm"]["fq"]).apply(null,arguments)};var _emscripten_bind_MeasurementUnit_IsUndefined_0=Module["_emscripten_bind_MeasurementUnit_IsUndefined_0"]=function(){return(_emscripten_bind_MeasurementUnit_IsUndefined_0=Module["_emscripten_bind_MeasurementUnit_IsUndefined_0"]=Module["asm"]["gq"]).apply(null,arguments)};var _emscripten_bind_MeasurementUnit_STATIC_ApplyTranslation_0=Module["_emscripten_bind_MeasurementUnit_STATIC_ApplyTranslation_0"]=function(){return(_emscripten_bind_MeasurementUnit_STATIC_ApplyTranslation_0=Module["_emscripten_bind_MeasurementUnit_STATIC_ApplyTranslation_0"]=Module["asm"]["hq"]).apply(null,arguments)};var _emscripten_bind_MeasurementUnit_STATIC_GetUndefined_0=Module["_emscripten_bind_MeasurementUnit_STATIC_GetUndefined_0"]=function(){return(_emscripten_bind_MeasurementUnit_STATIC_GetUndefined_0=Module["_emscripten_bind_MeasurementUnit_STATIC_GetUndefined_0"]=Module["asm"]["iq"]).apply(null,arguments)};var _emscripten_bind_MeasurementUnit_STATIC_GetDimensionless_0=Module["_emscripten_bind_MeasurementUnit_STATIC_GetDimensionless_0"]=function(){return(_emscripten_bind_MeasurementUnit_STATIC_GetDimensionless_0=Module["_emscripten_bind_MeasurementUnit_STATIC_GetDimensionless_0"]=Module["asm"]["jq"]).apply(null,arguments)};var _emscripten_bind_MeasurementUnit_STATIC_GetDegreeAngle_0=Module["_emscripten_bind_MeasurementUnit_STATIC_GetDegreeAngle_0"]=function(){return(_emscripten_bind_MeasurementUnit_STATIC_GetDegreeAngle_0=Module["_emscripten_bind_MeasurementUnit_STATIC_GetDegreeAngle_0"]=Module["asm"]["kq"]).apply(null,arguments)};var _emscripten_bind_MeasurementUnit_STATIC_GetSecond_0=Module["_emscripten_bind_MeasurementUnit_STATIC_GetSecond_0"]=function(){return(_emscripten_bind_MeasurementUnit_STATIC_GetSecond_0=Module["_emscripten_bind_MeasurementUnit_STATIC_GetSecond_0"]=Module["asm"]["lq"]).apply(null,arguments)};var _emscripten_bind_MeasurementUnit_STATIC_GetPixel_0=Module["_emscripten_bind_MeasurementUnit_STATIC_GetPixel_0"]=function(){return(_emscripten_bind_MeasurementUnit_STATIC_GetPixel_0=Module["_emscripten_bind_MeasurementUnit_STATIC_GetPixel_0"]=Module["asm"]["mq"]).apply(null,arguments)};var _emscripten_bind_MeasurementUnit_STATIC_GetPixelSpeed_0=Module["_emscripten_bind_MeasurementUnit_STATIC_GetPixelSpeed_0"]=function(){return(_emscripten_bind_MeasurementUnit_STATIC_GetPixelSpeed_0=Module["_emscripten_bind_MeasurementUnit_STATIC_GetPixelSpeed_0"]=Module["asm"]["nq"]).apply(null,arguments)};var _emscripten_bind_MeasurementUnit_STATIC_GetPixelAcceleration_0=Module["_emscripten_bind_MeasurementUnit_STATIC_GetPixelAcceleration_0"]=function(){return(_emscripten_bind_MeasurementUnit_STATIC_GetPixelAcceleration_0=Module["_emscripten_bind_MeasurementUnit_STATIC_GetPixelAcceleration_0"]=Module["asm"]["oq"]).apply(null,arguments)};var _emscripten_bind_MeasurementUnit_STATIC_GetAngularSpeed_0=Module["_emscripten_bind_MeasurementUnit_STATIC_GetAngularSpeed_0"]=function(){return(_emscripten_bind_MeasurementUnit_STATIC_GetAngularSpeed_0=Module["_emscripten_bind_MeasurementUnit_STATIC_GetAngularSpeed_0"]=Module["asm"]["pq"]).apply(null,arguments)};var _emscripten_bind_MeasurementUnit_STATIC_GetNewton_0=Module["_emscripten_bind_MeasurementUnit_STATIC_GetNewton_0"]=function(){return(_emscripten_bind_MeasurementUnit_STATIC_GetNewton_0=Module["_emscripten_bind_MeasurementUnit_STATIC_GetNewton_0"]=Module["asm"]["qq"]).apply(null,arguments)};var _emscripten_bind_MeasurementUnit_STATIC_GetDefaultMeasurementUnitsCount_0=Module["_emscripten_bind_MeasurementUnit_STATIC_GetDefaultMeasurementUnitsCount_0"]=function(){return(_emscripten_bind_MeasurementUnit_STATIC_GetDefaultMeasurementUnitsCount_0=Module["_emscripten_bind_MeasurementUnit_STATIC_GetDefaultMeasurementUnitsCount_0"]=Module["asm"]["rq"]).apply(null,arguments)};var _emscripten_bind_MeasurementUnit_STATIC_GetDefaultMeasurementUnitAtIndex_1=Module["_emscripten_bind_MeasurementUnit_STATIC_GetDefaultMeasurementUnitAtIndex_1"]=function(){return(_emscripten_bind_MeasurementUnit_STATIC_GetDefaultMeasurementUnitAtIndex_1=Module["_emscripten_bind_MeasurementUnit_STATIC_GetDefaultMeasurementUnitAtIndex_1"]=Module["asm"]["sq"]).apply(null,arguments)};var _emscripten_bind_MeasurementUnit_STATIC_GetDefaultMeasurementUnitByName_1=Module["_emscripten_bind_MeasurementUnit_STATIC_GetDefaultMeasurementUnitByName_1"]=function(){return(_emscripten_bind_MeasurementUnit_STATIC_GetDefaultMeasurementUnitByName_1=Module["_emscripten_bind_MeasurementUnit_STATIC_GetDefaultMeasurementUnitByName_1"]=Module["asm"]["tq"]).apply(null,arguments)};var _emscripten_bind_MeasurementUnit_STATIC_HasDefaultMeasurementUnitNamed_1=Module["_emscripten_bind_MeasurementUnit_STATIC_HasDefaultMeasurementUnitNamed_1"]=function(){return(_emscripten_bind_MeasurementUnit_STATIC_HasDefaultMeasurementUnitNamed_1=Module["_emscripten_bind_MeasurementUnit_STATIC_HasDefaultMeasurementUnitNamed_1"]=Module["asm"]["uq"]).apply(null,arguments)};var _emscripten_bind_MeasurementUnit___destroy___0=Module["_emscripten_bind_MeasurementUnit___destroy___0"]=function(){return(_emscripten_bind_MeasurementUnit___destroy___0=Module["_emscripten_bind_MeasurementUnit___destroy___0"]=Module["asm"]["vq"]).apply(null,arguments)};var _emscripten_bind_MeasurementBaseUnit_MeasurementBaseUnit_3=Module["_emscripten_bind_MeasurementBaseUnit_MeasurementBaseUnit_3"]=function(){return(_emscripten_bind_MeasurementBaseUnit_MeasurementBaseUnit_3=Module["_emscripten_bind_MeasurementBaseUnit_MeasurementBaseUnit_3"]=Module["asm"]["wq"]).apply(null,arguments)};var _emscripten_bind_MeasurementBaseUnit_GetName_0=Module["_emscripten_bind_MeasurementBaseUnit_GetName_0"]=function(){return(_emscripten_bind_MeasurementBaseUnit_GetName_0=Module["_emscripten_bind_MeasurementBaseUnit_GetName_0"]=Module["asm"]["xq"]).apply(null,arguments)};var _emscripten_bind_MeasurementBaseUnit_GetSymbol_0=Module["_emscripten_bind_MeasurementBaseUnit_GetSymbol_0"]=function(){return(_emscripten_bind_MeasurementBaseUnit_GetSymbol_0=Module["_emscripten_bind_MeasurementBaseUnit_GetSymbol_0"]=Module["asm"]["yq"]).apply(null,arguments)};var _emscripten_bind_MeasurementBaseUnit_GetQuantity_0=Module["_emscripten_bind_MeasurementBaseUnit_GetQuantity_0"]=function(){return(_emscripten_bind_MeasurementBaseUnit_GetQuantity_0=Module["_emscripten_bind_MeasurementBaseUnit_GetQuantity_0"]=Module["asm"]["zq"]).apply(null,arguments)};var _emscripten_bind_MeasurementBaseUnit___destroy___0=Module["_emscripten_bind_MeasurementBaseUnit___destroy___0"]=function(){return(_emscripten_bind_MeasurementBaseUnit___destroy___0=Module["_emscripten_bind_MeasurementBaseUnit___destroy___0"]=Module["asm"]["Aq"]).apply(null,arguments)};var _emscripten_bind_NamedPropertyDescriptor_NamedPropertyDescriptor_0=Module["_emscripten_bind_NamedPropertyDescriptor_NamedPropertyDescriptor_0"]=function(){return(_emscripten_bind_NamedPropertyDescriptor_NamedPropertyDescriptor_0=Module["_emscripten_bind_NamedPropertyDescriptor_NamedPropertyDescriptor_0"]=Module["asm"]["Bq"]).apply(null,arguments)};var _emscripten_bind_NamedPropertyDescriptor_SetName_1=Module["_emscripten_bind_NamedPropertyDescriptor_SetName_1"]=function(){return(_emscripten_bind_NamedPropertyDescriptor_SetName_1=Module["_emscripten_bind_NamedPropertyDescriptor_SetName_1"]=Module["asm"]["Cq"]).apply(null,arguments)};var _emscripten_bind_NamedPropertyDescriptor_GetName_0=Module["_emscripten_bind_NamedPropertyDescriptor_GetName_0"]=function(){return(_emscripten_bind_NamedPropertyDescriptor_GetName_0=Module["_emscripten_bind_NamedPropertyDescriptor_GetName_0"]=Module["asm"]["Dq"]).apply(null,arguments)};var _emscripten_bind_NamedPropertyDescriptor_SetValue_1=Module["_emscripten_bind_NamedPropertyDescriptor_SetValue_1"]=function(){return(_emscripten_bind_NamedPropertyDescriptor_SetValue_1=Module["_emscripten_bind_NamedPropertyDescriptor_SetValue_1"]=Module["asm"]["Eq"]).apply(null,arguments)};var _emscripten_bind_NamedPropertyDescriptor_GetValue_0=Module["_emscripten_bind_NamedPropertyDescriptor_GetValue_0"]=function(){return(_emscripten_bind_NamedPropertyDescriptor_GetValue_0=Module["_emscripten_bind_NamedPropertyDescriptor_GetValue_0"]=Module["asm"]["Fq"]).apply(null,arguments)};var _emscripten_bind_NamedPropertyDescriptor_SetType_1=Module["_emscripten_bind_NamedPropertyDescriptor_SetType_1"]=function(){return(_emscripten_bind_NamedPropertyDescriptor_SetType_1=Module["_emscripten_bind_NamedPropertyDescriptor_SetType_1"]=Module["asm"]["Gq"]).apply(null,arguments)};var _emscripten_bind_NamedPropertyDescriptor_GetType_0=Module["_emscripten_bind_NamedPropertyDescriptor_GetType_0"]=function(){return(_emscripten_bind_NamedPropertyDescriptor_GetType_0=Module["_emscripten_bind_NamedPropertyDescriptor_GetType_0"]=Module["asm"]["Hq"]).apply(null,arguments)};var _emscripten_bind_NamedPropertyDescriptor_SetLabel_1=Module["_emscripten_bind_NamedPropertyDescriptor_SetLabel_1"]=function(){return(_emscripten_bind_NamedPropertyDescriptor_SetLabel_1=Module["_emscripten_bind_NamedPropertyDescriptor_SetLabel_1"]=Module["asm"]["Iq"]).apply(null,arguments)};var _emscripten_bind_NamedPropertyDescriptor_GetLabel_0=Module["_emscripten_bind_NamedPropertyDescriptor_GetLabel_0"]=function(){return(_emscripten_bind_NamedPropertyDescriptor_GetLabel_0=Module["_emscripten_bind_NamedPropertyDescriptor_GetLabel_0"]=Module["asm"]["Jq"]).apply(null,arguments)};var _emscripten_bind_NamedPropertyDescriptor_SetDescription_1=Module["_emscripten_bind_NamedPropertyDescriptor_SetDescription_1"]=function(){return(_emscripten_bind_NamedPropertyDescriptor_SetDescription_1=Module["_emscripten_bind_NamedPropertyDescriptor_SetDescription_1"]=Module["asm"]["Kq"]).apply(null,arguments)};var _emscripten_bind_NamedPropertyDescriptor_GetDescription_0=Module["_emscripten_bind_NamedPropertyDescriptor_GetDescription_0"]=function(){return(_emscripten_bind_NamedPropertyDescriptor_GetDescription_0=Module["_emscripten_bind_NamedPropertyDescriptor_GetDescription_0"]=Module["asm"]["Lq"]).apply(null,arguments)};var _emscripten_bind_NamedPropertyDescriptor_SetGroup_1=Module["_emscripten_bind_NamedPropertyDescriptor_SetGroup_1"]=function(){return(_emscripten_bind_NamedPropertyDescriptor_SetGroup_1=Module["_emscripten_bind_NamedPropertyDescriptor_SetGroup_1"]=Module["asm"]["Mq"]).apply(null,arguments)};var _emscripten_bind_NamedPropertyDescriptor_GetGroup_0=Module["_emscripten_bind_NamedPropertyDescriptor_GetGroup_0"]=function(){return(_emscripten_bind_NamedPropertyDescriptor_GetGroup_0=Module["_emscripten_bind_NamedPropertyDescriptor_GetGroup_0"]=Module["asm"]["Nq"]).apply(null,arguments)};var _emscripten_bind_NamedPropertyDescriptor_ClearChoices_0=Module["_emscripten_bind_NamedPropertyDescriptor_ClearChoices_0"]=function(){return(_emscripten_bind_NamedPropertyDescriptor_ClearChoices_0=Module["_emscripten_bind_NamedPropertyDescriptor_ClearChoices_0"]=Module["asm"]["Oq"]).apply(null,arguments)};var _emscripten_bind_NamedPropertyDescriptor_AddChoice_2=Module["_emscripten_bind_NamedPropertyDescriptor_AddChoice_2"]=function(){return(_emscripten_bind_NamedPropertyDescriptor_AddChoice_2=Module["_emscripten_bind_NamedPropertyDescriptor_AddChoice_2"]=Module["asm"]["Pq"]).apply(null,arguments)};var _emscripten_bind_NamedPropertyDescriptor_GetChoices_0=Module["_emscripten_bind_NamedPropertyDescriptor_GetChoices_0"]=function(){return(_emscripten_bind_NamedPropertyDescriptor_GetChoices_0=Module["_emscripten_bind_NamedPropertyDescriptor_GetChoices_0"]=Module["asm"]["Qq"]).apply(null,arguments)};var _emscripten_bind_NamedPropertyDescriptor_AddExtraInfo_1=Module["_emscripten_bind_NamedPropertyDescriptor_AddExtraInfo_1"]=function(){return(_emscripten_bind_NamedPropertyDescriptor_AddExtraInfo_1=Module["_emscripten_bind_NamedPropertyDescriptor_AddExtraInfo_1"]=Module["asm"]["Rq"]).apply(null,arguments)};var _emscripten_bind_NamedPropertyDescriptor_SetExtraInfo_1=Module["_emscripten_bind_NamedPropertyDescriptor_SetExtraInfo_1"]=function(){return(_emscripten_bind_NamedPropertyDescriptor_SetExtraInfo_1=Module["_emscripten_bind_NamedPropertyDescriptor_SetExtraInfo_1"]=Module["asm"]["Sq"]).apply(null,arguments)};var _emscripten_bind_NamedPropertyDescriptor_GetExtraInfo_0=Module["_emscripten_bind_NamedPropertyDescriptor_GetExtraInfo_0"]=function(){return(_emscripten_bind_NamedPropertyDescriptor_GetExtraInfo_0=Module["_emscripten_bind_NamedPropertyDescriptor_GetExtraInfo_0"]=Module["asm"]["Tq"]).apply(null,arguments)};var _emscripten_bind_NamedPropertyDescriptor_SetHidden_1=Module["_emscripten_bind_NamedPropertyDescriptor_SetHidden_1"]=function(){return(_emscripten_bind_NamedPropertyDescriptor_SetHidden_1=Module["_emscripten_bind_NamedPropertyDescriptor_SetHidden_1"]=Module["asm"]["Uq"]).apply(null,arguments)};var _emscripten_bind_NamedPropertyDescriptor_IsHidden_0=Module["_emscripten_bind_NamedPropertyDescriptor_IsHidden_0"]=function(){return(_emscripten_bind_NamedPropertyDescriptor_IsHidden_0=Module["_emscripten_bind_NamedPropertyDescriptor_IsHidden_0"]=Module["asm"]["Vq"]).apply(null,arguments)};var _emscripten_bind_NamedPropertyDescriptor_SetDeprecated_1=Module["_emscripten_bind_NamedPropertyDescriptor_SetDeprecated_1"]=function(){return(_emscripten_bind_NamedPropertyDescriptor_SetDeprecated_1=Module["_emscripten_bind_NamedPropertyDescriptor_SetDeprecated_1"]=Module["asm"]["Wq"]).apply(null,arguments)};var _emscripten_bind_NamedPropertyDescriptor_IsDeprecated_0=Module["_emscripten_bind_NamedPropertyDescriptor_IsDeprecated_0"]=function(){return(_emscripten_bind_NamedPropertyDescriptor_IsDeprecated_0=Module["_emscripten_bind_NamedPropertyDescriptor_IsDeprecated_0"]=Module["asm"]["Xq"]).apply(null,arguments)};var _emscripten_bind_NamedPropertyDescriptor_SetAdvanced_1=Module["_emscripten_bind_NamedPropertyDescriptor_SetAdvanced_1"]=function(){return(_emscripten_bind_NamedPropertyDescriptor_SetAdvanced_1=Module["_emscripten_bind_NamedPropertyDescriptor_SetAdvanced_1"]=Module["asm"]["Yq"]).apply(null,arguments)};var _emscripten_bind_NamedPropertyDescriptor_IsAdvanced_0=Module["_emscripten_bind_NamedPropertyDescriptor_IsAdvanced_0"]=function(){return(_emscripten_bind_NamedPropertyDescriptor_IsAdvanced_0=Module["_emscripten_bind_NamedPropertyDescriptor_IsAdvanced_0"]=Module["asm"]["Zq"]).apply(null,arguments)};var _emscripten_bind_NamedPropertyDescriptor_GetMeasurementUnit_0=Module["_emscripten_bind_NamedPropertyDescriptor_GetMeasurementUnit_0"]=function(){return(_emscripten_bind_NamedPropertyDescriptor_GetMeasurementUnit_0=Module["_emscripten_bind_NamedPropertyDescriptor_GetMeasurementUnit_0"]=Module["asm"]["_q"]).apply(null,arguments)};var _emscripten_bind_NamedPropertyDescriptor_SetMeasurementUnit_1=Module["_emscripten_bind_NamedPropertyDescriptor_SetMeasurementUnit_1"]=function(){return(_emscripten_bind_NamedPropertyDescriptor_SetMeasurementUnit_1=Module["_emscripten_bind_NamedPropertyDescriptor_SetMeasurementUnit_1"]=Module["asm"]["$q"]).apply(null,arguments)};var _emscripten_bind_NamedPropertyDescriptor_HasImpactOnOtherProperties_0=Module["_emscripten_bind_NamedPropertyDescriptor_HasImpactOnOtherProperties_0"]=function(){return(_emscripten_bind_NamedPropertyDescriptor_HasImpactOnOtherProperties_0=Module["_emscripten_bind_NamedPropertyDescriptor_HasImpactOnOtherProperties_0"]=Module["asm"]["ar"]).apply(null,arguments)};var _emscripten_bind_NamedPropertyDescriptor_SetHasImpactOnOtherProperties_1=Module["_emscripten_bind_NamedPropertyDescriptor_SetHasImpactOnOtherProperties_1"]=function(){return(_emscripten_bind_NamedPropertyDescriptor_SetHasImpactOnOtherProperties_1=Module["_emscripten_bind_NamedPropertyDescriptor_SetHasImpactOnOtherProperties_1"]=Module["asm"]["br"]).apply(null,arguments)};var _emscripten_bind_NamedPropertyDescriptor_GetQuickCustomizationVisibility_0=Module["_emscripten_bind_NamedPropertyDescriptor_GetQuickCustomizationVisibility_0"]=function(){return(_emscripten_bind_NamedPropertyDescriptor_GetQuickCustomizationVisibility_0=Module["_emscripten_bind_NamedPropertyDescriptor_GetQuickCustomizationVisibility_0"]=Module["asm"]["cr"]).apply(null,arguments)};var _emscripten_bind_NamedPropertyDescriptor_SetQuickCustomizationVisibility_1=Module["_emscripten_bind_NamedPropertyDescriptor_SetQuickCustomizationVisibility_1"]=function(){return(_emscripten_bind_NamedPropertyDescriptor_SetQuickCustomizationVisibility_1=Module["_emscripten_bind_NamedPropertyDescriptor_SetQuickCustomizationVisibility_1"]=Module["asm"]["dr"]).apply(null,arguments)};var _emscripten_bind_NamedPropertyDescriptor_SerializeTo_1=Module["_emscripten_bind_NamedPropertyDescriptor_SerializeTo_1"]=function(){return(_emscripten_bind_NamedPropertyDescriptor_SerializeTo_1=Module["_emscripten_bind_NamedPropertyDescriptor_SerializeTo_1"]=Module["asm"]["er"]).apply(null,arguments)};var _emscripten_bind_NamedPropertyDescriptor_UnserializeFrom_1=Module["_emscripten_bind_NamedPropertyDescriptor_UnserializeFrom_1"]=function(){return(_emscripten_bind_NamedPropertyDescriptor_UnserializeFrom_1=Module["_emscripten_bind_NamedPropertyDescriptor_UnserializeFrom_1"]=Module["asm"]["fr"]).apply(null,arguments)};var _emscripten_bind_NamedPropertyDescriptor_SerializeValuesTo_1=Module["_emscripten_bind_NamedPropertyDescriptor_SerializeValuesTo_1"]=function(){return(_emscripten_bind_NamedPropertyDescriptor_SerializeValuesTo_1=Module["_emscripten_bind_NamedPropertyDescriptor_SerializeValuesTo_1"]=Module["asm"]["gr"]).apply(null,arguments)};var _emscripten_bind_NamedPropertyDescriptor_UnserializeValuesFrom_1=Module["_emscripten_bind_NamedPropertyDescriptor_UnserializeValuesFrom_1"]=function(){return(_emscripten_bind_NamedPropertyDescriptor_UnserializeValuesFrom_1=Module["_emscripten_bind_NamedPropertyDescriptor_UnserializeValuesFrom_1"]=Module["asm"]["hr"]).apply(null,arguments)};var _emscripten_bind_NamedPropertyDescriptor___destroy___0=Module["_emscripten_bind_NamedPropertyDescriptor___destroy___0"]=function(){return(_emscripten_bind_NamedPropertyDescriptor___destroy___0=Module["_emscripten_bind_NamedPropertyDescriptor___destroy___0"]=Module["asm"]["ir"]).apply(null,arguments)};var _emscripten_bind_MapStringPropertyDescriptor_MapStringPropertyDescriptor_0=Module["_emscripten_bind_MapStringPropertyDescriptor_MapStringPropertyDescriptor_0"]=function(){return(_emscripten_bind_MapStringPropertyDescriptor_MapStringPropertyDescriptor_0=Module["_emscripten_bind_MapStringPropertyDescriptor_MapStringPropertyDescriptor_0"]=Module["asm"]["jr"]).apply(null,arguments)};var _emscripten_bind_MapStringPropertyDescriptor_MAP_getOrCreate_1=Module["_emscripten_bind_MapStringPropertyDescriptor_MAP_getOrCreate_1"]=function(){return(_emscripten_bind_MapStringPropertyDescriptor_MAP_getOrCreate_1=Module["_emscripten_bind_MapStringPropertyDescriptor_MAP_getOrCreate_1"]=Module["asm"]["kr"]).apply(null,arguments)};var _emscripten_bind_MapStringPropertyDescriptor_MAP_get_1=Module["_emscripten_bind_MapStringPropertyDescriptor_MAP_get_1"]=function(){return(_emscripten_bind_MapStringPropertyDescriptor_MAP_get_1=Module["_emscripten_bind_MapStringPropertyDescriptor_MAP_get_1"]=Module["asm"]["lr"]).apply(null,arguments)};var _emscripten_bind_MapStringPropertyDescriptor_MAP_set_2=Module["_emscripten_bind_MapStringPropertyDescriptor_MAP_set_2"]=function(){return(_emscripten_bind_MapStringPropertyDescriptor_MAP_set_2=Module["_emscripten_bind_MapStringPropertyDescriptor_MAP_set_2"]=Module["asm"]["mr"]).apply(null,arguments)};var _emscripten_bind_MapStringPropertyDescriptor_MAP_has_1=Module["_emscripten_bind_MapStringPropertyDescriptor_MAP_has_1"]=function(){return(_emscripten_bind_MapStringPropertyDescriptor_MAP_has_1=Module["_emscripten_bind_MapStringPropertyDescriptor_MAP_has_1"]=Module["asm"]["nr"]).apply(null,arguments)};var _emscripten_bind_MapStringPropertyDescriptor_MAP_keys_0=Module["_emscripten_bind_MapStringPropertyDescriptor_MAP_keys_0"]=function(){return(_emscripten_bind_MapStringPropertyDescriptor_MAP_keys_0=Module["_emscripten_bind_MapStringPropertyDescriptor_MAP_keys_0"]=Module["asm"]["or"]).apply(null,arguments)};var _emscripten_bind_MapStringPropertyDescriptor___destroy___0=Module["_emscripten_bind_MapStringPropertyDescriptor___destroy___0"]=function(){return(_emscripten_bind_MapStringPropertyDescriptor___destroy___0=Module["_emscripten_bind_MapStringPropertyDescriptor___destroy___0"]=Module["asm"]["pr"]).apply(null,arguments)};var _emscripten_bind_MapStringSerializerValue_MapStringSerializerValue_0=Module["_emscripten_bind_MapStringSerializerValue_MapStringSerializerValue_0"]=function(){return(_emscripten_bind_MapStringSerializerValue_MapStringSerializerValue_0=Module["_emscripten_bind_MapStringSerializerValue_MapStringSerializerValue_0"]=Module["asm"]["qr"]).apply(null,arguments)};var _emscripten_bind_MapStringSerializerValue_MAP_getOrCreate_1=Module["_emscripten_bind_MapStringSerializerValue_MAP_getOrCreate_1"]=function(){return(_emscripten_bind_MapStringSerializerValue_MAP_getOrCreate_1=Module["_emscripten_bind_MapStringSerializerValue_MAP_getOrCreate_1"]=Module["asm"]["rr"]).apply(null,arguments)};var _emscripten_bind_MapStringSerializerValue_MAP_get_1=Module["_emscripten_bind_MapStringSerializerValue_MAP_get_1"]=function(){return(_emscripten_bind_MapStringSerializerValue_MAP_get_1=Module["_emscripten_bind_MapStringSerializerValue_MAP_get_1"]=Module["asm"]["sr"]).apply(null,arguments)};var _emscripten_bind_MapStringSerializerValue_MAP_set_2=Module["_emscripten_bind_MapStringSerializerValue_MAP_set_2"]=function(){return(_emscripten_bind_MapStringSerializerValue_MAP_set_2=Module["_emscripten_bind_MapStringSerializerValue_MAP_set_2"]=Module["asm"]["tr"]).apply(null,arguments)};var _emscripten_bind_MapStringSerializerValue_MAP_has_1=Module["_emscripten_bind_MapStringSerializerValue_MAP_has_1"]=function(){return(_emscripten_bind_MapStringSerializerValue_MAP_has_1=Module["_emscripten_bind_MapStringSerializerValue_MAP_has_1"]=Module["asm"]["ur"]).apply(null,arguments)};var _emscripten_bind_MapStringSerializerValue_MAP_keys_0=Module["_emscripten_bind_MapStringSerializerValue_MAP_keys_0"]=function(){return(_emscripten_bind_MapStringSerializerValue_MAP_keys_0=Module["_emscripten_bind_MapStringSerializerValue_MAP_keys_0"]=Module["asm"]["vr"]).apply(null,arguments)};var _emscripten_bind_MapStringSerializerValue___destroy___0=Module["_emscripten_bind_MapStringSerializerValue___destroy___0"]=function(){return(_emscripten_bind_MapStringSerializerValue___destroy___0=Module["_emscripten_bind_MapStringSerializerValue___destroy___0"]=Module["asm"]["wr"]).apply(null,arguments)};var _emscripten_bind_VectorPairStringSharedPtrSerializerElement_size_0=Module["_emscripten_bind_VectorPairStringSharedPtrSerializerElement_size_0"]=function(){return(_emscripten_bind_VectorPairStringSharedPtrSerializerElement_size_0=Module["_emscripten_bind_VectorPairStringSharedPtrSerializerElement_size_0"]=Module["asm"]["xr"]).apply(null,arguments)};var _emscripten_bind_VectorPairStringSharedPtrSerializerElement_WRAPPED_GetString_1=Module["_emscripten_bind_VectorPairStringSharedPtrSerializerElement_WRAPPED_GetString_1"]=function(){return(_emscripten_bind_VectorPairStringSharedPtrSerializerElement_WRAPPED_GetString_1=Module["_emscripten_bind_VectorPairStringSharedPtrSerializerElement_WRAPPED_GetString_1"]=Module["asm"]["yr"]).apply(null,arguments)};var _emscripten_bind_VectorPairStringSharedPtrSerializerElement_WRAPPED_GetSharedPtrSerializerElement_1=Module["_emscripten_bind_VectorPairStringSharedPtrSerializerElement_WRAPPED_GetSharedPtrSerializerElement_1"]=function(){return(_emscripten_bind_VectorPairStringSharedPtrSerializerElement_WRAPPED_GetSharedPtrSerializerElement_1=Module["_emscripten_bind_VectorPairStringSharedPtrSerializerElement_WRAPPED_GetSharedPtrSerializerElement_1"]=Module["asm"]["zr"]).apply(null,arguments)};var _emscripten_bind_VectorPairStringSharedPtrSerializerElement___destroy___0=Module["_emscripten_bind_VectorPairStringSharedPtrSerializerElement___destroy___0"]=function(){return(_emscripten_bind_VectorPairStringSharedPtrSerializerElement___destroy___0=Module["_emscripten_bind_VectorPairStringSharedPtrSerializerElement___destroy___0"]=Module["asm"]["Ar"]).apply(null,arguments)};var _emscripten_bind_ResourcesContainer_ResourcesContainer_1=Module["_emscripten_bind_ResourcesContainer_ResourcesContainer_1"]=function(){return(_emscripten_bind_ResourcesContainer_ResourcesContainer_1=Module["_emscripten_bind_ResourcesContainer_ResourcesContainer_1"]=Module["asm"]["Br"]).apply(null,arguments)};var _emscripten_bind_ResourcesContainer_GetSourceType_0=Module["_emscripten_bind_ResourcesContainer_GetSourceType_0"]=function(){return(_emscripten_bind_ResourcesContainer_GetSourceType_0=Module["_emscripten_bind_ResourcesContainer_GetSourceType_0"]=Module["asm"]["Cr"]).apply(null,arguments)};var _emscripten_bind_ResourcesContainer_GetAllResourceNames_0=Module["_emscripten_bind_ResourcesContainer_GetAllResourceNames_0"]=function(){return(_emscripten_bind_ResourcesContainer_GetAllResourceNames_0=Module["_emscripten_bind_ResourcesContainer_GetAllResourceNames_0"]=Module["asm"]["Dr"]).apply(null,arguments)};var _emscripten_bind_ResourcesContainer_FindFilesNotInResources_1=Module["_emscripten_bind_ResourcesContainer_FindFilesNotInResources_1"]=function(){return(_emscripten_bind_ResourcesContainer_FindFilesNotInResources_1=Module["_emscripten_bind_ResourcesContainer_FindFilesNotInResources_1"]=Module["asm"]["Er"]).apply(null,arguments)};var _emscripten_bind_ResourcesContainer_HasResource_1=Module["_emscripten_bind_ResourcesContainer_HasResource_1"]=function(){return(_emscripten_bind_ResourcesContainer_HasResource_1=Module["_emscripten_bind_ResourcesContainer_HasResource_1"]=Module["asm"]["Fr"]).apply(null,arguments)};var _emscripten_bind_ResourcesContainer_GetResource_1=Module["_emscripten_bind_ResourcesContainer_GetResource_1"]=function(){return(_emscripten_bind_ResourcesContainer_GetResource_1=Module["_emscripten_bind_ResourcesContainer_GetResource_1"]=Module["asm"]["Gr"]).apply(null,arguments)};var _emscripten_bind_ResourcesContainer_GetResourceAt_1=Module["_emscripten_bind_ResourcesContainer_GetResourceAt_1"]=function(){return(_emscripten_bind_ResourcesContainer_GetResourceAt_1=Module["_emscripten_bind_ResourcesContainer_GetResourceAt_1"]=Module["asm"]["Hr"]).apply(null,arguments)};var _emscripten_bind_ResourcesContainer_GetResourceNameWithOrigin_2=Module["_emscripten_bind_ResourcesContainer_GetResourceNameWithOrigin_2"]=function(){return(_emscripten_bind_ResourcesContainer_GetResourceNameWithOrigin_2=Module["_emscripten_bind_ResourcesContainer_GetResourceNameWithOrigin_2"]=Module["asm"]["Ir"]).apply(null,arguments)};var _emscripten_bind_ResourcesContainer_GetResourceNamesWithFile_1=Module["_emscripten_bind_ResourcesContainer_GetResourceNamesWithFile_1"]=function(){return(_emscripten_bind_ResourcesContainer_GetResourceNamesWithFile_1=Module["_emscripten_bind_ResourcesContainer_GetResourceNamesWithFile_1"]=Module["asm"]["Jr"]).apply(null,arguments)};var _emscripten_bind_ResourcesContainer_AddResource_1=Module["_emscripten_bind_ResourcesContainer_AddResource_1"]=function(){return(_emscripten_bind_ResourcesContainer_AddResource_1=Module["_emscripten_bind_ResourcesContainer_AddResource_1"]=Module["asm"]["Kr"]).apply(null,arguments)};var _emscripten_bind_ResourcesContainer_RemoveResource_1=Module["_emscripten_bind_ResourcesContainer_RemoveResource_1"]=function(){return(_emscripten_bind_ResourcesContainer_RemoveResource_1=Module["_emscripten_bind_ResourcesContainer_RemoveResource_1"]=Module["asm"]["Lr"]).apply(null,arguments)};var _emscripten_bind_ResourcesContainer_RenameResource_2=Module["_emscripten_bind_ResourcesContainer_RenameResource_2"]=function(){return(_emscripten_bind_ResourcesContainer_RenameResource_2=Module["_emscripten_bind_ResourcesContainer_RenameResource_2"]=Module["asm"]["Mr"]).apply(null,arguments)};var _emscripten_bind_ResourcesContainer_GetResourcePosition_1=Module["_emscripten_bind_ResourcesContainer_GetResourcePosition_1"]=function(){return(_emscripten_bind_ResourcesContainer_GetResourcePosition_1=Module["_emscripten_bind_ResourcesContainer_GetResourcePosition_1"]=Module["asm"]["Nr"]).apply(null,arguments)};var _emscripten_bind_ResourcesContainer_Count_0=Module["_emscripten_bind_ResourcesContainer_Count_0"]=function(){return(_emscripten_bind_ResourcesContainer_Count_0=Module["_emscripten_bind_ResourcesContainer_Count_0"]=Module["asm"]["Or"]).apply(null,arguments)};var _emscripten_bind_ResourcesContainer_MoveResourceUpInList_1=Module["_emscripten_bind_ResourcesContainer_MoveResourceUpInList_1"]=function(){return(_emscripten_bind_ResourcesContainer_MoveResourceUpInList_1=Module["_emscripten_bind_ResourcesContainer_MoveResourceUpInList_1"]=Module["asm"]["Pr"]).apply(null,arguments)};var _emscripten_bind_ResourcesContainer_MoveResourceDownInList_1=Module["_emscripten_bind_ResourcesContainer_MoveResourceDownInList_1"]=function(){return(_emscripten_bind_ResourcesContainer_MoveResourceDownInList_1=Module["_emscripten_bind_ResourcesContainer_MoveResourceDownInList_1"]=Module["asm"]["Qr"]).apply(null,arguments)};var _emscripten_bind_ResourcesContainer_MoveResource_2=Module["_emscripten_bind_ResourcesContainer_MoveResource_2"]=function(){return(_emscripten_bind_ResourcesContainer_MoveResource_2=Module["_emscripten_bind_ResourcesContainer_MoveResource_2"]=Module["asm"]["Rr"]).apply(null,arguments)};var _emscripten_bind_ResourcesContainer_STATIC_UnserializeResourceFrom_2=Module["_emscripten_bind_ResourcesContainer_STATIC_UnserializeResourceFrom_2"]=function(){return(_emscripten_bind_ResourcesContainer_STATIC_UnserializeResourceFrom_2=Module["_emscripten_bind_ResourcesContainer_STATIC_UnserializeResourceFrom_2"]=Module["asm"]["Sr"]).apply(null,arguments)};var _emscripten_bind_ResourcesContainer___destroy___0=Module["_emscripten_bind_ResourcesContainer___destroy___0"]=function(){return(_emscripten_bind_ResourcesContainer___destroy___0=Module["_emscripten_bind_ResourcesContainer___destroy___0"]=Module["asm"]["Tr"]).apply(null,arguments)};var _emscripten_bind_ResourcesContainersList_HasResourceNamed_1=Module["_emscripten_bind_ResourcesContainersList_HasResourceNamed_1"]=function(){return(_emscripten_bind_ResourcesContainersList_HasResourceNamed_1=Module["_emscripten_bind_ResourcesContainersList_HasResourceNamed_1"]=Module["asm"]["Ur"]).apply(null,arguments)};var _emscripten_bind_ResourcesContainersList_GetResource_1=Module["_emscripten_bind_ResourcesContainersList_GetResource_1"]=function(){return(_emscripten_bind_ResourcesContainersList_GetResource_1=Module["_emscripten_bind_ResourcesContainersList_GetResource_1"]=Module["asm"]["Vr"]).apply(null,arguments)};var _emscripten_bind_ResourcesContainersList_GetResourcesContainerFromResourceName_1=Module["_emscripten_bind_ResourcesContainersList_GetResourcesContainerFromResourceName_1"]=function(){return(_emscripten_bind_ResourcesContainersList_GetResourcesContainerFromResourceName_1=Module["_emscripten_bind_ResourcesContainersList_GetResourcesContainerFromResourceName_1"]=Module["asm"]["Wr"]).apply(null,arguments)};var _emscripten_bind_ResourcesContainersList_GetResourcesContainer_1=Module["_emscripten_bind_ResourcesContainersList_GetResourcesContainer_1"]=function(){return(_emscripten_bind_ResourcesContainersList_GetResourcesContainer_1=Module["_emscripten_bind_ResourcesContainersList_GetResourcesContainer_1"]=Module["asm"]["Xr"]).apply(null,arguments)};var _emscripten_bind_ResourcesContainersList_GetResourcesContainersCount_0=Module["_emscripten_bind_ResourcesContainersList_GetResourcesContainersCount_0"]=function(){return(_emscripten_bind_ResourcesContainersList_GetResourcesContainersCount_0=Module["_emscripten_bind_ResourcesContainersList_GetResourcesContainersCount_0"]=Module["asm"]["Yr"]).apply(null,arguments)};var _emscripten_bind_ResourcesContainersList___destroy___0=Module["_emscripten_bind_ResourcesContainersList___destroy___0"]=function(){return(_emscripten_bind_ResourcesContainersList___destroy___0=Module["_emscripten_bind_ResourcesContainersList___destroy___0"]=Module["asm"]["Zr"]).apply(null,arguments)};var _emscripten_bind_ImageResource_ImageResource_0=Module["_emscripten_bind_ImageResource_ImageResource_0"]=function(){return(_emscripten_bind_ImageResource_ImageResource_0=Module["_emscripten_bind_ImageResource_ImageResource_0"]=Module["asm"]["_r"]).apply(null,arguments)};var _emscripten_bind_ImageResource_IsSmooth_0=Module["_emscripten_bind_ImageResource_IsSmooth_0"]=function(){return(_emscripten_bind_ImageResource_IsSmooth_0=Module["_emscripten_bind_ImageResource_IsSmooth_0"]=Module["asm"]["$r"]).apply(null,arguments)};var _emscripten_bind_ImageResource_SetSmooth_1=Module["_emscripten_bind_ImageResource_SetSmooth_1"]=function(){return(_emscripten_bind_ImageResource_SetSmooth_1=Module["_emscripten_bind_ImageResource_SetSmooth_1"]=Module["asm"]["as"]).apply(null,arguments)};var _emscripten_bind_ImageResource_Clone_0=Module["_emscripten_bind_ImageResource_Clone_0"]=function(){return(_emscripten_bind_ImageResource_Clone_0=Module["_emscripten_bind_ImageResource_Clone_0"]=Module["asm"]["bs"]).apply(null,arguments)};var _emscripten_bind_ImageResource_SetName_1=Module["_emscripten_bind_ImageResource_SetName_1"]=function(){return(_emscripten_bind_ImageResource_SetName_1=Module["_emscripten_bind_ImageResource_SetName_1"]=Module["asm"]["cs"]).apply(null,arguments)};var _emscripten_bind_ImageResource_GetName_0=Module["_emscripten_bind_ImageResource_GetName_0"]=function(){return(_emscripten_bind_ImageResource_GetName_0=Module["_emscripten_bind_ImageResource_GetName_0"]=Module["asm"]["ds"]).apply(null,arguments)};var _emscripten_bind_ImageResource_SetKind_1=Module["_emscripten_bind_ImageResource_SetKind_1"]=function(){return(_emscripten_bind_ImageResource_SetKind_1=Module["_emscripten_bind_ImageResource_SetKind_1"]=Module["asm"]["es"]).apply(null,arguments)};var _emscripten_bind_ImageResource_GetKind_0=Module["_emscripten_bind_ImageResource_GetKind_0"]=function(){return(_emscripten_bind_ImageResource_GetKind_0=Module["_emscripten_bind_ImageResource_GetKind_0"]=Module["asm"]["fs"]).apply(null,arguments)};var _emscripten_bind_ImageResource_IsUserAdded_0=Module["_emscripten_bind_ImageResource_IsUserAdded_0"]=function(){return(_emscripten_bind_ImageResource_IsUserAdded_0=Module["_emscripten_bind_ImageResource_IsUserAdded_0"]=Module["asm"]["gs"]).apply(null,arguments)};var _emscripten_bind_ImageResource_SetUserAdded_1=Module["_emscripten_bind_ImageResource_SetUserAdded_1"]=function(){return(_emscripten_bind_ImageResource_SetUserAdded_1=Module["_emscripten_bind_ImageResource_SetUserAdded_1"]=Module["asm"]["hs"]).apply(null,arguments)};var _emscripten_bind_ImageResource_UseFile_0=Module["_emscripten_bind_ImageResource_UseFile_0"]=function(){return(_emscripten_bind_ImageResource_UseFile_0=Module["_emscripten_bind_ImageResource_UseFile_0"]=Module["asm"]["is"]).apply(null,arguments)};var _emscripten_bind_ImageResource_SetFile_1=Module["_emscripten_bind_ImageResource_SetFile_1"]=function(){return(_emscripten_bind_ImageResource_SetFile_1=Module["_emscripten_bind_ImageResource_SetFile_1"]=Module["asm"]["js"]).apply(null,arguments)};var _emscripten_bind_ImageResource_GetFile_0=Module["_emscripten_bind_ImageResource_GetFile_0"]=function(){return(_emscripten_bind_ImageResource_GetFile_0=Module["_emscripten_bind_ImageResource_GetFile_0"]=Module["asm"]["ks"]).apply(null,arguments)};var _emscripten_bind_ImageResource_SetMetadata_1=Module["_emscripten_bind_ImageResource_SetMetadata_1"]=function(){return(_emscripten_bind_ImageResource_SetMetadata_1=Module["_emscripten_bind_ImageResource_SetMetadata_1"]=Module["asm"]["ls"]).apply(null,arguments)};var _emscripten_bind_ImageResource_GetMetadata_0=Module["_emscripten_bind_ImageResource_GetMetadata_0"]=function(){return(_emscripten_bind_ImageResource_GetMetadata_0=Module["_emscripten_bind_ImageResource_GetMetadata_0"]=Module["asm"]["ms"]).apply(null,arguments)};var _emscripten_bind_ImageResource_SetOrigin_2=Module["_emscripten_bind_ImageResource_SetOrigin_2"]=function(){return(_emscripten_bind_ImageResource_SetOrigin_2=Module["_emscripten_bind_ImageResource_SetOrigin_2"]=Module["asm"]["ns"]).apply(null,arguments)};var _emscripten_bind_ImageResource_GetOriginName_0=Module["_emscripten_bind_ImageResource_GetOriginName_0"]=function(){return(_emscripten_bind_ImageResource_GetOriginName_0=Module["_emscripten_bind_ImageResource_GetOriginName_0"]=Module["asm"]["os"]).apply(null,arguments)};var _emscripten_bind_ImageResource_GetOriginIdentifier_0=Module["_emscripten_bind_ImageResource_GetOriginIdentifier_0"]=function(){return(_emscripten_bind_ImageResource_GetOriginIdentifier_0=Module["_emscripten_bind_ImageResource_GetOriginIdentifier_0"]=Module["asm"]["ps"]).apply(null,arguments)};var _emscripten_bind_ImageResource_GetProperties_0=Module["_emscripten_bind_ImageResource_GetProperties_0"]=function(){return(_emscripten_bind_ImageResource_GetProperties_0=Module["_emscripten_bind_ImageResource_GetProperties_0"]=Module["asm"]["qs"]).apply(null,arguments)};var _emscripten_bind_ImageResource_UpdateProperty_2=Module["_emscripten_bind_ImageResource_UpdateProperty_2"]=function(){return(_emscripten_bind_ImageResource_UpdateProperty_2=Module["_emscripten_bind_ImageResource_UpdateProperty_2"]=Module["asm"]["rs"]).apply(null,arguments)};var _emscripten_bind_ImageResource_SerializeTo_1=Module["_emscripten_bind_ImageResource_SerializeTo_1"]=function(){return(_emscripten_bind_ImageResource_SerializeTo_1=Module["_emscripten_bind_ImageResource_SerializeTo_1"]=Module["asm"]["ss"]).apply(null,arguments)};var _emscripten_bind_ImageResource_UnserializeFrom_1=Module["_emscripten_bind_ImageResource_UnserializeFrom_1"]=function(){return(_emscripten_bind_ImageResource_UnserializeFrom_1=Module["_emscripten_bind_ImageResource_UnserializeFrom_1"]=Module["asm"]["ts"]).apply(null,arguments)};var _emscripten_bind_ImageResource___destroy___0=Module["_emscripten_bind_ImageResource___destroy___0"]=function(){return(_emscripten_bind_ImageResource___destroy___0=Module["_emscripten_bind_ImageResource___destroy___0"]=Module["asm"]["us"]).apply(null,arguments)};var _emscripten_bind_AudioResource_AudioResource_0=Module["_emscripten_bind_AudioResource_AudioResource_0"]=function(){return(_emscripten_bind_AudioResource_AudioResource_0=Module["_emscripten_bind_AudioResource_AudioResource_0"]=Module["asm"]["vs"]).apply(null,arguments)};var _emscripten_bind_AudioResource_Clone_0=Module["_emscripten_bind_AudioResource_Clone_0"]=function(){return(_emscripten_bind_AudioResource_Clone_0=Module["_emscripten_bind_AudioResource_Clone_0"]=Module["asm"]["ws"]).apply(null,arguments)};var _emscripten_bind_AudioResource_SetName_1=Module["_emscripten_bind_AudioResource_SetName_1"]=function(){return(_emscripten_bind_AudioResource_SetName_1=Module["_emscripten_bind_AudioResource_SetName_1"]=Module["asm"]["xs"]).apply(null,arguments)};var _emscripten_bind_AudioResource_GetName_0=Module["_emscripten_bind_AudioResource_GetName_0"]=function(){return(_emscripten_bind_AudioResource_GetName_0=Module["_emscripten_bind_AudioResource_GetName_0"]=Module["asm"]["ys"]).apply(null,arguments)};var _emscripten_bind_AudioResource_SetKind_1=Module["_emscripten_bind_AudioResource_SetKind_1"]=function(){return(_emscripten_bind_AudioResource_SetKind_1=Module["_emscripten_bind_AudioResource_SetKind_1"]=Module["asm"]["zs"]).apply(null,arguments)};var _emscripten_bind_AudioResource_GetKind_0=Module["_emscripten_bind_AudioResource_GetKind_0"]=function(){return(_emscripten_bind_AudioResource_GetKind_0=Module["_emscripten_bind_AudioResource_GetKind_0"]=Module["asm"]["As"]).apply(null,arguments)};var _emscripten_bind_AudioResource_IsUserAdded_0=Module["_emscripten_bind_AudioResource_IsUserAdded_0"]=function(){return(_emscripten_bind_AudioResource_IsUserAdded_0=Module["_emscripten_bind_AudioResource_IsUserAdded_0"]=Module["asm"]["Bs"]).apply(null,arguments)};var _emscripten_bind_AudioResource_SetUserAdded_1=Module["_emscripten_bind_AudioResource_SetUserAdded_1"]=function(){return(_emscripten_bind_AudioResource_SetUserAdded_1=Module["_emscripten_bind_AudioResource_SetUserAdded_1"]=Module["asm"]["Cs"]).apply(null,arguments)};var _emscripten_bind_AudioResource_UseFile_0=Module["_emscripten_bind_AudioResource_UseFile_0"]=function(){return(_emscripten_bind_AudioResource_UseFile_0=Module["_emscripten_bind_AudioResource_UseFile_0"]=Module["asm"]["Ds"]).apply(null,arguments)};var _emscripten_bind_AudioResource_SetFile_1=Module["_emscripten_bind_AudioResource_SetFile_1"]=function(){return(_emscripten_bind_AudioResource_SetFile_1=Module["_emscripten_bind_AudioResource_SetFile_1"]=Module["asm"]["Es"]).apply(null,arguments)};var _emscripten_bind_AudioResource_GetFile_0=Module["_emscripten_bind_AudioResource_GetFile_0"]=function(){return(_emscripten_bind_AudioResource_GetFile_0=Module["_emscripten_bind_AudioResource_GetFile_0"]=Module["asm"]["Fs"]).apply(null,arguments)};var _emscripten_bind_AudioResource_SetMetadata_1=Module["_emscripten_bind_AudioResource_SetMetadata_1"]=function(){return(_emscripten_bind_AudioResource_SetMetadata_1=Module["_emscripten_bind_AudioResource_SetMetadata_1"]=Module["asm"]["Gs"]).apply(null,arguments)};var _emscripten_bind_AudioResource_GetMetadata_0=Module["_emscripten_bind_AudioResource_GetMetadata_0"]=function(){return(_emscripten_bind_AudioResource_GetMetadata_0=Module["_emscripten_bind_AudioResource_GetMetadata_0"]=Module["asm"]["Hs"]).apply(null,arguments)};var _emscripten_bind_AudioResource_SetOrigin_2=Module["_emscripten_bind_AudioResource_SetOrigin_2"]=function(){return(_emscripten_bind_AudioResource_SetOrigin_2=Module["_emscripten_bind_AudioResource_SetOrigin_2"]=Module["asm"]["Is"]).apply(null,arguments)};var _emscripten_bind_AudioResource_GetOriginName_0=Module["_emscripten_bind_AudioResource_GetOriginName_0"]=function(){return(_emscripten_bind_AudioResource_GetOriginName_0=Module["_emscripten_bind_AudioResource_GetOriginName_0"]=Module["asm"]["Js"]).apply(null,arguments)};var _emscripten_bind_AudioResource_GetOriginIdentifier_0=Module["_emscripten_bind_AudioResource_GetOriginIdentifier_0"]=function(){return(_emscripten_bind_AudioResource_GetOriginIdentifier_0=Module["_emscripten_bind_AudioResource_GetOriginIdentifier_0"]=Module["asm"]["Ks"]).apply(null,arguments)};var _emscripten_bind_AudioResource_GetProperties_0=Module["_emscripten_bind_AudioResource_GetProperties_0"]=function(){return(_emscripten_bind_AudioResource_GetProperties_0=Module["_emscripten_bind_AudioResource_GetProperties_0"]=Module["asm"]["Ls"]).apply(null,arguments)};var _emscripten_bind_AudioResource_UpdateProperty_2=Module["_emscripten_bind_AudioResource_UpdateProperty_2"]=function(){return(_emscripten_bind_AudioResource_UpdateProperty_2=Module["_emscripten_bind_AudioResource_UpdateProperty_2"]=Module["asm"]["Ms"]).apply(null,arguments)};var _emscripten_bind_AudioResource_SerializeTo_1=Module["_emscripten_bind_AudioResource_SerializeTo_1"]=function(){return(_emscripten_bind_AudioResource_SerializeTo_1=Module["_emscripten_bind_AudioResource_SerializeTo_1"]=Module["asm"]["Ns"]).apply(null,arguments)};var _emscripten_bind_AudioResource_UnserializeFrom_1=Module["_emscripten_bind_AudioResource_UnserializeFrom_1"]=function(){return(_emscripten_bind_AudioResource_UnserializeFrom_1=Module["_emscripten_bind_AudioResource_UnserializeFrom_1"]=Module["asm"]["Os"]).apply(null,arguments)};var _emscripten_bind_AudioResource___destroy___0=Module["_emscripten_bind_AudioResource___destroy___0"]=function(){return(_emscripten_bind_AudioResource___destroy___0=Module["_emscripten_bind_AudioResource___destroy___0"]=Module["asm"]["Ps"]).apply(null,arguments)};var _emscripten_bind_FontResource_FontResource_0=Module["_emscripten_bind_FontResource_FontResource_0"]=function(){return(_emscripten_bind_FontResource_FontResource_0=Module["_emscripten_bind_FontResource_FontResource_0"]=Module["asm"]["Qs"]).apply(null,arguments)};var _emscripten_bind_FontResource_Clone_0=Module["_emscripten_bind_FontResource_Clone_0"]=function(){return(_emscripten_bind_FontResource_Clone_0=Module["_emscripten_bind_FontResource_Clone_0"]=Module["asm"]["Rs"]).apply(null,arguments)};var _emscripten_bind_FontResource_SetName_1=Module["_emscripten_bind_FontResource_SetName_1"]=function(){return(_emscripten_bind_FontResource_SetName_1=Module["_emscripten_bind_FontResource_SetName_1"]=Module["asm"]["Ss"]).apply(null,arguments)};var _emscripten_bind_FontResource_GetName_0=Module["_emscripten_bind_FontResource_GetName_0"]=function(){return(_emscripten_bind_FontResource_GetName_0=Module["_emscripten_bind_FontResource_GetName_0"]=Module["asm"]["Ts"]).apply(null,arguments)};var _emscripten_bind_FontResource_SetKind_1=Module["_emscripten_bind_FontResource_SetKind_1"]=function(){return(_emscripten_bind_FontResource_SetKind_1=Module["_emscripten_bind_FontResource_SetKind_1"]=Module["asm"]["Us"]).apply(null,arguments)};var _emscripten_bind_FontResource_GetKind_0=Module["_emscripten_bind_FontResource_GetKind_0"]=function(){return(_emscripten_bind_FontResource_GetKind_0=Module["_emscripten_bind_FontResource_GetKind_0"]=Module["asm"]["Vs"]).apply(null,arguments)};var _emscripten_bind_FontResource_IsUserAdded_0=Module["_emscripten_bind_FontResource_IsUserAdded_0"]=function(){return(_emscripten_bind_FontResource_IsUserAdded_0=Module["_emscripten_bind_FontResource_IsUserAdded_0"]=Module["asm"]["Ws"]).apply(null,arguments)};var _emscripten_bind_FontResource_SetUserAdded_1=Module["_emscripten_bind_FontResource_SetUserAdded_1"]=function(){return(_emscripten_bind_FontResource_SetUserAdded_1=Module["_emscripten_bind_FontResource_SetUserAdded_1"]=Module["asm"]["Xs"]).apply(null,arguments)};var _emscripten_bind_FontResource_UseFile_0=Module["_emscripten_bind_FontResource_UseFile_0"]=function(){return(_emscripten_bind_FontResource_UseFile_0=Module["_emscripten_bind_FontResource_UseFile_0"]=Module["asm"]["Ys"]).apply(null,arguments)};var _emscripten_bind_FontResource_SetFile_1=Module["_emscripten_bind_FontResource_SetFile_1"]=function(){return(_emscripten_bind_FontResource_SetFile_1=Module["_emscripten_bind_FontResource_SetFile_1"]=Module["asm"]["Zs"]).apply(null,arguments)};var _emscripten_bind_FontResource_GetFile_0=Module["_emscripten_bind_FontResource_GetFile_0"]=function(){return(_emscripten_bind_FontResource_GetFile_0=Module["_emscripten_bind_FontResource_GetFile_0"]=Module["asm"]["_s"]).apply(null,arguments)};var _emscripten_bind_FontResource_SetMetadata_1=Module["_emscripten_bind_FontResource_SetMetadata_1"]=function(){return(_emscripten_bind_FontResource_SetMetadata_1=Module["_emscripten_bind_FontResource_SetMetadata_1"]=Module["asm"]["$s"]).apply(null,arguments)};var _emscripten_bind_FontResource_GetMetadata_0=Module["_emscripten_bind_FontResource_GetMetadata_0"]=function(){return(_emscripten_bind_FontResource_GetMetadata_0=Module["_emscripten_bind_FontResource_GetMetadata_0"]=Module["asm"]["at"]).apply(null,arguments)};var _emscripten_bind_FontResource_SetOrigin_2=Module["_emscripten_bind_FontResource_SetOrigin_2"]=function(){return(_emscripten_bind_FontResource_SetOrigin_2=Module["_emscripten_bind_FontResource_SetOrigin_2"]=Module["asm"]["bt"]).apply(null,arguments)};var _emscripten_bind_FontResource_GetOriginName_0=Module["_emscripten_bind_FontResource_GetOriginName_0"]=function(){return(_emscripten_bind_FontResource_GetOriginName_0=Module["_emscripten_bind_FontResource_GetOriginName_0"]=Module["asm"]["ct"]).apply(null,arguments)};var _emscripten_bind_FontResource_GetOriginIdentifier_0=Module["_emscripten_bind_FontResource_GetOriginIdentifier_0"]=function(){return(_emscripten_bind_FontResource_GetOriginIdentifier_0=Module["_emscripten_bind_FontResource_GetOriginIdentifier_0"]=Module["asm"]["dt"]).apply(null,arguments)};var _emscripten_bind_FontResource_GetProperties_0=Module["_emscripten_bind_FontResource_GetProperties_0"]=function(){return(_emscripten_bind_FontResource_GetProperties_0=Module["_emscripten_bind_FontResource_GetProperties_0"]=Module["asm"]["et"]).apply(null,arguments)};var _emscripten_bind_FontResource_UpdateProperty_2=Module["_emscripten_bind_FontResource_UpdateProperty_2"]=function(){return(_emscripten_bind_FontResource_UpdateProperty_2=Module["_emscripten_bind_FontResource_UpdateProperty_2"]=Module["asm"]["ft"]).apply(null,arguments)};var _emscripten_bind_FontResource_SerializeTo_1=Module["_emscripten_bind_FontResource_SerializeTo_1"]=function(){return(_emscripten_bind_FontResource_SerializeTo_1=Module["_emscripten_bind_FontResource_SerializeTo_1"]=Module["asm"]["gt"]).apply(null,arguments)};var _emscripten_bind_FontResource_UnserializeFrom_1=Module["_emscripten_bind_FontResource_UnserializeFrom_1"]=function(){return(_emscripten_bind_FontResource_UnserializeFrom_1=Module["_emscripten_bind_FontResource_UnserializeFrom_1"]=Module["asm"]["ht"]).apply(null,arguments)};var _emscripten_bind_FontResource___destroy___0=Module["_emscripten_bind_FontResource___destroy___0"]=function(){return(_emscripten_bind_FontResource___destroy___0=Module["_emscripten_bind_FontResource___destroy___0"]=Module["asm"]["it"]).apply(null,arguments)};var _emscripten_bind_BitmapFontResource_BitmapFontResource_0=Module["_emscripten_bind_BitmapFontResource_BitmapFontResource_0"]=function(){return(_emscripten_bind_BitmapFontResource_BitmapFontResource_0=Module["_emscripten_bind_BitmapFontResource_BitmapFontResource_0"]=Module["asm"]["jt"]).apply(null,arguments)};var _emscripten_bind_BitmapFontResource_Clone_0=Module["_emscripten_bind_BitmapFontResource_Clone_0"]=function(){return(_emscripten_bind_BitmapFontResource_Clone_0=Module["_emscripten_bind_BitmapFontResource_Clone_0"]=Module["asm"]["kt"]).apply(null,arguments)};var _emscripten_bind_BitmapFontResource_SetName_1=Module["_emscripten_bind_BitmapFontResource_SetName_1"]=function(){return(_emscripten_bind_BitmapFontResource_SetName_1=Module["_emscripten_bind_BitmapFontResource_SetName_1"]=Module["asm"]["lt"]).apply(null,arguments)};var _emscripten_bind_BitmapFontResource_GetName_0=Module["_emscripten_bind_BitmapFontResource_GetName_0"]=function(){return(_emscripten_bind_BitmapFontResource_GetName_0=Module["_emscripten_bind_BitmapFontResource_GetName_0"]=Module["asm"]["mt"]).apply(null,arguments)};var _emscripten_bind_BitmapFontResource_SetKind_1=Module["_emscripten_bind_BitmapFontResource_SetKind_1"]=function(){return(_emscripten_bind_BitmapFontResource_SetKind_1=Module["_emscripten_bind_BitmapFontResource_SetKind_1"]=Module["asm"]["nt"]).apply(null,arguments)};var _emscripten_bind_BitmapFontResource_GetKind_0=Module["_emscripten_bind_BitmapFontResource_GetKind_0"]=function(){return(_emscripten_bind_BitmapFontResource_GetKind_0=Module["_emscripten_bind_BitmapFontResource_GetKind_0"]=Module["asm"]["ot"]).apply(null,arguments)};var _emscripten_bind_BitmapFontResource_IsUserAdded_0=Module["_emscripten_bind_BitmapFontResource_IsUserAdded_0"]=function(){return(_emscripten_bind_BitmapFontResource_IsUserAdded_0=Module["_emscripten_bind_BitmapFontResource_IsUserAdded_0"]=Module["asm"]["pt"]).apply(null,arguments)};var _emscripten_bind_BitmapFontResource_SetUserAdded_1=Module["_emscripten_bind_BitmapFontResource_SetUserAdded_1"]=function(){return(_emscripten_bind_BitmapFontResource_SetUserAdded_1=Module["_emscripten_bind_BitmapFontResource_SetUserAdded_1"]=Module["asm"]["qt"]).apply(null,arguments)};var _emscripten_bind_BitmapFontResource_UseFile_0=Module["_emscripten_bind_BitmapFontResource_UseFile_0"]=function(){return(_emscripten_bind_BitmapFontResource_UseFile_0=Module["_emscripten_bind_BitmapFontResource_UseFile_0"]=Module["asm"]["rt"]).apply(null,arguments)};var _emscripten_bind_BitmapFontResource_SetFile_1=Module["_emscripten_bind_BitmapFontResource_SetFile_1"]=function(){return(_emscripten_bind_BitmapFontResource_SetFile_1=Module["_emscripten_bind_BitmapFontResource_SetFile_1"]=Module["asm"]["st"]).apply(null,arguments)};var _emscripten_bind_BitmapFontResource_GetFile_0=Module["_emscripten_bind_BitmapFontResource_GetFile_0"]=function(){return(_emscripten_bind_BitmapFontResource_GetFile_0=Module["_emscripten_bind_BitmapFontResource_GetFile_0"]=Module["asm"]["tt"]).apply(null,arguments)};var _emscripten_bind_BitmapFontResource_SetMetadata_1=Module["_emscripten_bind_BitmapFontResource_SetMetadata_1"]=function(){return(_emscripten_bind_BitmapFontResource_SetMetadata_1=Module["_emscripten_bind_BitmapFontResource_SetMetadata_1"]=Module["asm"]["ut"]).apply(null,arguments)};var _emscripten_bind_BitmapFontResource_GetMetadata_0=Module["_emscripten_bind_BitmapFontResource_GetMetadata_0"]=function(){return(_emscripten_bind_BitmapFontResource_GetMetadata_0=Module["_emscripten_bind_BitmapFontResource_GetMetadata_0"]=Module["asm"]["vt"]).apply(null,arguments)};var _emscripten_bind_BitmapFontResource_SetOrigin_2=Module["_emscripten_bind_BitmapFontResource_SetOrigin_2"]=function(){return(_emscripten_bind_BitmapFontResource_SetOrigin_2=Module["_emscripten_bind_BitmapFontResource_SetOrigin_2"]=Module["asm"]["wt"]).apply(null,arguments)};var _emscripten_bind_BitmapFontResource_GetOriginName_0=Module["_emscripten_bind_BitmapFontResource_GetOriginName_0"]=function(){return(_emscripten_bind_BitmapFontResource_GetOriginName_0=Module["_emscripten_bind_BitmapFontResource_GetOriginName_0"]=Module["asm"]["xt"]).apply(null,arguments)};var _emscripten_bind_BitmapFontResource_GetOriginIdentifier_0=Module["_emscripten_bind_BitmapFontResource_GetOriginIdentifier_0"]=function(){return(_emscripten_bind_BitmapFontResource_GetOriginIdentifier_0=Module["_emscripten_bind_BitmapFontResource_GetOriginIdentifier_0"]=Module["asm"]["yt"]).apply(null,arguments)};var _emscripten_bind_BitmapFontResource_GetProperties_0=Module["_emscripten_bind_BitmapFontResource_GetProperties_0"]=function(){return(_emscripten_bind_BitmapFontResource_GetProperties_0=Module["_emscripten_bind_BitmapFontResource_GetProperties_0"]=Module["asm"]["zt"]).apply(null,arguments)};var _emscripten_bind_BitmapFontResource_UpdateProperty_2=Module["_emscripten_bind_BitmapFontResource_UpdateProperty_2"]=function(){return(_emscripten_bind_BitmapFontResource_UpdateProperty_2=Module["_emscripten_bind_BitmapFontResource_UpdateProperty_2"]=Module["asm"]["At"]).apply(null,arguments)};var _emscripten_bind_BitmapFontResource_SerializeTo_1=Module["_emscripten_bind_BitmapFontResource_SerializeTo_1"]=function(){return(_emscripten_bind_BitmapFontResource_SerializeTo_1=Module["_emscripten_bind_BitmapFontResource_SerializeTo_1"]=Module["asm"]["Bt"]).apply(null,arguments)};var _emscripten_bind_BitmapFontResource_UnserializeFrom_1=Module["_emscripten_bind_BitmapFontResource_UnserializeFrom_1"]=function(){return(_emscripten_bind_BitmapFontResource_UnserializeFrom_1=Module["_emscripten_bind_BitmapFontResource_UnserializeFrom_1"]=Module["asm"]["Ct"]).apply(null,arguments)};var _emscripten_bind_BitmapFontResource___destroy___0=Module["_emscripten_bind_BitmapFontResource___destroy___0"]=function(){return(_emscripten_bind_BitmapFontResource___destroy___0=Module["_emscripten_bind_BitmapFontResource___destroy___0"]=Module["asm"]["Dt"]).apply(null,arguments)};var _emscripten_bind_VideoResource_VideoResource_0=Module["_emscripten_bind_VideoResource_VideoResource_0"]=function(){return(_emscripten_bind_VideoResource_VideoResource_0=Module["_emscripten_bind_VideoResource_VideoResource_0"]=Module["asm"]["Et"]).apply(null,arguments)};var _emscripten_bind_VideoResource_Clone_0=Module["_emscripten_bind_VideoResource_Clone_0"]=function(){return(_emscripten_bind_VideoResource_Clone_0=Module["_emscripten_bind_VideoResource_Clone_0"]=Module["asm"]["Ft"]).apply(null,arguments)};var _emscripten_bind_VideoResource_SetName_1=Module["_emscripten_bind_VideoResource_SetName_1"]=function(){return(_emscripten_bind_VideoResource_SetName_1=Module["_emscripten_bind_VideoResource_SetName_1"]=Module["asm"]["Gt"]).apply(null,arguments)};var _emscripten_bind_VideoResource_GetName_0=Module["_emscripten_bind_VideoResource_GetName_0"]=function(){return(_emscripten_bind_VideoResource_GetName_0=Module["_emscripten_bind_VideoResource_GetName_0"]=Module["asm"]["Ht"]).apply(null,arguments)};var _emscripten_bind_VideoResource_SetKind_1=Module["_emscripten_bind_VideoResource_SetKind_1"]=function(){return(_emscripten_bind_VideoResource_SetKind_1=Module["_emscripten_bind_VideoResource_SetKind_1"]=Module["asm"]["It"]).apply(null,arguments)};var _emscripten_bind_VideoResource_GetKind_0=Module["_emscripten_bind_VideoResource_GetKind_0"]=function(){return(_emscripten_bind_VideoResource_GetKind_0=Module["_emscripten_bind_VideoResource_GetKind_0"]=Module["asm"]["Jt"]).apply(null,arguments)};var _emscripten_bind_VideoResource_IsUserAdded_0=Module["_emscripten_bind_VideoResource_IsUserAdded_0"]=function(){return(_emscripten_bind_VideoResource_IsUserAdded_0=Module["_emscripten_bind_VideoResource_IsUserAdded_0"]=Module["asm"]["Kt"]).apply(null,arguments)};var _emscripten_bind_VideoResource_SetUserAdded_1=Module["_emscripten_bind_VideoResource_SetUserAdded_1"]=function(){return(_emscripten_bind_VideoResource_SetUserAdded_1=Module["_emscripten_bind_VideoResource_SetUserAdded_1"]=Module["asm"]["Lt"]).apply(null,arguments)};var _emscripten_bind_VideoResource_UseFile_0=Module["_emscripten_bind_VideoResource_UseFile_0"]=function(){return(_emscripten_bind_VideoResource_UseFile_0=Module["_emscripten_bind_VideoResource_UseFile_0"]=Module["asm"]["Mt"]).apply(null,arguments)};var _emscripten_bind_VideoResource_SetFile_1=Module["_emscripten_bind_VideoResource_SetFile_1"]=function(){return(_emscripten_bind_VideoResource_SetFile_1=Module["_emscripten_bind_VideoResource_SetFile_1"]=Module["asm"]["Nt"]).apply(null,arguments)};var _emscripten_bind_VideoResource_GetFile_0=Module["_emscripten_bind_VideoResource_GetFile_0"]=function(){return(_emscripten_bind_VideoResource_GetFile_0=Module["_emscripten_bind_VideoResource_GetFile_0"]=Module["asm"]["Ot"]).apply(null,arguments)};var _emscripten_bind_VideoResource_SetMetadata_1=Module["_emscripten_bind_VideoResource_SetMetadata_1"]=function(){return(_emscripten_bind_VideoResource_SetMetadata_1=Module["_emscripten_bind_VideoResource_SetMetadata_1"]=Module["asm"]["Pt"]).apply(null,arguments)};var _emscripten_bind_VideoResource_GetMetadata_0=Module["_emscripten_bind_VideoResource_GetMetadata_0"]=function(){return(_emscripten_bind_VideoResource_GetMetadata_0=Module["_emscripten_bind_VideoResource_GetMetadata_0"]=Module["asm"]["Qt"]).apply(null,arguments)};var _emscripten_bind_VideoResource_SetOrigin_2=Module["_emscripten_bind_VideoResource_SetOrigin_2"]=function(){return(_emscripten_bind_VideoResource_SetOrigin_2=Module["_emscripten_bind_VideoResource_SetOrigin_2"]=Module["asm"]["Rt"]).apply(null,arguments)};var _emscripten_bind_VideoResource_GetOriginName_0=Module["_emscripten_bind_VideoResource_GetOriginName_0"]=function(){return(_emscripten_bind_VideoResource_GetOriginName_0=Module["_emscripten_bind_VideoResource_GetOriginName_0"]=Module["asm"]["St"]).apply(null,arguments)};var _emscripten_bind_VideoResource_GetOriginIdentifier_0=Module["_emscripten_bind_VideoResource_GetOriginIdentifier_0"]=function(){return(_emscripten_bind_VideoResource_GetOriginIdentifier_0=Module["_emscripten_bind_VideoResource_GetOriginIdentifier_0"]=Module["asm"]["Tt"]).apply(null,arguments)};var _emscripten_bind_VideoResource_GetProperties_0=Module["_emscripten_bind_VideoResource_GetProperties_0"]=function(){return(_emscripten_bind_VideoResource_GetProperties_0=Module["_emscripten_bind_VideoResource_GetProperties_0"]=Module["asm"]["Ut"]).apply(null,arguments)};var _emscripten_bind_VideoResource_UpdateProperty_2=Module["_emscripten_bind_VideoResource_UpdateProperty_2"]=function(){return(_emscripten_bind_VideoResource_UpdateProperty_2=Module["_emscripten_bind_VideoResource_UpdateProperty_2"]=Module["asm"]["Vt"]).apply(null,arguments)};var _emscripten_bind_VideoResource_SerializeTo_1=Module["_emscripten_bind_VideoResource_SerializeTo_1"]=function(){return(_emscripten_bind_VideoResource_SerializeTo_1=Module["_emscripten_bind_VideoResource_SerializeTo_1"]=Module["asm"]["Wt"]).apply(null,arguments)};var _emscripten_bind_VideoResource_UnserializeFrom_1=Module["_emscripten_bind_VideoResource_UnserializeFrom_1"]=function(){return(_emscripten_bind_VideoResource_UnserializeFrom_1=Module["_emscripten_bind_VideoResource_UnserializeFrom_1"]=Module["asm"]["Xt"]).apply(null,arguments)};var _emscripten_bind_VideoResource___destroy___0=Module["_emscripten_bind_VideoResource___destroy___0"]=function(){return(_emscripten_bind_VideoResource___destroy___0=Module["_emscripten_bind_VideoResource___destroy___0"]=Module["asm"]["Yt"]).apply(null,arguments)};var _emscripten_bind_SpineResource_SpineResource_0=Module["_emscripten_bind_SpineResource_SpineResource_0"]=function(){return(_emscripten_bind_SpineResource_SpineResource_0=Module["_emscripten_bind_SpineResource_SpineResource_0"]=Module["asm"]["Zt"]).apply(null,arguments)};var _emscripten_bind_SpineResource_Clone_0=Module["_emscripten_bind_SpineResource_Clone_0"]=function(){return(_emscripten_bind_SpineResource_Clone_0=Module["_emscripten_bind_SpineResource_Clone_0"]=Module["asm"]["_t"]).apply(null,arguments)};var _emscripten_bind_SpineResource_SetName_1=Module["_emscripten_bind_SpineResource_SetName_1"]=function(){return(_emscripten_bind_SpineResource_SetName_1=Module["_emscripten_bind_SpineResource_SetName_1"]=Module["asm"]["$t"]).apply(null,arguments)};var _emscripten_bind_SpineResource_GetName_0=Module["_emscripten_bind_SpineResource_GetName_0"]=function(){return(_emscripten_bind_SpineResource_GetName_0=Module["_emscripten_bind_SpineResource_GetName_0"]=Module["asm"]["au"]).apply(null,arguments)};var _emscripten_bind_SpineResource_SetKind_1=Module["_emscripten_bind_SpineResource_SetKind_1"]=function(){return(_emscripten_bind_SpineResource_SetKind_1=Module["_emscripten_bind_SpineResource_SetKind_1"]=Module["asm"]["bu"]).apply(null,arguments)};var _emscripten_bind_SpineResource_GetKind_0=Module["_emscripten_bind_SpineResource_GetKind_0"]=function(){return(_emscripten_bind_SpineResource_GetKind_0=Module["_emscripten_bind_SpineResource_GetKind_0"]=Module["asm"]["cu"]).apply(null,arguments)};var _emscripten_bind_SpineResource_IsUserAdded_0=Module["_emscripten_bind_SpineResource_IsUserAdded_0"]=function(){return(_emscripten_bind_SpineResource_IsUserAdded_0=Module["_emscripten_bind_SpineResource_IsUserAdded_0"]=Module["asm"]["du"]).apply(null,arguments)};var _emscripten_bind_SpineResource_SetUserAdded_1=Module["_emscripten_bind_SpineResource_SetUserAdded_1"]=function(){return(_emscripten_bind_SpineResource_SetUserAdded_1=Module["_emscripten_bind_SpineResource_SetUserAdded_1"]=Module["asm"]["eu"]).apply(null,arguments)};var _emscripten_bind_SpineResource_UseFile_0=Module["_emscripten_bind_SpineResource_UseFile_0"]=function(){return(_emscripten_bind_SpineResource_UseFile_0=Module["_emscripten_bind_SpineResource_UseFile_0"]=Module["asm"]["fu"]).apply(null,arguments)};var _emscripten_bind_SpineResource_SetFile_1=Module["_emscripten_bind_SpineResource_SetFile_1"]=function(){return(_emscripten_bind_SpineResource_SetFile_1=Module["_emscripten_bind_SpineResource_SetFile_1"]=Module["asm"]["gu"]).apply(null,arguments)};var _emscripten_bind_SpineResource_GetFile_0=Module["_emscripten_bind_SpineResource_GetFile_0"]=function(){return(_emscripten_bind_SpineResource_GetFile_0=Module["_emscripten_bind_SpineResource_GetFile_0"]=Module["asm"]["hu"]).apply(null,arguments)};var _emscripten_bind_SpineResource_SetMetadata_1=Module["_emscripten_bind_SpineResource_SetMetadata_1"]=function(){return(_emscripten_bind_SpineResource_SetMetadata_1=Module["_emscripten_bind_SpineResource_SetMetadata_1"]=Module["asm"]["iu"]).apply(null,arguments)};var _emscripten_bind_SpineResource_GetMetadata_0=Module["_emscripten_bind_SpineResource_GetMetadata_0"]=function(){return(_emscripten_bind_SpineResource_GetMetadata_0=Module["_emscripten_bind_SpineResource_GetMetadata_0"]=Module["asm"]["ju"]).apply(null,arguments)};var _emscripten_bind_SpineResource_SetOrigin_2=Module["_emscripten_bind_SpineResource_SetOrigin_2"]=function(){return(_emscripten_bind_SpineResource_SetOrigin_2=Module["_emscripten_bind_SpineResource_SetOrigin_2"]=Module["asm"]["ku"]).apply(null,arguments)};var _emscripten_bind_SpineResource_GetOriginName_0=Module["_emscripten_bind_SpineResource_GetOriginName_0"]=function(){return(_emscripten_bind_SpineResource_GetOriginName_0=Module["_emscripten_bind_SpineResource_GetOriginName_0"]=Module["asm"]["lu"]).apply(null,arguments)};var _emscripten_bind_SpineResource_GetOriginIdentifier_0=Module["_emscripten_bind_SpineResource_GetOriginIdentifier_0"]=function(){return(_emscripten_bind_SpineResource_GetOriginIdentifier_0=Module["_emscripten_bind_SpineResource_GetOriginIdentifier_0"]=Module["asm"]["mu"]).apply(null,arguments)};var _emscripten_bind_SpineResource_GetProperties_0=Module["_emscripten_bind_SpineResource_GetProperties_0"]=function(){return(_emscripten_bind_SpineResource_GetProperties_0=Module["_emscripten_bind_SpineResource_GetProperties_0"]=Module["asm"]["nu"]).apply(null,arguments)};var _emscripten_bind_SpineResource_UpdateProperty_2=Module["_emscripten_bind_SpineResource_UpdateProperty_2"]=function(){return(_emscripten_bind_SpineResource_UpdateProperty_2=Module["_emscripten_bind_SpineResource_UpdateProperty_2"]=Module["asm"]["ou"]).apply(null,arguments)};var _emscripten_bind_SpineResource_SerializeTo_1=Module["_emscripten_bind_SpineResource_SerializeTo_1"]=function(){return(_emscripten_bind_SpineResource_SerializeTo_1=Module["_emscripten_bind_SpineResource_SerializeTo_1"]=Module["asm"]["pu"]).apply(null,arguments)};var _emscripten_bind_SpineResource_UnserializeFrom_1=Module["_emscripten_bind_SpineResource_UnserializeFrom_1"]=function(){return(_emscripten_bind_SpineResource_UnserializeFrom_1=Module["_emscripten_bind_SpineResource_UnserializeFrom_1"]=Module["asm"]["qu"]).apply(null,arguments)};var _emscripten_bind_SpineResource___destroy___0=Module["_emscripten_bind_SpineResource___destroy___0"]=function(){return(_emscripten_bind_SpineResource___destroy___0=Module["_emscripten_bind_SpineResource___destroy___0"]=Module["asm"]["ru"]).apply(null,arguments)};var _emscripten_bind_TilemapResource_TilemapResource_0=Module["_emscripten_bind_TilemapResource_TilemapResource_0"]=function(){return(_emscripten_bind_TilemapResource_TilemapResource_0=Module["_emscripten_bind_TilemapResource_TilemapResource_0"]=Module["asm"]["su"]).apply(null,arguments)};var _emscripten_bind_TilemapResource_Clone_0=Module["_emscripten_bind_TilemapResource_Clone_0"]=function(){return(_emscripten_bind_TilemapResource_Clone_0=Module["_emscripten_bind_TilemapResource_Clone_0"]=Module["asm"]["tu"]).apply(null,arguments)};var _emscripten_bind_TilemapResource_SetName_1=Module["_emscripten_bind_TilemapResource_SetName_1"]=function(){return(_emscripten_bind_TilemapResource_SetName_1=Module["_emscripten_bind_TilemapResource_SetName_1"]=Module["asm"]["uu"]).apply(null,arguments)};var _emscripten_bind_TilemapResource_GetName_0=Module["_emscripten_bind_TilemapResource_GetName_0"]=function(){return(_emscripten_bind_TilemapResource_GetName_0=Module["_emscripten_bind_TilemapResource_GetName_0"]=Module["asm"]["vu"]).apply(null,arguments)};var _emscripten_bind_TilemapResource_SetKind_1=Module["_emscripten_bind_TilemapResource_SetKind_1"]=function(){return(_emscripten_bind_TilemapResource_SetKind_1=Module["_emscripten_bind_TilemapResource_SetKind_1"]=Module["asm"]["wu"]).apply(null,arguments)};var _emscripten_bind_TilemapResource_GetKind_0=Module["_emscripten_bind_TilemapResource_GetKind_0"]=function(){return(_emscripten_bind_TilemapResource_GetKind_0=Module["_emscripten_bind_TilemapResource_GetKind_0"]=Module["asm"]["xu"]).apply(null,arguments)};var _emscripten_bind_TilemapResource_IsUserAdded_0=Module["_emscripten_bind_TilemapResource_IsUserAdded_0"]=function(){return(_emscripten_bind_TilemapResource_IsUserAdded_0=Module["_emscripten_bind_TilemapResource_IsUserAdded_0"]=Module["asm"]["yu"]).apply(null,arguments)};var _emscripten_bind_TilemapResource_SetUserAdded_1=Module["_emscripten_bind_TilemapResource_SetUserAdded_1"]=function(){return(_emscripten_bind_TilemapResource_SetUserAdded_1=Module["_emscripten_bind_TilemapResource_SetUserAdded_1"]=Module["asm"]["zu"]).apply(null,arguments)};var _emscripten_bind_TilemapResource_UseFile_0=Module["_emscripten_bind_TilemapResource_UseFile_0"]=function(){return(_emscripten_bind_TilemapResource_UseFile_0=Module["_emscripten_bind_TilemapResource_UseFile_0"]=Module["asm"]["Au"]).apply(null,arguments)};var _emscripten_bind_TilemapResource_SetFile_1=Module["_emscripten_bind_TilemapResource_SetFile_1"]=function(){return(_emscripten_bind_TilemapResource_SetFile_1=Module["_emscripten_bind_TilemapResource_SetFile_1"]=Module["asm"]["Bu"]).apply(null,arguments)};var _emscripten_bind_TilemapResource_GetFile_0=Module["_emscripten_bind_TilemapResource_GetFile_0"]=function(){return(_emscripten_bind_TilemapResource_GetFile_0=Module["_emscripten_bind_TilemapResource_GetFile_0"]=Module["asm"]["Cu"]).apply(null,arguments)};var _emscripten_bind_TilemapResource_SetMetadata_1=Module["_emscripten_bind_TilemapResource_SetMetadata_1"]=function(){return(_emscripten_bind_TilemapResource_SetMetadata_1=Module["_emscripten_bind_TilemapResource_SetMetadata_1"]=Module["asm"]["Du"]).apply(null,arguments)};var _emscripten_bind_TilemapResource_GetMetadata_0=Module["_emscripten_bind_TilemapResource_GetMetadata_0"]=function(){return(_emscripten_bind_TilemapResource_GetMetadata_0=Module["_emscripten_bind_TilemapResource_GetMetadata_0"]=Module["asm"]["Eu"]).apply(null,arguments)};var _emscripten_bind_TilemapResource_SetOrigin_2=Module["_emscripten_bind_TilemapResource_SetOrigin_2"]=function(){return(_emscripten_bind_TilemapResource_SetOrigin_2=Module["_emscripten_bind_TilemapResource_SetOrigin_2"]=Module["asm"]["Fu"]).apply(null,arguments)};var _emscripten_bind_TilemapResource_GetOriginName_0=Module["_emscripten_bind_TilemapResource_GetOriginName_0"]=function(){return(_emscripten_bind_TilemapResource_GetOriginName_0=Module["_emscripten_bind_TilemapResource_GetOriginName_0"]=Module["asm"]["Gu"]).apply(null,arguments)};var _emscripten_bind_TilemapResource_GetOriginIdentifier_0=Module["_emscripten_bind_TilemapResource_GetOriginIdentifier_0"]=function(){return(_emscripten_bind_TilemapResource_GetOriginIdentifier_0=Module["_emscripten_bind_TilemapResource_GetOriginIdentifier_0"]=Module["asm"]["Hu"]).apply(null,arguments)};var _emscripten_bind_TilemapResource_GetProperties_0=Module["_emscripten_bind_TilemapResource_GetProperties_0"]=function(){return(_emscripten_bind_TilemapResource_GetProperties_0=Module["_emscripten_bind_TilemapResource_GetProperties_0"]=Module["asm"]["Iu"]).apply(null,arguments)};var _emscripten_bind_TilemapResource_UpdateProperty_2=Module["_emscripten_bind_TilemapResource_UpdateProperty_2"]=function(){return(_emscripten_bind_TilemapResource_UpdateProperty_2=Module["_emscripten_bind_TilemapResource_UpdateProperty_2"]=Module["asm"]["Ju"]).apply(null,arguments)};var _emscripten_bind_TilemapResource_SerializeTo_1=Module["_emscripten_bind_TilemapResource_SerializeTo_1"]=function(){return(_emscripten_bind_TilemapResource_SerializeTo_1=Module["_emscripten_bind_TilemapResource_SerializeTo_1"]=Module["asm"]["Ku"]).apply(null,arguments)};var _emscripten_bind_TilemapResource_UnserializeFrom_1=Module["_emscripten_bind_TilemapResource_UnserializeFrom_1"]=function(){return(_emscripten_bind_TilemapResource_UnserializeFrom_1=Module["_emscripten_bind_TilemapResource_UnserializeFrom_1"]=Module["asm"]["Lu"]).apply(null,arguments)};var _emscripten_bind_TilemapResource___destroy___0=Module["_emscripten_bind_TilemapResource___destroy___0"]=function(){return(_emscripten_bind_TilemapResource___destroy___0=Module["_emscripten_bind_TilemapResource___destroy___0"]=Module["asm"]["Mu"]).apply(null,arguments)};var _emscripten_bind_TilesetResource_TilesetResource_0=Module["_emscripten_bind_TilesetResource_TilesetResource_0"]=function(){return(_emscripten_bind_TilesetResource_TilesetResource_0=Module["_emscripten_bind_TilesetResource_TilesetResource_0"]=Module["asm"]["Nu"]).apply(null,arguments)};var _emscripten_bind_TilesetResource_Clone_0=Module["_emscripten_bind_TilesetResource_Clone_0"]=function(){return(_emscripten_bind_TilesetResource_Clone_0=Module["_emscripten_bind_TilesetResource_Clone_0"]=Module["asm"]["Ou"]).apply(null,arguments)};var _emscripten_bind_TilesetResource_SetName_1=Module["_emscripten_bind_TilesetResource_SetName_1"]=function(){return(_emscripten_bind_TilesetResource_SetName_1=Module["_emscripten_bind_TilesetResource_SetName_1"]=Module["asm"]["Pu"]).apply(null,arguments)};var _emscripten_bind_TilesetResource_GetName_0=Module["_emscripten_bind_TilesetResource_GetName_0"]=function(){return(_emscripten_bind_TilesetResource_GetName_0=Module["_emscripten_bind_TilesetResource_GetName_0"]=Module["asm"]["Qu"]).apply(null,arguments)};var _emscripten_bind_TilesetResource_SetKind_1=Module["_emscripten_bind_TilesetResource_SetKind_1"]=function(){return(_emscripten_bind_TilesetResource_SetKind_1=Module["_emscripten_bind_TilesetResource_SetKind_1"]=Module["asm"]["Ru"]).apply(null,arguments)};var _emscripten_bind_TilesetResource_GetKind_0=Module["_emscripten_bind_TilesetResource_GetKind_0"]=function(){return(_emscripten_bind_TilesetResource_GetKind_0=Module["_emscripten_bind_TilesetResource_GetKind_0"]=Module["asm"]["Su"]).apply(null,arguments)};var _emscripten_bind_TilesetResource_IsUserAdded_0=Module["_emscripten_bind_TilesetResource_IsUserAdded_0"]=function(){return(_emscripten_bind_TilesetResource_IsUserAdded_0=Module["_emscripten_bind_TilesetResource_IsUserAdded_0"]=Module["asm"]["Tu"]).apply(null,arguments)};var _emscripten_bind_TilesetResource_SetUserAdded_1=Module["_emscripten_bind_TilesetResource_SetUserAdded_1"]=function(){return(_emscripten_bind_TilesetResource_SetUserAdded_1=Module["_emscripten_bind_TilesetResource_SetUserAdded_1"]=Module["asm"]["Uu"]).apply(null,arguments)};var _emscripten_bind_TilesetResource_UseFile_0=Module["_emscripten_bind_TilesetResource_UseFile_0"]=function(){return(_emscripten_bind_TilesetResource_UseFile_0=Module["_emscripten_bind_TilesetResource_UseFile_0"]=Module["asm"]["Vu"]).apply(null,arguments)};var _emscripten_bind_TilesetResource_SetFile_1=Module["_emscripten_bind_TilesetResource_SetFile_1"]=function(){return(_emscripten_bind_TilesetResource_SetFile_1=Module["_emscripten_bind_TilesetResource_SetFile_1"]=Module["asm"]["Wu"]).apply(null,arguments)};var _emscripten_bind_TilesetResource_GetFile_0=Module["_emscripten_bind_TilesetResource_GetFile_0"]=function(){return(_emscripten_bind_TilesetResource_GetFile_0=Module["_emscripten_bind_TilesetResource_GetFile_0"]=Module["asm"]["Xu"]).apply(null,arguments)};var _emscripten_bind_TilesetResource_SetMetadata_1=Module["_emscripten_bind_TilesetResource_SetMetadata_1"]=function(){return(_emscripten_bind_TilesetResource_SetMetadata_1=Module["_emscripten_bind_TilesetResource_SetMetadata_1"]=Module["asm"]["Yu"]).apply(null,arguments)};var _emscripten_bind_TilesetResource_GetMetadata_0=Module["_emscripten_bind_TilesetResource_GetMetadata_0"]=function(){return(_emscripten_bind_TilesetResource_GetMetadata_0=Module["_emscripten_bind_TilesetResource_GetMetadata_0"]=Module["asm"]["Zu"]).apply(null,arguments)};var _emscripten_bind_TilesetResource_SetOrigin_2=Module["_emscripten_bind_TilesetResource_SetOrigin_2"]=function(){return(_emscripten_bind_TilesetResource_SetOrigin_2=Module["_emscripten_bind_TilesetResource_SetOrigin_2"]=Module["asm"]["_u"]).apply(null,arguments)};var _emscripten_bind_TilesetResource_GetOriginName_0=Module["_emscripten_bind_TilesetResource_GetOriginName_0"]=function(){return(_emscripten_bind_TilesetResource_GetOriginName_0=Module["_emscripten_bind_TilesetResource_GetOriginName_0"]=Module["asm"]["$u"]).apply(null,arguments)};var _emscripten_bind_TilesetResource_GetOriginIdentifier_0=Module["_emscripten_bind_TilesetResource_GetOriginIdentifier_0"]=function(){return(_emscripten_bind_TilesetResource_GetOriginIdentifier_0=Module["_emscripten_bind_TilesetResource_GetOriginIdentifier_0"]=Module["asm"]["av"]).apply(null,arguments)};var _emscripten_bind_TilesetResource_GetProperties_0=Module["_emscripten_bind_TilesetResource_GetProperties_0"]=function(){return(_emscripten_bind_TilesetResource_GetProperties_0=Module["_emscripten_bind_TilesetResource_GetProperties_0"]=Module["asm"]["bv"]).apply(null,arguments)};var _emscripten_bind_TilesetResource_UpdateProperty_2=Module["_emscripten_bind_TilesetResource_UpdateProperty_2"]=function(){return(_emscripten_bind_TilesetResource_UpdateProperty_2=Module["_emscripten_bind_TilesetResource_UpdateProperty_2"]=Module["asm"]["cv"]).apply(null,arguments)};var _emscripten_bind_TilesetResource_SerializeTo_1=Module["_emscripten_bind_TilesetResource_SerializeTo_1"]=function(){return(_emscripten_bind_TilesetResource_SerializeTo_1=Module["_emscripten_bind_TilesetResource_SerializeTo_1"]=Module["asm"]["dv"]).apply(null,arguments)};var _emscripten_bind_TilesetResource_UnserializeFrom_1=Module["_emscripten_bind_TilesetResource_UnserializeFrom_1"]=function(){return(_emscripten_bind_TilesetResource_UnserializeFrom_1=Module["_emscripten_bind_TilesetResource_UnserializeFrom_1"]=Module["asm"]["ev"]).apply(null,arguments)};var _emscripten_bind_TilesetResource___destroy___0=Module["_emscripten_bind_TilesetResource___destroy___0"]=function(){return(_emscripten_bind_TilesetResource___destroy___0=Module["_emscripten_bind_TilesetResource___destroy___0"]=Module["asm"]["fv"]).apply(null,arguments)};var _emscripten_bind_Model3DResource_Model3DResource_0=Module["_emscripten_bind_Model3DResource_Model3DResource_0"]=function(){return(_emscripten_bind_Model3DResource_Model3DResource_0=Module["_emscripten_bind_Model3DResource_Model3DResource_0"]=Module["asm"]["gv"]).apply(null,arguments)};var _emscripten_bind_Model3DResource_Clone_0=Module["_emscripten_bind_Model3DResource_Clone_0"]=function(){return(_emscripten_bind_Model3DResource_Clone_0=Module["_emscripten_bind_Model3DResource_Clone_0"]=Module["asm"]["hv"]).apply(null,arguments)};var _emscripten_bind_Model3DResource_SetName_1=Module["_emscripten_bind_Model3DResource_SetName_1"]=function(){return(_emscripten_bind_Model3DResource_SetName_1=Module["_emscripten_bind_Model3DResource_SetName_1"]=Module["asm"]["iv"]).apply(null,arguments)};var _emscripten_bind_Model3DResource_GetName_0=Module["_emscripten_bind_Model3DResource_GetName_0"]=function(){return(_emscripten_bind_Model3DResource_GetName_0=Module["_emscripten_bind_Model3DResource_GetName_0"]=Module["asm"]["jv"]).apply(null,arguments)};var _emscripten_bind_Model3DResource_SetKind_1=Module["_emscripten_bind_Model3DResource_SetKind_1"]=function(){return(_emscripten_bind_Model3DResource_SetKind_1=Module["_emscripten_bind_Model3DResource_SetKind_1"]=Module["asm"]["kv"]).apply(null,arguments)};var _emscripten_bind_Model3DResource_GetKind_0=Module["_emscripten_bind_Model3DResource_GetKind_0"]=function(){return(_emscripten_bind_Model3DResource_GetKind_0=Module["_emscripten_bind_Model3DResource_GetKind_0"]=Module["asm"]["lv"]).apply(null,arguments)};var _emscripten_bind_Model3DResource_IsUserAdded_0=Module["_emscripten_bind_Model3DResource_IsUserAdded_0"]=function(){return(_emscripten_bind_Model3DResource_IsUserAdded_0=Module["_emscripten_bind_Model3DResource_IsUserAdded_0"]=Module["asm"]["mv"]).apply(null,arguments)};var _emscripten_bind_Model3DResource_SetUserAdded_1=Module["_emscripten_bind_Model3DResource_SetUserAdded_1"]=function(){return(_emscripten_bind_Model3DResource_SetUserAdded_1=Module["_emscripten_bind_Model3DResource_SetUserAdded_1"]=Module["asm"]["nv"]).apply(null,arguments)};var _emscripten_bind_Model3DResource_UseFile_0=Module["_emscripten_bind_Model3DResource_UseFile_0"]=function(){return(_emscripten_bind_Model3DResource_UseFile_0=Module["_emscripten_bind_Model3DResource_UseFile_0"]=Module["asm"]["ov"]).apply(null,arguments)};var _emscripten_bind_Model3DResource_SetFile_1=Module["_emscripten_bind_Model3DResource_SetFile_1"]=function(){return(_emscripten_bind_Model3DResource_SetFile_1=Module["_emscripten_bind_Model3DResource_SetFile_1"]=Module["asm"]["pv"]).apply(null,arguments)};var _emscripten_bind_Model3DResource_GetFile_0=Module["_emscripten_bind_Model3DResource_GetFile_0"]=function(){return(_emscripten_bind_Model3DResource_GetFile_0=Module["_emscripten_bind_Model3DResource_GetFile_0"]=Module["asm"]["qv"]).apply(null,arguments)};var _emscripten_bind_Model3DResource_SetMetadata_1=Module["_emscripten_bind_Model3DResource_SetMetadata_1"]=function(){return(_emscripten_bind_Model3DResource_SetMetadata_1=Module["_emscripten_bind_Model3DResource_SetMetadata_1"]=Module["asm"]["rv"]).apply(null,arguments)};var _emscripten_bind_Model3DResource_GetMetadata_0=Module["_emscripten_bind_Model3DResource_GetMetadata_0"]=function(){return(_emscripten_bind_Model3DResource_GetMetadata_0=Module["_emscripten_bind_Model3DResource_GetMetadata_0"]=Module["asm"]["sv"]).apply(null,arguments)};var _emscripten_bind_Model3DResource_SetOrigin_2=Module["_emscripten_bind_Model3DResource_SetOrigin_2"]=function(){return(_emscripten_bind_Model3DResource_SetOrigin_2=Module["_emscripten_bind_Model3DResource_SetOrigin_2"]=Module["asm"]["tv"]).apply(null,arguments)};var _emscripten_bind_Model3DResource_GetOriginName_0=Module["_emscripten_bind_Model3DResource_GetOriginName_0"]=function(){return(_emscripten_bind_Model3DResource_GetOriginName_0=Module["_emscripten_bind_Model3DResource_GetOriginName_0"]=Module["asm"]["uv"]).apply(null,arguments)};var _emscripten_bind_Model3DResource_GetOriginIdentifier_0=Module["_emscripten_bind_Model3DResource_GetOriginIdentifier_0"]=function(){return(_emscripten_bind_Model3DResource_GetOriginIdentifier_0=Module["_emscripten_bind_Model3DResource_GetOriginIdentifier_0"]=Module["asm"]["vv"]).apply(null,arguments)};var _emscripten_bind_Model3DResource_GetProperties_0=Module["_emscripten_bind_Model3DResource_GetProperties_0"]=function(){return(_emscripten_bind_Model3DResource_GetProperties_0=Module["_emscripten_bind_Model3DResource_GetProperties_0"]=Module["asm"]["wv"]).apply(null,arguments)};var _emscripten_bind_Model3DResource_UpdateProperty_2=Module["_emscripten_bind_Model3DResource_UpdateProperty_2"]=function(){return(_emscripten_bind_Model3DResource_UpdateProperty_2=Module["_emscripten_bind_Model3DResource_UpdateProperty_2"]=Module["asm"]["xv"]).apply(null,arguments)};var _emscripten_bind_Model3DResource_SerializeTo_1=Module["_emscripten_bind_Model3DResource_SerializeTo_1"]=function(){return(_emscripten_bind_Model3DResource_SerializeTo_1=Module["_emscripten_bind_Model3DResource_SerializeTo_1"]=Module["asm"]["yv"]).apply(null,arguments)};var _emscripten_bind_Model3DResource_UnserializeFrom_1=Module["_emscripten_bind_Model3DResource_UnserializeFrom_1"]=function(){return(_emscripten_bind_Model3DResource_UnserializeFrom_1=Module["_emscripten_bind_Model3DResource_UnserializeFrom_1"]=Module["asm"]["zv"]).apply(null,arguments)};var _emscripten_bind_Model3DResource___destroy___0=Module["_emscripten_bind_Model3DResource___destroy___0"]=function(){return(_emscripten_bind_Model3DResource___destroy___0=Module["_emscripten_bind_Model3DResource___destroy___0"]=Module["asm"]["Av"]).apply(null,arguments)};var _emscripten_bind_AtlasResource_AtlasResource_0=Module["_emscripten_bind_AtlasResource_AtlasResource_0"]=function(){return(_emscripten_bind_AtlasResource_AtlasResource_0=Module["_emscripten_bind_AtlasResource_AtlasResource_0"]=Module["asm"]["Bv"]).apply(null,arguments)};var _emscripten_bind_AtlasResource_Clone_0=Module["_emscripten_bind_AtlasResource_Clone_0"]=function(){return(_emscripten_bind_AtlasResource_Clone_0=Module["_emscripten_bind_AtlasResource_Clone_0"]=Module["asm"]["Cv"]).apply(null,arguments)};var _emscripten_bind_AtlasResource_SetName_1=Module["_emscripten_bind_AtlasResource_SetName_1"]=function(){return(_emscripten_bind_AtlasResource_SetName_1=Module["_emscripten_bind_AtlasResource_SetName_1"]=Module["asm"]["Dv"]).apply(null,arguments)};var _emscripten_bind_AtlasResource_GetName_0=Module["_emscripten_bind_AtlasResource_GetName_0"]=function(){return(_emscripten_bind_AtlasResource_GetName_0=Module["_emscripten_bind_AtlasResource_GetName_0"]=Module["asm"]["Ev"]).apply(null,arguments)};var _emscripten_bind_AtlasResource_SetKind_1=Module["_emscripten_bind_AtlasResource_SetKind_1"]=function(){return(_emscripten_bind_AtlasResource_SetKind_1=Module["_emscripten_bind_AtlasResource_SetKind_1"]=Module["asm"]["Fv"]).apply(null,arguments)};var _emscripten_bind_AtlasResource_GetKind_0=Module["_emscripten_bind_AtlasResource_GetKind_0"]=function(){return(_emscripten_bind_AtlasResource_GetKind_0=Module["_emscripten_bind_AtlasResource_GetKind_0"]=Module["asm"]["Gv"]).apply(null,arguments)};var _emscripten_bind_AtlasResource_IsUserAdded_0=Module["_emscripten_bind_AtlasResource_IsUserAdded_0"]=function(){return(_emscripten_bind_AtlasResource_IsUserAdded_0=Module["_emscripten_bind_AtlasResource_IsUserAdded_0"]=Module["asm"]["Hv"]).apply(null,arguments)};var _emscripten_bind_AtlasResource_SetUserAdded_1=Module["_emscripten_bind_AtlasResource_SetUserAdded_1"]=function(){return(_emscripten_bind_AtlasResource_SetUserAdded_1=Module["_emscripten_bind_AtlasResource_SetUserAdded_1"]=Module["asm"]["Iv"]).apply(null,arguments)};var _emscripten_bind_AtlasResource_UseFile_0=Module["_emscripten_bind_AtlasResource_UseFile_0"]=function(){return(_emscripten_bind_AtlasResource_UseFile_0=Module["_emscripten_bind_AtlasResource_UseFile_0"]=Module["asm"]["Jv"]).apply(null,arguments)};var _emscripten_bind_AtlasResource_SetFile_1=Module["_emscripten_bind_AtlasResource_SetFile_1"]=function(){return(_emscripten_bind_AtlasResource_SetFile_1=Module["_emscripten_bind_AtlasResource_SetFile_1"]=Module["asm"]["Kv"]).apply(null,arguments)};var _emscripten_bind_AtlasResource_GetFile_0=Module["_emscripten_bind_AtlasResource_GetFile_0"]=function(){return(_emscripten_bind_AtlasResource_GetFile_0=Module["_emscripten_bind_AtlasResource_GetFile_0"]=Module["asm"]["Lv"]).apply(null,arguments)};var _emscripten_bind_AtlasResource_SetMetadata_1=Module["_emscripten_bind_AtlasResource_SetMetadata_1"]=function(){return(_emscripten_bind_AtlasResource_SetMetadata_1=Module["_emscripten_bind_AtlasResource_SetMetadata_1"]=Module["asm"]["Mv"]).apply(null,arguments)};var _emscripten_bind_AtlasResource_GetMetadata_0=Module["_emscripten_bind_AtlasResource_GetMetadata_0"]=function(){return(_emscripten_bind_AtlasResource_GetMetadata_0=Module["_emscripten_bind_AtlasResource_GetMetadata_0"]=Module["asm"]["Nv"]).apply(null,arguments)};var _emscripten_bind_AtlasResource_SetOrigin_2=Module["_emscripten_bind_AtlasResource_SetOrigin_2"]=function(){return(_emscripten_bind_AtlasResource_SetOrigin_2=Module["_emscripten_bind_AtlasResource_SetOrigin_2"]=Module["asm"]["Ov"]).apply(null,arguments)};var _emscripten_bind_AtlasResource_GetOriginName_0=Module["_emscripten_bind_AtlasResource_GetOriginName_0"]=function(){return(_emscripten_bind_AtlasResource_GetOriginName_0=Module["_emscripten_bind_AtlasResource_GetOriginName_0"]=Module["asm"]["Pv"]).apply(null,arguments)};var _emscripten_bind_AtlasResource_GetOriginIdentifier_0=Module["_emscripten_bind_AtlasResource_GetOriginIdentifier_0"]=function(){return(_emscripten_bind_AtlasResource_GetOriginIdentifier_0=Module["_emscripten_bind_AtlasResource_GetOriginIdentifier_0"]=Module["asm"]["Qv"]).apply(null,arguments)};var _emscripten_bind_AtlasResource_GetProperties_0=Module["_emscripten_bind_AtlasResource_GetProperties_0"]=function(){return(_emscripten_bind_AtlasResource_GetProperties_0=Module["_emscripten_bind_AtlasResource_GetProperties_0"]=Module["asm"]["Rv"]).apply(null,arguments)};var _emscripten_bind_AtlasResource_UpdateProperty_2=Module["_emscripten_bind_AtlasResource_UpdateProperty_2"]=function(){return(_emscripten_bind_AtlasResource_UpdateProperty_2=Module["_emscripten_bind_AtlasResource_UpdateProperty_2"]=Module["asm"]["Sv"]).apply(null,arguments)};var _emscripten_bind_AtlasResource_SerializeTo_1=Module["_emscripten_bind_AtlasResource_SerializeTo_1"]=function(){return(_emscripten_bind_AtlasResource_SerializeTo_1=Module["_emscripten_bind_AtlasResource_SerializeTo_1"]=Module["asm"]["Tv"]).apply(null,arguments)};var _emscripten_bind_AtlasResource_UnserializeFrom_1=Module["_emscripten_bind_AtlasResource_UnserializeFrom_1"]=function(){return(_emscripten_bind_AtlasResource_UnserializeFrom_1=Module["_emscripten_bind_AtlasResource_UnserializeFrom_1"]=Module["asm"]["Uv"]).apply(null,arguments)};var _emscripten_bind_AtlasResource___destroy___0=Module["_emscripten_bind_AtlasResource___destroy___0"]=function(){return(_emscripten_bind_AtlasResource___destroy___0=Module["_emscripten_bind_AtlasResource___destroy___0"]=Module["asm"]["Vv"]).apply(null,arguments)};var _emscripten_bind_JavaScriptResource_JavaScriptResource_0=Module["_emscripten_bind_JavaScriptResource_JavaScriptResource_0"]=function(){return(_emscripten_bind_JavaScriptResource_JavaScriptResource_0=Module["_emscripten_bind_JavaScriptResource_JavaScriptResource_0"]=Module["asm"]["Wv"]).apply(null,arguments)};var _emscripten_bind_JavaScriptResource_Clone_0=Module["_emscripten_bind_JavaScriptResource_Clone_0"]=function(){return(_emscripten_bind_JavaScriptResource_Clone_0=Module["_emscripten_bind_JavaScriptResource_Clone_0"]=Module["asm"]["Xv"]).apply(null,arguments)};var _emscripten_bind_JavaScriptResource_SetName_1=Module["_emscripten_bind_JavaScriptResource_SetName_1"]=function(){return(_emscripten_bind_JavaScriptResource_SetName_1=Module["_emscripten_bind_JavaScriptResource_SetName_1"]=Module["asm"]["Yv"]).apply(null,arguments)};var _emscripten_bind_JavaScriptResource_GetName_0=Module["_emscripten_bind_JavaScriptResource_GetName_0"]=function(){return(_emscripten_bind_JavaScriptResource_GetName_0=Module["_emscripten_bind_JavaScriptResource_GetName_0"]=Module["asm"]["Zv"]).apply(null,arguments)};var _emscripten_bind_JavaScriptResource_SetKind_1=Module["_emscripten_bind_JavaScriptResource_SetKind_1"]=function(){return(_emscripten_bind_JavaScriptResource_SetKind_1=Module["_emscripten_bind_JavaScriptResource_SetKind_1"]=Module["asm"]["_v"]).apply(null,arguments)};var _emscripten_bind_JavaScriptResource_GetKind_0=Module["_emscripten_bind_JavaScriptResource_GetKind_0"]=function(){return(_emscripten_bind_JavaScriptResource_GetKind_0=Module["_emscripten_bind_JavaScriptResource_GetKind_0"]=Module["asm"]["$v"]).apply(null,arguments)};var _emscripten_bind_JavaScriptResource_IsUserAdded_0=Module["_emscripten_bind_JavaScriptResource_IsUserAdded_0"]=function(){return(_emscripten_bind_JavaScriptResource_IsUserAdded_0=Module["_emscripten_bind_JavaScriptResource_IsUserAdded_0"]=Module["asm"]["aw"]).apply(null,arguments)};var _emscripten_bind_JavaScriptResource_SetUserAdded_1=Module["_emscripten_bind_JavaScriptResource_SetUserAdded_1"]=function(){return(_emscripten_bind_JavaScriptResource_SetUserAdded_1=Module["_emscripten_bind_JavaScriptResource_SetUserAdded_1"]=Module["asm"]["bw"]).apply(null,arguments)};var _emscripten_bind_JavaScriptResource_UseFile_0=Module["_emscripten_bind_JavaScriptResource_UseFile_0"]=function(){return(_emscripten_bind_JavaScriptResource_UseFile_0=Module["_emscripten_bind_JavaScriptResource_UseFile_0"]=Module["asm"]["cw"]).apply(null,arguments)};var _emscripten_bind_JavaScriptResource_SetFile_1=Module["_emscripten_bind_JavaScriptResource_SetFile_1"]=function(){return(_emscripten_bind_JavaScriptResource_SetFile_1=Module["_emscripten_bind_JavaScriptResource_SetFile_1"]=Module["asm"]["dw"]).apply(null,arguments)};var _emscripten_bind_JavaScriptResource_GetFile_0=Module["_emscripten_bind_JavaScriptResource_GetFile_0"]=function(){return(_emscripten_bind_JavaScriptResource_GetFile_0=Module["_emscripten_bind_JavaScriptResource_GetFile_0"]=Module["asm"]["ew"]).apply(null,arguments)};var _emscripten_bind_JavaScriptResource_SetMetadata_1=Module["_emscripten_bind_JavaScriptResource_SetMetadata_1"]=function(){return(_emscripten_bind_JavaScriptResource_SetMetadata_1=Module["_emscripten_bind_JavaScriptResource_SetMetadata_1"]=Module["asm"]["fw"]).apply(null,arguments)};var _emscripten_bind_JavaScriptResource_GetMetadata_0=Module["_emscripten_bind_JavaScriptResource_GetMetadata_0"]=function(){return(_emscripten_bind_JavaScriptResource_GetMetadata_0=Module["_emscripten_bind_JavaScriptResource_GetMetadata_0"]=Module["asm"]["gw"]).apply(null,arguments)};var _emscripten_bind_JavaScriptResource_SetOrigin_2=Module["_emscripten_bind_JavaScriptResource_SetOrigin_2"]=function(){return(_emscripten_bind_JavaScriptResource_SetOrigin_2=Module["_emscripten_bind_JavaScriptResource_SetOrigin_2"]=Module["asm"]["hw"]).apply(null,arguments)};var _emscripten_bind_JavaScriptResource_GetOriginName_0=Module["_emscripten_bind_JavaScriptResource_GetOriginName_0"]=function(){return(_emscripten_bind_JavaScriptResource_GetOriginName_0=Module["_emscripten_bind_JavaScriptResource_GetOriginName_0"]=Module["asm"]["iw"]).apply(null,arguments)};var _emscripten_bind_JavaScriptResource_GetOriginIdentifier_0=Module["_emscripten_bind_JavaScriptResource_GetOriginIdentifier_0"]=function(){return(_emscripten_bind_JavaScriptResource_GetOriginIdentifier_0=Module["_emscripten_bind_JavaScriptResource_GetOriginIdentifier_0"]=Module["asm"]["jw"]).apply(null,arguments)};var _emscripten_bind_JavaScriptResource_GetProperties_0=Module["_emscripten_bind_JavaScriptResource_GetProperties_0"]=function(){return(_emscripten_bind_JavaScriptResource_GetProperties_0=Module["_emscripten_bind_JavaScriptResource_GetProperties_0"]=Module["asm"]["kw"]).apply(null,arguments)};var _emscripten_bind_JavaScriptResource_UpdateProperty_2=Module["_emscripten_bind_JavaScriptResource_UpdateProperty_2"]=function(){return(_emscripten_bind_JavaScriptResource_UpdateProperty_2=Module["_emscripten_bind_JavaScriptResource_UpdateProperty_2"]=Module["asm"]["lw"]).apply(null,arguments)};var _emscripten_bind_JavaScriptResource_SerializeTo_1=Module["_emscripten_bind_JavaScriptResource_SerializeTo_1"]=function(){return(_emscripten_bind_JavaScriptResource_SerializeTo_1=Module["_emscripten_bind_JavaScriptResource_SerializeTo_1"]=Module["asm"]["mw"]).apply(null,arguments)};var _emscripten_bind_JavaScriptResource_UnserializeFrom_1=Module["_emscripten_bind_JavaScriptResource_UnserializeFrom_1"]=function(){return(_emscripten_bind_JavaScriptResource_UnserializeFrom_1=Module["_emscripten_bind_JavaScriptResource_UnserializeFrom_1"]=Module["asm"]["nw"]).apply(null,arguments)};var _emscripten_bind_JavaScriptResource___destroy___0=Module["_emscripten_bind_JavaScriptResource___destroy___0"]=function(){return(_emscripten_bind_JavaScriptResource___destroy___0=Module["_emscripten_bind_JavaScriptResource___destroy___0"]=Module["asm"]["ow"]).apply(null,arguments)};var _emscripten_bind_InitialInstance_InitialInstance_0=Module["_emscripten_bind_InitialInstance_InitialInstance_0"]=function(){return(_emscripten_bind_InitialInstance_InitialInstance_0=Module["_emscripten_bind_InitialInstance_InitialInstance_0"]=Module["asm"]["pw"]).apply(null,arguments)};var _emscripten_bind_InitialInstance_SetObjectName_1=Module["_emscripten_bind_InitialInstance_SetObjectName_1"]=function(){return(_emscripten_bind_InitialInstance_SetObjectName_1=Module["_emscripten_bind_InitialInstance_SetObjectName_1"]=Module["asm"]["qw"]).apply(null,arguments)};var _emscripten_bind_InitialInstance_GetObjectName_0=Module["_emscripten_bind_InitialInstance_GetObjectName_0"]=function(){return(_emscripten_bind_InitialInstance_GetObjectName_0=Module["_emscripten_bind_InitialInstance_GetObjectName_0"]=Module["asm"]["rw"]).apply(null,arguments)};var _emscripten_bind_InitialInstance_GetX_0=Module["_emscripten_bind_InitialInstance_GetX_0"]=function(){return(_emscripten_bind_InitialInstance_GetX_0=Module["_emscripten_bind_InitialInstance_GetX_0"]=Module["asm"]["sw"]).apply(null,arguments)};var _emscripten_bind_InitialInstance_SetX_1=Module["_emscripten_bind_InitialInstance_SetX_1"]=function(){return(_emscripten_bind_InitialInstance_SetX_1=Module["_emscripten_bind_InitialInstance_SetX_1"]=Module["asm"]["tw"]).apply(null,arguments)};var _emscripten_bind_InitialInstance_GetY_0=Module["_emscripten_bind_InitialInstance_GetY_0"]=function(){return(_emscripten_bind_InitialInstance_GetY_0=Module["_emscripten_bind_InitialInstance_GetY_0"]=Module["asm"]["uw"]).apply(null,arguments)};var _emscripten_bind_InitialInstance_SetY_1=Module["_emscripten_bind_InitialInstance_SetY_1"]=function(){return(_emscripten_bind_InitialInstance_SetY_1=Module["_emscripten_bind_InitialInstance_SetY_1"]=Module["asm"]["vw"]).apply(null,arguments)};var _emscripten_bind_InitialInstance_GetZ_0=Module["_emscripten_bind_InitialInstance_GetZ_0"]=function(){return(_emscripten_bind_InitialInstance_GetZ_0=Module["_emscripten_bind_InitialInstance_GetZ_0"]=Module["asm"]["ww"]).apply(null,arguments)};var _emscripten_bind_InitialInstance_SetZ_1=Module["_emscripten_bind_InitialInstance_SetZ_1"]=function(){return(_emscripten_bind_InitialInstance_SetZ_1=Module["_emscripten_bind_InitialInstance_SetZ_1"]=Module["asm"]["xw"]).apply(null,arguments)};var _emscripten_bind_InitialInstance_GetAngle_0=Module["_emscripten_bind_InitialInstance_GetAngle_0"]=function(){return(_emscripten_bind_InitialInstance_GetAngle_0=Module["_emscripten_bind_InitialInstance_GetAngle_0"]=Module["asm"]["yw"]).apply(null,arguments)};var _emscripten_bind_InitialInstance_SetAngle_1=Module["_emscripten_bind_InitialInstance_SetAngle_1"]=function(){return(_emscripten_bind_InitialInstance_SetAngle_1=Module["_emscripten_bind_InitialInstance_SetAngle_1"]=Module["asm"]["zw"]).apply(null,arguments)};var _emscripten_bind_InitialInstance_GetRotationX_0=Module["_emscripten_bind_InitialInstance_GetRotationX_0"]=function(){return(_emscripten_bind_InitialInstance_GetRotationX_0=Module["_emscripten_bind_InitialInstance_GetRotationX_0"]=Module["asm"]["Aw"]).apply(null,arguments)};var _emscripten_bind_InitialInstance_SetRotationX_1=Module["_emscripten_bind_InitialInstance_SetRotationX_1"]=function(){return(_emscripten_bind_InitialInstance_SetRotationX_1=Module["_emscripten_bind_InitialInstance_SetRotationX_1"]=Module["asm"]["Bw"]).apply(null,arguments)};var _emscripten_bind_InitialInstance_GetRotationY_0=Module["_emscripten_bind_InitialInstance_GetRotationY_0"]=function(){return(_emscripten_bind_InitialInstance_GetRotationY_0=Module["_emscripten_bind_InitialInstance_GetRotationY_0"]=Module["asm"]["Cw"]).apply(null,arguments)};var _emscripten_bind_InitialInstance_SetRotationY_1=Module["_emscripten_bind_InitialInstance_SetRotationY_1"]=function(){return(_emscripten_bind_InitialInstance_SetRotationY_1=Module["_emscripten_bind_InitialInstance_SetRotationY_1"]=Module["asm"]["Dw"]).apply(null,arguments)};var _emscripten_bind_InitialInstance_IsLocked_0=Module["_emscripten_bind_InitialInstance_IsLocked_0"]=function(){return(_emscripten_bind_InitialInstance_IsLocked_0=Module["_emscripten_bind_InitialInstance_IsLocked_0"]=Module["asm"]["Ew"]).apply(null,arguments)};var _emscripten_bind_InitialInstance_SetLocked_1=Module["_emscripten_bind_InitialInstance_SetLocked_1"]=function(){return(_emscripten_bind_InitialInstance_SetLocked_1=Module["_emscripten_bind_InitialInstance_SetLocked_1"]=Module["asm"]["Fw"]).apply(null,arguments)};var _emscripten_bind_InitialInstance_IsSealed_0=Module["_emscripten_bind_InitialInstance_IsSealed_0"]=function(){return(_emscripten_bind_InitialInstance_IsSealed_0=Module["_emscripten_bind_InitialInstance_IsSealed_0"]=Module["asm"]["Gw"]).apply(null,arguments)};var _emscripten_bind_InitialInstance_SetSealed_1=Module["_emscripten_bind_InitialInstance_SetSealed_1"]=function(){return(_emscripten_bind_InitialInstance_SetSealed_1=Module["_emscripten_bind_InitialInstance_SetSealed_1"]=Module["asm"]["Hw"]).apply(null,arguments)};var _emscripten_bind_InitialInstance_ShouldKeepRatio_0=Module["_emscripten_bind_InitialInstance_ShouldKeepRatio_0"]=function(){return(_emscripten_bind_InitialInstance_ShouldKeepRatio_0=Module["_emscripten_bind_InitialInstance_ShouldKeepRatio_0"]=Module["asm"]["Iw"]).apply(null,arguments)};var _emscripten_bind_InitialInstance_SetShouldKeepRatio_1=Module["_emscripten_bind_InitialInstance_SetShouldKeepRatio_1"]=function(){return(_emscripten_bind_InitialInstance_SetShouldKeepRatio_1=Module["_emscripten_bind_InitialInstance_SetShouldKeepRatio_1"]=Module["asm"]["Jw"]).apply(null,arguments)};var _emscripten_bind_InitialInstance_GetZOrder_0=Module["_emscripten_bind_InitialInstance_GetZOrder_0"]=function(){return(_emscripten_bind_InitialInstance_GetZOrder_0=Module["_emscripten_bind_InitialInstance_GetZOrder_0"]=Module["asm"]["Kw"]).apply(null,arguments)};var _emscripten_bind_InitialInstance_SetZOrder_1=Module["_emscripten_bind_InitialInstance_SetZOrder_1"]=function(){return(_emscripten_bind_InitialInstance_SetZOrder_1=Module["_emscripten_bind_InitialInstance_SetZOrder_1"]=Module["asm"]["Lw"]).apply(null,arguments)};var _emscripten_bind_InitialInstance_GetOpacity_0=Module["_emscripten_bind_InitialInstance_GetOpacity_0"]=function(){return(_emscripten_bind_InitialInstance_GetOpacity_0=Module["_emscripten_bind_InitialInstance_GetOpacity_0"]=Module["asm"]["Mw"]).apply(null,arguments)};var _emscripten_bind_InitialInstance_SetOpacity_1=Module["_emscripten_bind_InitialInstance_SetOpacity_1"]=function(){return(_emscripten_bind_InitialInstance_SetOpacity_1=Module["_emscripten_bind_InitialInstance_SetOpacity_1"]=Module["asm"]["Nw"]).apply(null,arguments)};var _emscripten_bind_InitialInstance_GetLayer_0=Module["_emscripten_bind_InitialInstance_GetLayer_0"]=function(){return(_emscripten_bind_InitialInstance_GetLayer_0=Module["_emscripten_bind_InitialInstance_GetLayer_0"]=Module["asm"]["Ow"]).apply(null,arguments)};var _emscripten_bind_InitialInstance_SetLayer_1=Module["_emscripten_bind_InitialInstance_SetLayer_1"]=function(){return(_emscripten_bind_InitialInstance_SetLayer_1=Module["_emscripten_bind_InitialInstance_SetLayer_1"]=Module["asm"]["Pw"]).apply(null,arguments)};var _emscripten_bind_InitialInstance_IsFlippedX_0=Module["_emscripten_bind_InitialInstance_IsFlippedX_0"]=function(){return(_emscripten_bind_InitialInstance_IsFlippedX_0=Module["_emscripten_bind_InitialInstance_IsFlippedX_0"]=Module["asm"]["Qw"]).apply(null,arguments)};var _emscripten_bind_InitialInstance_SetFlippedX_1=Module["_emscripten_bind_InitialInstance_SetFlippedX_1"]=function(){return(_emscripten_bind_InitialInstance_SetFlippedX_1=Module["_emscripten_bind_InitialInstance_SetFlippedX_1"]=Module["asm"]["Rw"]).apply(null,arguments)};var _emscripten_bind_InitialInstance_IsFlippedY_0=Module["_emscripten_bind_InitialInstance_IsFlippedY_0"]=function(){return(_emscripten_bind_InitialInstance_IsFlippedY_0=Module["_emscripten_bind_InitialInstance_IsFlippedY_0"]=Module["asm"]["Sw"]).apply(null,arguments)};var _emscripten_bind_InitialInstance_SetFlippedY_1=Module["_emscripten_bind_InitialInstance_SetFlippedY_1"]=function(){return(_emscripten_bind_InitialInstance_SetFlippedY_1=Module["_emscripten_bind_InitialInstance_SetFlippedY_1"]=Module["asm"]["Tw"]).apply(null,arguments)};var _emscripten_bind_InitialInstance_IsFlippedZ_0=Module["_emscripten_bind_InitialInstance_IsFlippedZ_0"]=function(){return(_emscripten_bind_InitialInstance_IsFlippedZ_0=Module["_emscripten_bind_InitialInstance_IsFlippedZ_0"]=Module["asm"]["Uw"]).apply(null,arguments)};var _emscripten_bind_InitialInstance_SetFlippedZ_1=Module["_emscripten_bind_InitialInstance_SetFlippedZ_1"]=function(){return(_emscripten_bind_InitialInstance_SetFlippedZ_1=Module["_emscripten_bind_InitialInstance_SetFlippedZ_1"]=Module["asm"]["Vw"]).apply(null,arguments)};var _emscripten_bind_InitialInstance_SetHasCustomSize_1=Module["_emscripten_bind_InitialInstance_SetHasCustomSize_1"]=function(){return(_emscripten_bind_InitialInstance_SetHasCustomSize_1=Module["_emscripten_bind_InitialInstance_SetHasCustomSize_1"]=Module["asm"]["Ww"]).apply(null,arguments)};var _emscripten_bind_InitialInstance_HasCustomSize_0=Module["_emscripten_bind_InitialInstance_HasCustomSize_0"]=function(){return(_emscripten_bind_InitialInstance_HasCustomSize_0=Module["_emscripten_bind_InitialInstance_HasCustomSize_0"]=Module["asm"]["Xw"]).apply(null,arguments)};var _emscripten_bind_InitialInstance_SetHasCustomDepth_1=Module["_emscripten_bind_InitialInstance_SetHasCustomDepth_1"]=function(){return(_emscripten_bind_InitialInstance_SetHasCustomDepth_1=Module["_emscripten_bind_InitialInstance_SetHasCustomDepth_1"]=Module["asm"]["Yw"]).apply(null,arguments)};var _emscripten_bind_InitialInstance_HasCustomDepth_0=Module["_emscripten_bind_InitialInstance_HasCustomDepth_0"]=function(){return(_emscripten_bind_InitialInstance_HasCustomDepth_0=Module["_emscripten_bind_InitialInstance_HasCustomDepth_0"]=Module["asm"]["Zw"]).apply(null,arguments)};var _emscripten_bind_InitialInstance_SetCustomWidth_1=Module["_emscripten_bind_InitialInstance_SetCustomWidth_1"]=function(){return(_emscripten_bind_InitialInstance_SetCustomWidth_1=Module["_emscripten_bind_InitialInstance_SetCustomWidth_1"]=Module["asm"]["_w"]).apply(null,arguments)};var _emscripten_bind_InitialInstance_GetCustomWidth_0=Module["_emscripten_bind_InitialInstance_GetCustomWidth_0"]=function(){return(_emscripten_bind_InitialInstance_GetCustomWidth_0=Module["_emscripten_bind_InitialInstance_GetCustomWidth_0"]=Module["asm"]["$w"]).apply(null,arguments)};var _emscripten_bind_InitialInstance_SetCustomHeight_1=Module["_emscripten_bind_InitialInstance_SetCustomHeight_1"]=function(){return(_emscripten_bind_InitialInstance_SetCustomHeight_1=Module["_emscripten_bind_InitialInstance_SetCustomHeight_1"]=Module["asm"]["ax"]).apply(null,arguments)};var _emscripten_bind_InitialInstance_GetCustomHeight_0=Module["_emscripten_bind_InitialInstance_GetCustomHeight_0"]=function(){return(_emscripten_bind_InitialInstance_GetCustomHeight_0=Module["_emscripten_bind_InitialInstance_GetCustomHeight_0"]=Module["asm"]["bx"]).apply(null,arguments)};var _emscripten_bind_InitialInstance_SetCustomDepth_1=Module["_emscripten_bind_InitialInstance_SetCustomDepth_1"]=function(){return(_emscripten_bind_InitialInstance_SetCustomDepth_1=Module["_emscripten_bind_InitialInstance_SetCustomDepth_1"]=Module["asm"]["cx"]).apply(null,arguments)};var _emscripten_bind_InitialInstance_GetCustomDepth_0=Module["_emscripten_bind_InitialInstance_GetCustomDepth_0"]=function(){return(_emscripten_bind_InitialInstance_GetCustomDepth_0=Module["_emscripten_bind_InitialInstance_GetCustomDepth_0"]=Module["asm"]["dx"]).apply(null,arguments)};var _emscripten_bind_InitialInstance_GetDefaultWidth_0=Module["_emscripten_bind_InitialInstance_GetDefaultWidth_0"]=function(){return(_emscripten_bind_InitialInstance_GetDefaultWidth_0=Module["_emscripten_bind_InitialInstance_GetDefaultWidth_0"]=Module["asm"]["ex"]).apply(null,arguments)};var _emscripten_bind_InitialInstance_GetDefaultHeight_0=Module["_emscripten_bind_InitialInstance_GetDefaultHeight_0"]=function(){return(_emscripten_bind_InitialInstance_GetDefaultHeight_0=Module["_emscripten_bind_InitialInstance_GetDefaultHeight_0"]=Module["asm"]["fx"]).apply(null,arguments)};var _emscripten_bind_InitialInstance_GetDefaultDepth_0=Module["_emscripten_bind_InitialInstance_GetDefaultDepth_0"]=function(){return(_emscripten_bind_InitialInstance_GetDefaultDepth_0=Module["_emscripten_bind_InitialInstance_GetDefaultDepth_0"]=Module["asm"]["gx"]).apply(null,arguments)};var _emscripten_bind_InitialInstance_SetDefaultWidth_1=Module["_emscripten_bind_InitialInstance_SetDefaultWidth_1"]=function(){return(_emscripten_bind_InitialInstance_SetDefaultWidth_1=Module["_emscripten_bind_InitialInstance_SetDefaultWidth_1"]=Module["asm"]["hx"]).apply(null,arguments)};var _emscripten_bind_InitialInstance_SetDefaultHeight_1=Module["_emscripten_bind_InitialInstance_SetDefaultHeight_1"]=function(){return(_emscripten_bind_InitialInstance_SetDefaultHeight_1=Module["_emscripten_bind_InitialInstance_SetDefaultHeight_1"]=Module["asm"]["ix"]).apply(null,arguments)};var _emscripten_bind_InitialInstance_SetDefaultDepth_1=Module["_emscripten_bind_InitialInstance_SetDefaultDepth_1"]=function(){return(_emscripten_bind_InitialInstance_SetDefaultDepth_1=Module["_emscripten_bind_InitialInstance_SetDefaultDepth_1"]=Module["asm"]["jx"]).apply(null,arguments)};var _emscripten_bind_InitialInstance_ResetPersistentUuid_0=Module["_emscripten_bind_InitialInstance_ResetPersistentUuid_0"]=function(){return(_emscripten_bind_InitialInstance_ResetPersistentUuid_0=Module["_emscripten_bind_InitialInstance_ResetPersistentUuid_0"]=Module["asm"]["kx"]).apply(null,arguments)};var _emscripten_bind_InitialInstance_GetPersistentUuid_0=Module["_emscripten_bind_InitialInstance_GetPersistentUuid_0"]=function(){return(_emscripten_bind_InitialInstance_GetPersistentUuid_0=Module["_emscripten_bind_InitialInstance_GetPersistentUuid_0"]=Module["asm"]["lx"]).apply(null,arguments)};var _emscripten_bind_InitialInstance_UpdateCustomProperty_4=Module["_emscripten_bind_InitialInstance_UpdateCustomProperty_4"]=function(){return(_emscripten_bind_InitialInstance_UpdateCustomProperty_4=Module["_emscripten_bind_InitialInstance_UpdateCustomProperty_4"]=Module["asm"]["mx"]).apply(null,arguments)};var _emscripten_bind_InitialInstance_GetCustomProperties_2=Module["_emscripten_bind_InitialInstance_GetCustomProperties_2"]=function(){return(_emscripten_bind_InitialInstance_GetCustomProperties_2=Module["_emscripten_bind_InitialInstance_GetCustomProperties_2"]=Module["asm"]["nx"]).apply(null,arguments)};var _emscripten_bind_InitialInstance_GetRawDoubleProperty_1=Module["_emscripten_bind_InitialInstance_GetRawDoubleProperty_1"]=function(){return(_emscripten_bind_InitialInstance_GetRawDoubleProperty_1=Module["_emscripten_bind_InitialInstance_GetRawDoubleProperty_1"]=Module["asm"]["ox"]).apply(null,arguments)};var _emscripten_bind_InitialInstance_GetRawStringProperty_1=Module["_emscripten_bind_InitialInstance_GetRawStringProperty_1"]=function(){return(_emscripten_bind_InitialInstance_GetRawStringProperty_1=Module["_emscripten_bind_InitialInstance_GetRawStringProperty_1"]=Module["asm"]["px"]).apply(null,arguments)};var _emscripten_bind_InitialInstance_SetRawDoubleProperty_2=Module["_emscripten_bind_InitialInstance_SetRawDoubleProperty_2"]=function(){return(_emscripten_bind_InitialInstance_SetRawDoubleProperty_2=Module["_emscripten_bind_InitialInstance_SetRawDoubleProperty_2"]=Module["asm"]["qx"]).apply(null,arguments)};var _emscripten_bind_InitialInstance_SetRawStringProperty_2=Module["_emscripten_bind_InitialInstance_SetRawStringProperty_2"]=function(){return(_emscripten_bind_InitialInstance_SetRawStringProperty_2=Module["_emscripten_bind_InitialInstance_SetRawStringProperty_2"]=Module["asm"]["rx"]).apply(null,arguments)};var _emscripten_bind_InitialInstance_GetVariables_0=Module["_emscripten_bind_InitialInstance_GetVariables_0"]=function(){return(_emscripten_bind_InitialInstance_GetVariables_0=Module["_emscripten_bind_InitialInstance_GetVariables_0"]=Module["asm"]["sx"]).apply(null,arguments)};var _emscripten_bind_InitialInstance_HasAnyOverriddenProperty_1=Module["_emscripten_bind_InitialInstance_HasAnyOverriddenProperty_1"]=function(){return(_emscripten_bind_InitialInstance_HasAnyOverriddenProperty_1=Module["_emscripten_bind_InitialInstance_HasAnyOverriddenProperty_1"]=Module["asm"]["tx"]).apply(null,arguments)};var _emscripten_bind_InitialInstance_HasAnyOverriddenPropertyForBehavior_1=Module["_emscripten_bind_InitialInstance_HasAnyOverriddenPropertyForBehavior_1"]=function(){return(_emscripten_bind_InitialInstance_HasAnyOverriddenPropertyForBehavior_1=Module["_emscripten_bind_InitialInstance_HasAnyOverriddenPropertyForBehavior_1"]=Module["asm"]["ux"]).apply(null,arguments)};var _emscripten_bind_InitialInstance_HasBehaviorOverridingNamed_1=Module["_emscripten_bind_InitialInstance_HasBehaviorOverridingNamed_1"]=function(){return(_emscripten_bind_InitialInstance_HasBehaviorOverridingNamed_1=Module["_emscripten_bind_InitialInstance_HasBehaviorOverridingNamed_1"]=Module["asm"]["vx"]).apply(null,arguments)};var _emscripten_bind_InitialInstance_AddNewBehaviorOverriding_3=Module["_emscripten_bind_InitialInstance_AddNewBehaviorOverriding_3"]=function(){return(_emscripten_bind_InitialInstance_AddNewBehaviorOverriding_3=Module["_emscripten_bind_InitialInstance_AddNewBehaviorOverriding_3"]=Module["asm"]["wx"]).apply(null,arguments)};var _emscripten_bind_InitialInstance_GetBehaviorOverriding_1=Module["_emscripten_bind_InitialInstance_GetBehaviorOverriding_1"]=function(){return(_emscripten_bind_InitialInstance_GetBehaviorOverriding_1=Module["_emscripten_bind_InitialInstance_GetBehaviorOverriding_1"]=Module["asm"]["xx"]).apply(null,arguments)};var _emscripten_bind_InitialInstance_RemoveBehaviorOverriding_1=Module["_emscripten_bind_InitialInstance_RemoveBehaviorOverriding_1"]=function(){return(_emscripten_bind_InitialInstance_RemoveBehaviorOverriding_1=Module["_emscripten_bind_InitialInstance_RemoveBehaviorOverriding_1"]=Module["asm"]["yx"]).apply(null,arguments)};var _emscripten_bind_InitialInstance_RenameBehaviorOverriding_2=Module["_emscripten_bind_InitialInstance_RenameBehaviorOverriding_2"]=function(){return(_emscripten_bind_InitialInstance_RenameBehaviorOverriding_2=Module["_emscripten_bind_InitialInstance_RenameBehaviorOverriding_2"]=Module["asm"]["zx"]).apply(null,arguments)};var _emscripten_bind_InitialInstance_SerializeTo_1=Module["_emscripten_bind_InitialInstance_SerializeTo_1"]=function(){return(_emscripten_bind_InitialInstance_SerializeTo_1=Module["_emscripten_bind_InitialInstance_SerializeTo_1"]=Module["asm"]["Ax"]).apply(null,arguments)};var _emscripten_bind_InitialInstance_UnserializeFrom_2=Module["_emscripten_bind_InitialInstance_UnserializeFrom_2"]=function(){return(_emscripten_bind_InitialInstance_UnserializeFrom_2=Module["_emscripten_bind_InitialInstance_UnserializeFrom_2"]=Module["asm"]["Bx"]).apply(null,arguments)};var _emscripten_bind_InitialInstance___destroy___0=Module["_emscripten_bind_InitialInstance___destroy___0"]=function(){return(_emscripten_bind_InitialInstance___destroy___0=Module["_emscripten_bind_InitialInstance___destroy___0"]=Module["asm"]["Cx"]).apply(null,arguments)};var _emscripten_bind_InitialInstancesContainer_InitialInstancesContainer_0=Module["_emscripten_bind_InitialInstancesContainer_InitialInstancesContainer_0"]=function(){return(_emscripten_bind_InitialInstancesContainer_InitialInstancesContainer_0=Module["_emscripten_bind_InitialInstancesContainer_InitialInstancesContainer_0"]=Module["asm"]["Dx"]).apply(null,arguments)};var _emscripten_bind_InitialInstancesContainer_Clone_0=Module["_emscripten_bind_InitialInstancesContainer_Clone_0"]=function(){return(_emscripten_bind_InitialInstancesContainer_Clone_0=Module["_emscripten_bind_InitialInstancesContainer_Clone_0"]=Module["asm"]["Ex"]).apply(null,arguments)};var _emscripten_bind_InitialInstancesContainer_GetInstancesCount_0=Module["_emscripten_bind_InitialInstancesContainer_GetInstancesCount_0"]=function(){return(_emscripten_bind_InitialInstancesContainer_GetInstancesCount_0=Module["_emscripten_bind_InitialInstancesContainer_GetInstancesCount_0"]=Module["asm"]["Fx"]).apply(null,arguments)};var _emscripten_bind_InitialInstancesContainer_IterateOverInstances_1=Module["_emscripten_bind_InitialInstancesContainer_IterateOverInstances_1"]=function(){return(_emscripten_bind_InitialInstancesContainer_IterateOverInstances_1=Module["_emscripten_bind_InitialInstancesContainer_IterateOverInstances_1"]=Module["asm"]["Gx"]).apply(null,arguments)};var _emscripten_bind_InitialInstancesContainer_IterateOverInstancesWithZOrdering_2=Module["_emscripten_bind_InitialInstancesContainer_IterateOverInstancesWithZOrdering_2"]=function(){return(_emscripten_bind_InitialInstancesContainer_IterateOverInstancesWithZOrdering_2=Module["_emscripten_bind_InitialInstancesContainer_IterateOverInstancesWithZOrdering_2"]=Module["asm"]["Hx"]).apply(null,arguments)};var _emscripten_bind_InitialInstancesContainer_MoveInstancesToLayer_2=Module["_emscripten_bind_InitialInstancesContainer_MoveInstancesToLayer_2"]=function(){return(_emscripten_bind_InitialInstancesContainer_MoveInstancesToLayer_2=Module["_emscripten_bind_InitialInstancesContainer_MoveInstancesToLayer_2"]=Module["asm"]["Ix"]).apply(null,arguments)};var _emscripten_bind_InitialInstancesContainer_RemoveAllInstancesOnLayer_1=Module["_emscripten_bind_InitialInstancesContainer_RemoveAllInstancesOnLayer_1"]=function(){return(_emscripten_bind_InitialInstancesContainer_RemoveAllInstancesOnLayer_1=Module["_emscripten_bind_InitialInstancesContainer_RemoveAllInstancesOnLayer_1"]=Module["asm"]["Jx"]).apply(null,arguments)};var _emscripten_bind_InitialInstancesContainer_RemoveInitialInstancesOfObject_1=Module["_emscripten_bind_InitialInstancesContainer_RemoveInitialInstancesOfObject_1"]=function(){return(_emscripten_bind_InitialInstancesContainer_RemoveInitialInstancesOfObject_1=Module["_emscripten_bind_InitialInstancesContainer_RemoveInitialInstancesOfObject_1"]=Module["asm"]["Kx"]).apply(null,arguments)};var _emscripten_bind_InitialInstancesContainer_HasInstancesOfObject_1=Module["_emscripten_bind_InitialInstancesContainer_HasInstancesOfObject_1"]=function(){return(_emscripten_bind_InitialInstancesContainer_HasInstancesOfObject_1=Module["_emscripten_bind_InitialInstancesContainer_HasInstancesOfObject_1"]=Module["asm"]["Lx"]).apply(null,arguments)};var _emscripten_bind_InitialInstancesContainer_IsInstancesCountOfObjectGreaterThan_2=Module["_emscripten_bind_InitialInstancesContainer_IsInstancesCountOfObjectGreaterThan_2"]=function(){return(_emscripten_bind_InitialInstancesContainer_IsInstancesCountOfObjectGreaterThan_2=Module["_emscripten_bind_InitialInstancesContainer_IsInstancesCountOfObjectGreaterThan_2"]=Module["asm"]["Mx"]).apply(null,arguments)};var _emscripten_bind_InitialInstancesContainer_SomeInstancesAreOnLayer_1=Module["_emscripten_bind_InitialInstancesContainer_SomeInstancesAreOnLayer_1"]=function(){return(_emscripten_bind_InitialInstancesContainer_SomeInstancesAreOnLayer_1=Module["_emscripten_bind_InitialInstancesContainer_SomeInstancesAreOnLayer_1"]=Module["asm"]["Nx"]).apply(null,arguments)};var _emscripten_bind_InitialInstancesContainer_RenameInstancesOfObject_2=Module["_emscripten_bind_InitialInstancesContainer_RenameInstancesOfObject_2"]=function(){return(_emscripten_bind_InitialInstancesContainer_RenameInstancesOfObject_2=Module["_emscripten_bind_InitialInstancesContainer_RenameInstancesOfObject_2"]=Module["asm"]["Ox"]).apply(null,arguments)};var _emscripten_bind_InitialInstancesContainer_RemoveInstance_1=Module["_emscripten_bind_InitialInstancesContainer_RemoveInstance_1"]=function(){return(_emscripten_bind_InitialInstancesContainer_RemoveInstance_1=Module["_emscripten_bind_InitialInstancesContainer_RemoveInstance_1"]=Module["asm"]["Px"]).apply(null,arguments)};var _emscripten_bind_InitialInstancesContainer_GetLayerInstancesCount_1=Module["_emscripten_bind_InitialInstancesContainer_GetLayerInstancesCount_1"]=function(){return(_emscripten_bind_InitialInstancesContainer_GetLayerInstancesCount_1=Module["_emscripten_bind_InitialInstancesContainer_GetLayerInstancesCount_1"]=Module["asm"]["Qx"]).apply(null,arguments)};var _emscripten_bind_InitialInstancesContainer_InsertNewInitialInstance_0=Module["_emscripten_bind_InitialInstancesContainer_InsertNewInitialInstance_0"]=function(){return(_emscripten_bind_InitialInstancesContainer_InsertNewInitialInstance_0=Module["_emscripten_bind_InitialInstancesContainer_InsertNewInitialInstance_0"]=Module["asm"]["Rx"]).apply(null,arguments)};var _emscripten_bind_InitialInstancesContainer_InsertInitialInstance_1=Module["_emscripten_bind_InitialInstancesContainer_InsertInitialInstance_1"]=function(){return(_emscripten_bind_InitialInstancesContainer_InsertInitialInstance_1=Module["_emscripten_bind_InitialInstancesContainer_InsertInitialInstance_1"]=Module["asm"]["Sx"]).apply(null,arguments)};var _emscripten_bind_InitialInstancesContainer_SerializeTo_1=Module["_emscripten_bind_InitialInstancesContainer_SerializeTo_1"]=function(){return(_emscripten_bind_InitialInstancesContainer_SerializeTo_1=Module["_emscripten_bind_InitialInstancesContainer_SerializeTo_1"]=Module["asm"]["Tx"]).apply(null,arguments)};var _emscripten_bind_InitialInstancesContainer_UnserializeFrom_2=Module["_emscripten_bind_InitialInstancesContainer_UnserializeFrom_2"]=function(){return(_emscripten_bind_InitialInstancesContainer_UnserializeFrom_2=Module["_emscripten_bind_InitialInstancesContainer_UnserializeFrom_2"]=Module["asm"]["Ux"]).apply(null,arguments)};var _emscripten_bind_InitialInstancesContainer___destroy___0=Module["_emscripten_bind_InitialInstancesContainer___destroy___0"]=function(){return(_emscripten_bind_InitialInstancesContainer___destroy___0=Module["_emscripten_bind_InitialInstancesContainer___destroy___0"]=Module["asm"]["Vx"]).apply(null,arguments)};var _emscripten_bind_HighestZOrderFinder_HighestZOrderFinder_0=Module["_emscripten_bind_HighestZOrderFinder_HighestZOrderFinder_0"]=function(){return(_emscripten_bind_HighestZOrderFinder_HighestZOrderFinder_0=Module["_emscripten_bind_HighestZOrderFinder_HighestZOrderFinder_0"]=Module["asm"]["Wx"]).apply(null,arguments)};var _emscripten_bind_HighestZOrderFinder_RestrictSearchToLayer_1=Module["_emscripten_bind_HighestZOrderFinder_RestrictSearchToLayer_1"]=function(){return(_emscripten_bind_HighestZOrderFinder_RestrictSearchToLayer_1=Module["_emscripten_bind_HighestZOrderFinder_RestrictSearchToLayer_1"]=Module["asm"]["Xx"]).apply(null,arguments)};var _emscripten_bind_HighestZOrderFinder_GetHighestZOrder_0=Module["_emscripten_bind_HighestZOrderFinder_GetHighestZOrder_0"]=function(){return(_emscripten_bind_HighestZOrderFinder_GetHighestZOrder_0=Module["_emscripten_bind_HighestZOrderFinder_GetHighestZOrder_0"]=Module["asm"]["Yx"]).apply(null,arguments)};var _emscripten_bind_HighestZOrderFinder_GetLowestZOrder_0=Module["_emscripten_bind_HighestZOrderFinder_GetLowestZOrder_0"]=function(){return(_emscripten_bind_HighestZOrderFinder_GetLowestZOrder_0=Module["_emscripten_bind_HighestZOrderFinder_GetLowestZOrder_0"]=Module["asm"]["Zx"]).apply(null,arguments)};var _emscripten_bind_HighestZOrderFinder_Reset_0=Module["_emscripten_bind_HighestZOrderFinder_Reset_0"]=function(){return(_emscripten_bind_HighestZOrderFinder_Reset_0=Module["_emscripten_bind_HighestZOrderFinder_Reset_0"]=Module["asm"]["_x"]).apply(null,arguments)};var _emscripten_bind_HighestZOrderFinder_GetInstancesCount_0=Module["_emscripten_bind_HighestZOrderFinder_GetInstancesCount_0"]=function(){return(_emscripten_bind_HighestZOrderFinder_GetInstancesCount_0=Module["_emscripten_bind_HighestZOrderFinder_GetInstancesCount_0"]=Module["asm"]["$x"]).apply(null,arguments)};var _emscripten_bind_HighestZOrderFinder___destroy___0=Module["_emscripten_bind_HighestZOrderFinder___destroy___0"]=function(){return(_emscripten_bind_HighestZOrderFinder___destroy___0=Module["_emscripten_bind_HighestZOrderFinder___destroy___0"]=Module["asm"]["ay"]).apply(null,arguments)};var _emscripten_bind_InitialInstanceFunctor___destroy___0=Module["_emscripten_bind_InitialInstanceFunctor___destroy___0"]=function(){return(_emscripten_bind_InitialInstanceFunctor___destroy___0=Module["_emscripten_bind_InitialInstanceFunctor___destroy___0"]=Module["asm"]["by"]).apply(null,arguments)};var _emscripten_bind_InitialInstanceJSFunctor_InitialInstanceJSFunctor_0=Module["_emscripten_bind_InitialInstanceJSFunctor_InitialInstanceJSFunctor_0"]=function(){return(_emscripten_bind_InitialInstanceJSFunctor_InitialInstanceJSFunctor_0=Module["_emscripten_bind_InitialInstanceJSFunctor_InitialInstanceJSFunctor_0"]=Module["asm"]["cy"]).apply(null,arguments)};var _emscripten_bind_InitialInstanceJSFunctor_invoke_1=Module["_emscripten_bind_InitialInstanceJSFunctor_invoke_1"]=function(){return(_emscripten_bind_InitialInstanceJSFunctor_invoke_1=Module["_emscripten_bind_InitialInstanceJSFunctor_invoke_1"]=Module["asm"]["dy"]).apply(null,arguments)};var _emscripten_bind_InitialInstanceJSFunctor___destroy___0=Module["_emscripten_bind_InitialInstanceJSFunctor___destroy___0"]=function(){return(_emscripten_bind_InitialInstanceJSFunctor___destroy___0=Module["_emscripten_bind_InitialInstanceJSFunctor___destroy___0"]=Module["asm"]["ey"]).apply(null,arguments)};var _emscripten_bind_SerializerValue_GetBool_0=Module["_emscripten_bind_SerializerValue_GetBool_0"]=function(){return(_emscripten_bind_SerializerValue_GetBool_0=Module["_emscripten_bind_SerializerValue_GetBool_0"]=Module["asm"]["fy"]).apply(null,arguments)};var _emscripten_bind_SerializerValue_GetString_0=Module["_emscripten_bind_SerializerValue_GetString_0"]=function(){return(_emscripten_bind_SerializerValue_GetString_0=Module["_emscripten_bind_SerializerValue_GetString_0"]=Module["asm"]["gy"]).apply(null,arguments)};var _emscripten_bind_SerializerValue_GetInt_0=Module["_emscripten_bind_SerializerValue_GetInt_0"]=function(){return(_emscripten_bind_SerializerValue_GetInt_0=Module["_emscripten_bind_SerializerValue_GetInt_0"]=Module["asm"]["hy"]).apply(null,arguments)};var _emscripten_bind_SerializerValue_GetDouble_0=Module["_emscripten_bind_SerializerValue_GetDouble_0"]=function(){return(_emscripten_bind_SerializerValue_GetDouble_0=Module["_emscripten_bind_SerializerValue_GetDouble_0"]=Module["asm"]["iy"]).apply(null,arguments)};var _emscripten_bind_SerializerValue_GetRawString_0=Module["_emscripten_bind_SerializerValue_GetRawString_0"]=function(){return(_emscripten_bind_SerializerValue_GetRawString_0=Module["_emscripten_bind_SerializerValue_GetRawString_0"]=Module["asm"]["jy"]).apply(null,arguments)};var _emscripten_bind_SerializerValue_IsBoolean_0=Module["_emscripten_bind_SerializerValue_IsBoolean_0"]=function(){return(_emscripten_bind_SerializerValue_IsBoolean_0=Module["_emscripten_bind_SerializerValue_IsBoolean_0"]=Module["asm"]["ky"]).apply(null,arguments)};var _emscripten_bind_SerializerValue_IsString_0=Module["_emscripten_bind_SerializerValue_IsString_0"]=function(){return(_emscripten_bind_SerializerValue_IsString_0=Module["_emscripten_bind_SerializerValue_IsString_0"]=Module["asm"]["ly"]).apply(null,arguments)};var _emscripten_bind_SerializerValue_IsInt_0=Module["_emscripten_bind_SerializerValue_IsInt_0"]=function(){return(_emscripten_bind_SerializerValue_IsInt_0=Module["_emscripten_bind_SerializerValue_IsInt_0"]=Module["asm"]["my"]).apply(null,arguments)};var _emscripten_bind_SerializerValue_IsDouble_0=Module["_emscripten_bind_SerializerValue_IsDouble_0"]=function(){return(_emscripten_bind_SerializerValue_IsDouble_0=Module["_emscripten_bind_SerializerValue_IsDouble_0"]=Module["asm"]["ny"]).apply(null,arguments)};var _emscripten_bind_SerializerValue___destroy___0=Module["_emscripten_bind_SerializerValue___destroy___0"]=function(){return(_emscripten_bind_SerializerValue___destroy___0=Module["_emscripten_bind_SerializerValue___destroy___0"]=Module["asm"]["oy"]).apply(null,arguments)};var _emscripten_bind_SerializerElement_SerializerElement_0=Module["_emscripten_bind_SerializerElement_SerializerElement_0"]=function(){return(_emscripten_bind_SerializerElement_SerializerElement_0=Module["_emscripten_bind_SerializerElement_SerializerElement_0"]=Module["asm"]["py"]).apply(null,arguments)};var _emscripten_bind_SerializerElement_SetBoolValue_1=Module["_emscripten_bind_SerializerElement_SetBoolValue_1"]=function(){return(_emscripten_bind_SerializerElement_SetBoolValue_1=Module["_emscripten_bind_SerializerElement_SetBoolValue_1"]=Module["asm"]["qy"]).apply(null,arguments)};var _emscripten_bind_SerializerElement_SetStringValue_1=Module["_emscripten_bind_SerializerElement_SetStringValue_1"]=function(){return(_emscripten_bind_SerializerElement_SetStringValue_1=Module["_emscripten_bind_SerializerElement_SetStringValue_1"]=Module["asm"]["ry"]).apply(null,arguments)};var _emscripten_bind_SerializerElement_SetIntValue_1=Module["_emscripten_bind_SerializerElement_SetIntValue_1"]=function(){return(_emscripten_bind_SerializerElement_SetIntValue_1=Module["_emscripten_bind_SerializerElement_SetIntValue_1"]=Module["asm"]["sy"]).apply(null,arguments)};var _emscripten_bind_SerializerElement_SetDoubleValue_1=Module["_emscripten_bind_SerializerElement_SetDoubleValue_1"]=function(){return(_emscripten_bind_SerializerElement_SetDoubleValue_1=Module["_emscripten_bind_SerializerElement_SetDoubleValue_1"]=Module["asm"]["ty"]).apply(null,arguments)};var _emscripten_bind_SerializerElement_GetValue_0=Module["_emscripten_bind_SerializerElement_GetValue_0"]=function(){return(_emscripten_bind_SerializerElement_GetValue_0=Module["_emscripten_bind_SerializerElement_GetValue_0"]=Module["asm"]["uy"]).apply(null,arguments)};var _emscripten_bind_SerializerElement_GetBoolValue_0=Module["_emscripten_bind_SerializerElement_GetBoolValue_0"]=function(){return(_emscripten_bind_SerializerElement_GetBoolValue_0=Module["_emscripten_bind_SerializerElement_GetBoolValue_0"]=Module["asm"]["vy"]).apply(null,arguments)};var _emscripten_bind_SerializerElement_GetStringValue_0=Module["_emscripten_bind_SerializerElement_GetStringValue_0"]=function(){return(_emscripten_bind_SerializerElement_GetStringValue_0=Module["_emscripten_bind_SerializerElement_GetStringValue_0"]=Module["asm"]["wy"]).apply(null,arguments)};var _emscripten_bind_SerializerElement_GetIntValue_0=Module["_emscripten_bind_SerializerElement_GetIntValue_0"]=function(){return(_emscripten_bind_SerializerElement_GetIntValue_0=Module["_emscripten_bind_SerializerElement_GetIntValue_0"]=Module["asm"]["xy"]).apply(null,arguments)};var _emscripten_bind_SerializerElement_GetDoubleValue_0=Module["_emscripten_bind_SerializerElement_GetDoubleValue_0"]=function(){return(_emscripten_bind_SerializerElement_GetDoubleValue_0=Module["_emscripten_bind_SerializerElement_GetDoubleValue_0"]=Module["asm"]["yy"]).apply(null,arguments)};var _emscripten_bind_SerializerElement_IsValueUndefined_0=Module["_emscripten_bind_SerializerElement_IsValueUndefined_0"]=function(){return(_emscripten_bind_SerializerElement_IsValueUndefined_0=Module["_emscripten_bind_SerializerElement_IsValueUndefined_0"]=Module["asm"]["zy"]).apply(null,arguments)};var _emscripten_bind_SerializerElement_SetBoolAttribute_2=Module["_emscripten_bind_SerializerElement_SetBoolAttribute_2"]=function(){return(_emscripten_bind_SerializerElement_SetBoolAttribute_2=Module["_emscripten_bind_SerializerElement_SetBoolAttribute_2"]=Module["asm"]["Ay"]).apply(null,arguments)};var _emscripten_bind_SerializerElement_SetStringAttribute_2=Module["_emscripten_bind_SerializerElement_SetStringAttribute_2"]=function(){return(_emscripten_bind_SerializerElement_SetStringAttribute_2=Module["_emscripten_bind_SerializerElement_SetStringAttribute_2"]=Module["asm"]["By"]).apply(null,arguments)};var _emscripten_bind_SerializerElement_SetIntAttribute_2=Module["_emscripten_bind_SerializerElement_SetIntAttribute_2"]=function(){return(_emscripten_bind_SerializerElement_SetIntAttribute_2=Module["_emscripten_bind_SerializerElement_SetIntAttribute_2"]=Module["asm"]["Cy"]).apply(null,arguments)};var _emscripten_bind_SerializerElement_SetDoubleAttribute_2=Module["_emscripten_bind_SerializerElement_SetDoubleAttribute_2"]=function(){return(_emscripten_bind_SerializerElement_SetDoubleAttribute_2=Module["_emscripten_bind_SerializerElement_SetDoubleAttribute_2"]=Module["asm"]["Dy"]).apply(null,arguments)};var _emscripten_bind_SerializerElement_GetBoolAttribute_1=Module["_emscripten_bind_SerializerElement_GetBoolAttribute_1"]=function(){return(_emscripten_bind_SerializerElement_GetBoolAttribute_1=Module["_emscripten_bind_SerializerElement_GetBoolAttribute_1"]=Module["asm"]["Ey"]).apply(null,arguments)};var _emscripten_bind_SerializerElement_GetStringAttribute_1=Module["_emscripten_bind_SerializerElement_GetStringAttribute_1"]=function(){return(_emscripten_bind_SerializerElement_GetStringAttribute_1=Module["_emscripten_bind_SerializerElement_GetStringAttribute_1"]=Module["asm"]["Fy"]).apply(null,arguments)};var _emscripten_bind_SerializerElement_GetIntAttribute_1=Module["_emscripten_bind_SerializerElement_GetIntAttribute_1"]=function(){return(_emscripten_bind_SerializerElement_GetIntAttribute_1=Module["_emscripten_bind_SerializerElement_GetIntAttribute_1"]=Module["asm"]["Gy"]).apply(null,arguments)};var _emscripten_bind_SerializerElement_GetDoubleAttribute_1=Module["_emscripten_bind_SerializerElement_GetDoubleAttribute_1"]=function(){return(_emscripten_bind_SerializerElement_GetDoubleAttribute_1=Module["_emscripten_bind_SerializerElement_GetDoubleAttribute_1"]=Module["asm"]["Hy"]).apply(null,arguments)};var _emscripten_bind_SerializerElement_ConsiderAsArray_0=Module["_emscripten_bind_SerializerElement_ConsiderAsArray_0"]=function(){return(_emscripten_bind_SerializerElement_ConsiderAsArray_0=Module["_emscripten_bind_SerializerElement_ConsiderAsArray_0"]=Module["asm"]["Iy"]).apply(null,arguments)};var _emscripten_bind_SerializerElement_ConsideredAsArray_0=Module["_emscripten_bind_SerializerElement_ConsideredAsArray_0"]=function(){return(_emscripten_bind_SerializerElement_ConsideredAsArray_0=Module["_emscripten_bind_SerializerElement_ConsideredAsArray_0"]=Module["asm"]["Jy"]).apply(null,arguments)};var _emscripten_bind_SerializerElement_AddChild_1=Module["_emscripten_bind_SerializerElement_AddChild_1"]=function(){return(_emscripten_bind_SerializerElement_AddChild_1=Module["_emscripten_bind_SerializerElement_AddChild_1"]=Module["asm"]["Ky"]).apply(null,arguments)};var _emscripten_bind_SerializerElement_GetChild_1=Module["_emscripten_bind_SerializerElement_GetChild_1"]=function(){return(_emscripten_bind_SerializerElement_GetChild_1=Module["_emscripten_bind_SerializerElement_GetChild_1"]=Module["asm"]["Ly"]).apply(null,arguments)};var _emscripten_bind_SerializerElement_WRAPPED_SetChild_2=Module["_emscripten_bind_SerializerElement_WRAPPED_SetChild_2"]=function(){return(_emscripten_bind_SerializerElement_WRAPPED_SetChild_2=Module["_emscripten_bind_SerializerElement_WRAPPED_SetChild_2"]=Module["asm"]["My"]).apply(null,arguments)};var _emscripten_bind_SerializerElement_HasChild_1=Module["_emscripten_bind_SerializerElement_HasChild_1"]=function(){return(_emscripten_bind_SerializerElement_HasChild_1=Module["_emscripten_bind_SerializerElement_HasChild_1"]=Module["asm"]["Ny"]).apply(null,arguments)};var _emscripten_bind_SerializerElement_GetAllChildren_0=Module["_emscripten_bind_SerializerElement_GetAllChildren_0"]=function(){return(_emscripten_bind_SerializerElement_GetAllChildren_0=Module["_emscripten_bind_SerializerElement_GetAllChildren_0"]=Module["asm"]["Oy"]).apply(null,arguments)};var _emscripten_bind_SerializerElement_GetAllAttributes_0=Module["_emscripten_bind_SerializerElement_GetAllAttributes_0"]=function(){return(_emscripten_bind_SerializerElement_GetAllAttributes_0=Module["_emscripten_bind_SerializerElement_GetAllAttributes_0"]=Module["asm"]["Py"]).apply(null,arguments)};var _emscripten_bind_SerializerElement___destroy___0=Module["_emscripten_bind_SerializerElement___destroy___0"]=function(){return(_emscripten_bind_SerializerElement___destroy___0=Module["_emscripten_bind_SerializerElement___destroy___0"]=Module["asm"]["Qy"]).apply(null,arguments)};var _emscripten_bind_SharedPtrSerializerElement_get_0=Module["_emscripten_bind_SharedPtrSerializerElement_get_0"]=function(){return(_emscripten_bind_SharedPtrSerializerElement_get_0=Module["_emscripten_bind_SharedPtrSerializerElement_get_0"]=Module["asm"]["Ry"]).apply(null,arguments)};var _emscripten_bind_SharedPtrSerializerElement_reset_0=Module["_emscripten_bind_SharedPtrSerializerElement_reset_0"]=function(){return(_emscripten_bind_SharedPtrSerializerElement_reset_0=Module["_emscripten_bind_SharedPtrSerializerElement_reset_0"]=Module["asm"]["Sy"]).apply(null,arguments)};var _emscripten_bind_SharedPtrSerializerElement___destroy___0=Module["_emscripten_bind_SharedPtrSerializerElement___destroy___0"]=function(){return(_emscripten_bind_SharedPtrSerializerElement___destroy___0=Module["_emscripten_bind_SharedPtrSerializerElement___destroy___0"]=Module["asm"]["Ty"]).apply(null,arguments)};var _emscripten_bind_Serializer_STATIC_ToJSON_1=Module["_emscripten_bind_Serializer_STATIC_ToJSON_1"]=function(){return(_emscripten_bind_Serializer_STATIC_ToJSON_1=Module["_emscripten_bind_Serializer_STATIC_ToJSON_1"]=Module["asm"]["Uy"]).apply(null,arguments)};var _emscripten_bind_Serializer_STATIC_FromJSON_1=Module["_emscripten_bind_Serializer_STATIC_FromJSON_1"]=function(){return(_emscripten_bind_Serializer_STATIC_FromJSON_1=Module["_emscripten_bind_Serializer_STATIC_FromJSON_1"]=Module["asm"]["Vy"]).apply(null,arguments)};var _emscripten_bind_Serializer___destroy___0=Module["_emscripten_bind_Serializer___destroy___0"]=function(){return(_emscripten_bind_Serializer___destroy___0=Module["_emscripten_bind_Serializer___destroy___0"]=Module["asm"]["Wy"]).apply(null,arguments)};var _emscripten_bind_BinarySerializer_STATIC_CreateBinarySnapshot_1=Module["_emscripten_bind_BinarySerializer_STATIC_CreateBinarySnapshot_1"]=function(){return(_emscripten_bind_BinarySerializer_STATIC_CreateBinarySnapshot_1=Module["_emscripten_bind_BinarySerializer_STATIC_CreateBinarySnapshot_1"]=Module["asm"]["Xy"]).apply(null,arguments)};var _emscripten_bind_BinarySerializer_STATIC_GetLastBinarySnapshotSize_0=Module["_emscripten_bind_BinarySerializer_STATIC_GetLastBinarySnapshotSize_0"]=function(){return(_emscripten_bind_BinarySerializer_STATIC_GetLastBinarySnapshotSize_0=Module["_emscripten_bind_BinarySerializer_STATIC_GetLastBinarySnapshotSize_0"]=Module["asm"]["Yy"]).apply(null,arguments)};var _emscripten_bind_BinarySerializer_STATIC_FreeBinarySnapshot_1=Module["_emscripten_bind_BinarySerializer_STATIC_FreeBinarySnapshot_1"]=function(){return(_emscripten_bind_BinarySerializer_STATIC_FreeBinarySnapshot_1=Module["_emscripten_bind_BinarySerializer_STATIC_FreeBinarySnapshot_1"]=Module["asm"]["Zy"]).apply(null,arguments)};var _emscripten_bind_BinarySerializer_STATIC_DeserializeBinarySnapshot_2=Module["_emscripten_bind_BinarySerializer_STATIC_DeserializeBinarySnapshot_2"]=function(){return(_emscripten_bind_BinarySerializer_STATIC_DeserializeBinarySnapshot_2=Module["_emscripten_bind_BinarySerializer_STATIC_DeserializeBinarySnapshot_2"]=Module["asm"]["_y"]).apply(null,arguments)};var _emscripten_bind_ObjectAssetSerializer_STATIC_SerializeTo_6=Module["_emscripten_bind_ObjectAssetSerializer_STATIC_SerializeTo_6"]=function(){return(_emscripten_bind_ObjectAssetSerializer_STATIC_SerializeTo_6=Module["_emscripten_bind_ObjectAssetSerializer_STATIC_SerializeTo_6"]=Module["asm"]["$y"]).apply(null,arguments)};var _emscripten_bind_ObjectAssetSerializer___destroy___0=Module["_emscripten_bind_ObjectAssetSerializer___destroy___0"]=function(){return(_emscripten_bind_ObjectAssetSerializer___destroy___0=Module["_emscripten_bind_ObjectAssetSerializer___destroy___0"]=Module["asm"]["az"]).apply(null,arguments)};var _emscripten_bind_ExtensionDependencyCache_ExtensionDependencyCache_0=Module["_emscripten_bind_ExtensionDependencyCache_ExtensionDependencyCache_0"]=function(){return(_emscripten_bind_ExtensionDependencyCache_ExtensionDependencyCache_0=Module["_emscripten_bind_ExtensionDependencyCache_ExtensionDependencyCache_0"]=Module["asm"]["bz"]).apply(null,arguments)};var _emscripten_bind_ExtensionDependencyCache___destroy___0=Module["_emscripten_bind_ExtensionDependencyCache___destroy___0"]=function(){return(_emscripten_bind_ExtensionDependencyCache___destroy___0=Module["_emscripten_bind_ExtensionDependencyCache___destroy___0"]=Module["asm"]["cz"]).apply(null,arguments)};var _emscripten_bind_InstructionsList_InstructionsList_0=Module["_emscripten_bind_InstructionsList_InstructionsList_0"]=function(){return(_emscripten_bind_InstructionsList_InstructionsList_0=Module["_emscripten_bind_InstructionsList_InstructionsList_0"]=Module["asm"]["dz"]).apply(null,arguments)};var _emscripten_bind_InstructionsList_Insert_2=Module["_emscripten_bind_InstructionsList_Insert_2"]=function(){return(_emscripten_bind_InstructionsList_Insert_2=Module["_emscripten_bind_InstructionsList_Insert_2"]=Module["asm"]["ez"]).apply(null,arguments)};var _emscripten_bind_InstructionsList_InsertInstructions_4=Module["_emscripten_bind_InstructionsList_InsertInstructions_4"]=function(){return(_emscripten_bind_InstructionsList_InsertInstructions_4=Module["_emscripten_bind_InstructionsList_InsertInstructions_4"]=Module["asm"]["fz"]).apply(null,arguments)};var _emscripten_bind_InstructionsList_size_0=Module["_emscripten_bind_InstructionsList_size_0"]=function(){return(_emscripten_bind_InstructionsList_size_0=Module["_emscripten_bind_InstructionsList_size_0"]=Module["asm"]["gz"]).apply(null,arguments)};var _emscripten_bind_InstructionsList_WRAPPED_set_2=Module["_emscripten_bind_InstructionsList_WRAPPED_set_2"]=function(){return(_emscripten_bind_InstructionsList_WRAPPED_set_2=Module["_emscripten_bind_InstructionsList_WRAPPED_set_2"]=Module["asm"]["hz"]).apply(null,arguments)};var _emscripten_bind_InstructionsList_Contains_1=Module["_emscripten_bind_InstructionsList_Contains_1"]=function(){return(_emscripten_bind_InstructionsList_Contains_1=Module["_emscripten_bind_InstructionsList_Contains_1"]=Module["asm"]["iz"]).apply(null,arguments)};var _emscripten_bind_InstructionsList_Get_1=Module["_emscripten_bind_InstructionsList_Get_1"]=function(){return(_emscripten_bind_InstructionsList_Get_1=Module["_emscripten_bind_InstructionsList_Get_1"]=Module["asm"]["jz"]).apply(null,arguments)};var _emscripten_bind_InstructionsList_Remove_1=Module["_emscripten_bind_InstructionsList_Remove_1"]=function(){return(_emscripten_bind_InstructionsList_Remove_1=Module["_emscripten_bind_InstructionsList_Remove_1"]=Module["asm"]["kz"]).apply(null,arguments)};var _emscripten_bind_InstructionsList_RemoveAt_1=Module["_emscripten_bind_InstructionsList_RemoveAt_1"]=function(){return(_emscripten_bind_InstructionsList_RemoveAt_1=Module["_emscripten_bind_InstructionsList_RemoveAt_1"]=Module["asm"]["lz"]).apply(null,arguments)};var _emscripten_bind_InstructionsList_Clear_0=Module["_emscripten_bind_InstructionsList_Clear_0"]=function(){return(_emscripten_bind_InstructionsList_Clear_0=Module["_emscripten_bind_InstructionsList_Clear_0"]=Module["asm"]["mz"]).apply(null,arguments)};var _emscripten_bind_InstructionsList_SerializeTo_1=Module["_emscripten_bind_InstructionsList_SerializeTo_1"]=function(){return(_emscripten_bind_InstructionsList_SerializeTo_1=Module["_emscripten_bind_InstructionsList_SerializeTo_1"]=Module["asm"]["nz"]).apply(null,arguments)};var _emscripten_bind_InstructionsList_UnserializeFrom_2=Module["_emscripten_bind_InstructionsList_UnserializeFrom_2"]=function(){return(_emscripten_bind_InstructionsList_UnserializeFrom_2=Module["_emscripten_bind_InstructionsList_UnserializeFrom_2"]=Module["asm"]["oz"]).apply(null,arguments)};var _emscripten_bind_InstructionsList___destroy___0=Module["_emscripten_bind_InstructionsList___destroy___0"]=function(){return(_emscripten_bind_InstructionsList___destroy___0=Module["_emscripten_bind_InstructionsList___destroy___0"]=Module["asm"]["pz"]).apply(null,arguments)};var _emscripten_bind_Instruction_Instruction_0=Module["_emscripten_bind_Instruction_Instruction_0"]=function(){return(_emscripten_bind_Instruction_Instruction_0=Module["_emscripten_bind_Instruction_Instruction_0"]=Module["asm"]["qz"]).apply(null,arguments)};var _emscripten_bind_Instruction_CLONE_Instruction_0=Module["_emscripten_bind_Instruction_CLONE_Instruction_0"]=function(){return(_emscripten_bind_Instruction_CLONE_Instruction_0=Module["_emscripten_bind_Instruction_CLONE_Instruction_0"]=Module["asm"]["rz"]).apply(null,arguments)};var _emscripten_bind_Instruction_SetType_1=Module["_emscripten_bind_Instruction_SetType_1"]=function(){return(_emscripten_bind_Instruction_SetType_1=Module["_emscripten_bind_Instruction_SetType_1"]=Module["asm"]["sz"]).apply(null,arguments)};var _emscripten_bind_Instruction_GetType_0=Module["_emscripten_bind_Instruction_GetType_0"]=function(){return(_emscripten_bind_Instruction_GetType_0=Module["_emscripten_bind_Instruction_GetType_0"]=Module["asm"]["tz"]).apply(null,arguments)};var _emscripten_bind_Instruction_SetInverted_1=Module["_emscripten_bind_Instruction_SetInverted_1"]=function(){return(_emscripten_bind_Instruction_SetInverted_1=Module["_emscripten_bind_Instruction_SetInverted_1"]=Module["asm"]["uz"]).apply(null,arguments)};var _emscripten_bind_Instruction_IsInverted_0=Module["_emscripten_bind_Instruction_IsInverted_0"]=function(){return(_emscripten_bind_Instruction_IsInverted_0=Module["_emscripten_bind_Instruction_IsInverted_0"]=Module["asm"]["vz"]).apply(null,arguments)};var _emscripten_bind_Instruction_SetAwaited_1=Module["_emscripten_bind_Instruction_SetAwaited_1"]=function(){return(_emscripten_bind_Instruction_SetAwaited_1=Module["_emscripten_bind_Instruction_SetAwaited_1"]=Module["asm"]["wz"]).apply(null,arguments)};var _emscripten_bind_Instruction_IsAwaited_0=Module["_emscripten_bind_Instruction_IsAwaited_0"]=function(){return(_emscripten_bind_Instruction_IsAwaited_0=Module["_emscripten_bind_Instruction_IsAwaited_0"]=Module["asm"]["xz"]).apply(null,arguments)};var _emscripten_bind_Instruction_SetParameter_2=Module["_emscripten_bind_Instruction_SetParameter_2"]=function(){return(_emscripten_bind_Instruction_SetParameter_2=Module["_emscripten_bind_Instruction_SetParameter_2"]=Module["asm"]["yz"]).apply(null,arguments)};var _emscripten_bind_Instruction_GetParameter_1=Module["_emscripten_bind_Instruction_GetParameter_1"]=function(){return(_emscripten_bind_Instruction_GetParameter_1=Module["_emscripten_bind_Instruction_GetParameter_1"]=Module["asm"]["zz"]).apply(null,arguments)};var _emscripten_bind_Instruction_SetParametersCount_1=Module["_emscripten_bind_Instruction_SetParametersCount_1"]=function(){return(_emscripten_bind_Instruction_SetParametersCount_1=Module["_emscripten_bind_Instruction_SetParametersCount_1"]=Module["asm"]["Az"]).apply(null,arguments)};var _emscripten_bind_Instruction_GetParametersCount_0=Module["_emscripten_bind_Instruction_GetParametersCount_0"]=function(){return(_emscripten_bind_Instruction_GetParametersCount_0=Module["_emscripten_bind_Instruction_GetParametersCount_0"]=Module["asm"]["Bz"]).apply(null,arguments)};var _emscripten_bind_Instruction_GetSubInstructions_0=Module["_emscripten_bind_Instruction_GetSubInstructions_0"]=function(){return(_emscripten_bind_Instruction_GetSubInstructions_0=Module["_emscripten_bind_Instruction_GetSubInstructions_0"]=Module["asm"]["Cz"]).apply(null,arguments)};var _emscripten_bind_Instruction___destroy___0=Module["_emscripten_bind_Instruction___destroy___0"]=function(){return(_emscripten_bind_Instruction___destroy___0=Module["_emscripten_bind_Instruction___destroy___0"]=Module["asm"]["Dz"]).apply(null,arguments)};var _emscripten_bind_Expression_GetPlainString_0=Module["_emscripten_bind_Expression_GetPlainString_0"]=function(){return(_emscripten_bind_Expression_GetPlainString_0=Module["_emscripten_bind_Expression_GetPlainString_0"]=Module["asm"]["Ez"]).apply(null,arguments)};var _emscripten_bind_Expression_GetRootNode_0=Module["_emscripten_bind_Expression_GetRootNode_0"]=function(){return(_emscripten_bind_Expression_GetRootNode_0=Module["_emscripten_bind_Expression_GetRootNode_0"]=Module["asm"]["Fz"]).apply(null,arguments)};var _emscripten_bind_Expression___destroy___0=Module["_emscripten_bind_Expression___destroy___0"]=function(){return(_emscripten_bind_Expression___destroy___0=Module["_emscripten_bind_Expression___destroy___0"]=Module["asm"]["Gz"]).apply(null,arguments)};var _emscripten_bind_VectorPairStringTextFormatting_size_0=Module["_emscripten_bind_VectorPairStringTextFormatting_size_0"]=function(){return(_emscripten_bind_VectorPairStringTextFormatting_size_0=Module["_emscripten_bind_VectorPairStringTextFormatting_size_0"]=Module["asm"]["Hz"]).apply(null,arguments)};var _emscripten_bind_VectorPairStringTextFormatting_WRAPPED_GetString_1=Module["_emscripten_bind_VectorPairStringTextFormatting_WRAPPED_GetString_1"]=function(){return(_emscripten_bind_VectorPairStringTextFormatting_WRAPPED_GetString_1=Module["_emscripten_bind_VectorPairStringTextFormatting_WRAPPED_GetString_1"]=Module["asm"]["Iz"]).apply(null,arguments)};var _emscripten_bind_VectorPairStringTextFormatting_WRAPPED_GetTextFormatting_1=Module["_emscripten_bind_VectorPairStringTextFormatting_WRAPPED_GetTextFormatting_1"]=function(){return(_emscripten_bind_VectorPairStringTextFormatting_WRAPPED_GetTextFormatting_1=Module["_emscripten_bind_VectorPairStringTextFormatting_WRAPPED_GetTextFormatting_1"]=Module["asm"]["Jz"]).apply(null,arguments)};var _emscripten_bind_VectorPairStringTextFormatting___destroy___0=Module["_emscripten_bind_VectorPairStringTextFormatting___destroy___0"]=function(){return(_emscripten_bind_VectorPairStringTextFormatting___destroy___0=Module["_emscripten_bind_VectorPairStringTextFormatting___destroy___0"]=Module["asm"]["Kz"]).apply(null,arguments)};var _emscripten_bind_TextFormatting_GetUserData_0=Module["_emscripten_bind_TextFormatting_GetUserData_0"]=function(){return(_emscripten_bind_TextFormatting_GetUserData_0=Module["_emscripten_bind_TextFormatting_GetUserData_0"]=Module["asm"]["Lz"]).apply(null,arguments)};var _emscripten_bind_TextFormatting___destroy___0=Module["_emscripten_bind_TextFormatting___destroy___0"]=function(){return(_emscripten_bind_TextFormatting___destroy___0=Module["_emscripten_bind_TextFormatting___destroy___0"]=Module["asm"]["Mz"]).apply(null,arguments)};var _emscripten_bind_InstructionSentenceFormatter_STATIC_Get_0=Module["_emscripten_bind_InstructionSentenceFormatter_STATIC_Get_0"]=function(){return(_emscripten_bind_InstructionSentenceFormatter_STATIC_Get_0=Module["_emscripten_bind_InstructionSentenceFormatter_STATIC_Get_0"]=Module["asm"]["Nz"]).apply(null,arguments)};var _emscripten_bind_InstructionSentenceFormatter_GetAsFormattedText_2=Module["_emscripten_bind_InstructionSentenceFormatter_GetAsFormattedText_2"]=function(){return(_emscripten_bind_InstructionSentenceFormatter_GetAsFormattedText_2=Module["_emscripten_bind_InstructionSentenceFormatter_GetAsFormattedText_2"]=Module["asm"]["Oz"]).apply(null,arguments)};var _emscripten_bind_InstructionSentenceFormatter___destroy___0=Module["_emscripten_bind_InstructionSentenceFormatter___destroy___0"]=function(){return(_emscripten_bind_InstructionSentenceFormatter___destroy___0=Module["_emscripten_bind_InstructionSentenceFormatter___destroy___0"]=Module["asm"]["Pz"]).apply(null,arguments)};var _emscripten_bind_ParameterOptions_SetDescription_1=Module["_emscripten_bind_ParameterOptions_SetDescription_1"]=function(){return(_emscripten_bind_ParameterOptions_SetDescription_1=Module["_emscripten_bind_ParameterOptions_SetDescription_1"]=Module["asm"]["Qz"]).apply(null,arguments)};var _emscripten_bind_ParameterOptions_SetTypeExtraInfo_1=Module["_emscripten_bind_ParameterOptions_SetTypeExtraInfo_1"]=function(){return(_emscripten_bind_ParameterOptions_SetTypeExtraInfo_1=Module["_emscripten_bind_ParameterOptions_SetTypeExtraInfo_1"]=Module["asm"]["Rz"]).apply(null,arguments)};var _emscripten_bind_ParameterOptions_STATIC_MakeNewOptions_0=Module["_emscripten_bind_ParameterOptions_STATIC_MakeNewOptions_0"]=function(){return(_emscripten_bind_ParameterOptions_STATIC_MakeNewOptions_0=Module["_emscripten_bind_ParameterOptions_STATIC_MakeNewOptions_0"]=Module["asm"]["Sz"]).apply(null,arguments)};var _emscripten_bind_ParameterOptions___destroy___0=Module["_emscripten_bind_ParameterOptions___destroy___0"]=function(){return(_emscripten_bind_ParameterOptions___destroy___0=Module["_emscripten_bind_ParameterOptions___destroy___0"]=Module["asm"]["Tz"]).apply(null,arguments)};var _emscripten_bind_InstructionMetadata_InstructionMetadata_0=Module["_emscripten_bind_InstructionMetadata_InstructionMetadata_0"]=function(){return(_emscripten_bind_InstructionMetadata_InstructionMetadata_0=Module["_emscripten_bind_InstructionMetadata_InstructionMetadata_0"]=Module["asm"]["Uz"]).apply(null,arguments)};var _emscripten_bind_InstructionMetadata_GetFullName_0=Module["_emscripten_bind_InstructionMetadata_GetFullName_0"]=function(){return(_emscripten_bind_InstructionMetadata_GetFullName_0=Module["_emscripten_bind_InstructionMetadata_GetFullName_0"]=Module["asm"]["Vz"]).apply(null,arguments)};var _emscripten_bind_InstructionMetadata_GetDescription_0=Module["_emscripten_bind_InstructionMetadata_GetDescription_0"]=function(){return(_emscripten_bind_InstructionMetadata_GetDescription_0=Module["_emscripten_bind_InstructionMetadata_GetDescription_0"]=Module["asm"]["Wz"]).apply(null,arguments)};var _emscripten_bind_InstructionMetadata_GetSentence_0=Module["_emscripten_bind_InstructionMetadata_GetSentence_0"]=function(){return(_emscripten_bind_InstructionMetadata_GetSentence_0=Module["_emscripten_bind_InstructionMetadata_GetSentence_0"]=Module["asm"]["Xz"]).apply(null,arguments)};var _emscripten_bind_InstructionMetadata_GetGroup_0=Module["_emscripten_bind_InstructionMetadata_GetGroup_0"]=function(){return(_emscripten_bind_InstructionMetadata_GetGroup_0=Module["_emscripten_bind_InstructionMetadata_GetGroup_0"]=Module["asm"]["Yz"]).apply(null,arguments)};var _emscripten_bind_InstructionMetadata_GetIconFilename_0=Module["_emscripten_bind_InstructionMetadata_GetIconFilename_0"]=function(){return(_emscripten_bind_InstructionMetadata_GetIconFilename_0=Module["_emscripten_bind_InstructionMetadata_GetIconFilename_0"]=Module["asm"]["Zz"]).apply(null,arguments)};var _emscripten_bind_InstructionMetadata_GetSmallIconFilename_0=Module["_emscripten_bind_InstructionMetadata_GetSmallIconFilename_0"]=function(){return(_emscripten_bind_InstructionMetadata_GetSmallIconFilename_0=Module["_emscripten_bind_InstructionMetadata_GetSmallIconFilename_0"]=Module["asm"]["_z"]).apply(null,arguments)};var _emscripten_bind_InstructionMetadata_GetHelpPath_0=Module["_emscripten_bind_InstructionMetadata_GetHelpPath_0"]=function(){return(_emscripten_bind_InstructionMetadata_GetHelpPath_0=Module["_emscripten_bind_InstructionMetadata_GetHelpPath_0"]=Module["asm"]["$z"]).apply(null,arguments)};var _emscripten_bind_InstructionMetadata_CanHaveSubInstructions_0=Module["_emscripten_bind_InstructionMetadata_CanHaveSubInstructions_0"]=function(){return(_emscripten_bind_InstructionMetadata_CanHaveSubInstructions_0=Module["_emscripten_bind_InstructionMetadata_CanHaveSubInstructions_0"]=Module["asm"]["aA"]).apply(null,arguments)};var _emscripten_bind_InstructionMetadata_GetParameter_1=Module["_emscripten_bind_InstructionMetadata_GetParameter_1"]=function(){return(_emscripten_bind_InstructionMetadata_GetParameter_1=Module["_emscripten_bind_InstructionMetadata_GetParameter_1"]=Module["asm"]["bA"]).apply(null,arguments)};var _emscripten_bind_InstructionMetadata_GetParametersCount_0=Module["_emscripten_bind_InstructionMetadata_GetParametersCount_0"]=function(){return(_emscripten_bind_InstructionMetadata_GetParametersCount_0=Module["_emscripten_bind_InstructionMetadata_GetParametersCount_0"]=Module["asm"]["cA"]).apply(null,arguments)};var _emscripten_bind_InstructionMetadata_GetParameters_0=Module["_emscripten_bind_InstructionMetadata_GetParameters_0"]=function(){return(_emscripten_bind_InstructionMetadata_GetParameters_0=Module["_emscripten_bind_InstructionMetadata_GetParameters_0"]=Module["asm"]["dA"]).apply(null,arguments)};var _emscripten_bind_InstructionMetadata_GetUsageComplexity_0=Module["_emscripten_bind_InstructionMetadata_GetUsageComplexity_0"]=function(){return(_emscripten_bind_InstructionMetadata_GetUsageComplexity_0=Module["_emscripten_bind_InstructionMetadata_GetUsageComplexity_0"]=Module["asm"]["eA"]).apply(null,arguments)};var _emscripten_bind_InstructionMetadata_IsHidden_0=Module["_emscripten_bind_InstructionMetadata_IsHidden_0"]=function(){return(_emscripten_bind_InstructionMetadata_IsHidden_0=Module["_emscripten_bind_InstructionMetadata_IsHidden_0"]=Module["asm"]["fA"]).apply(null,arguments)};var _emscripten_bind_InstructionMetadata_GetDeprecationMessage_0=Module["_emscripten_bind_InstructionMetadata_GetDeprecationMessage_0"]=function(){return(_emscripten_bind_InstructionMetadata_GetDeprecationMessage_0=Module["_emscripten_bind_InstructionMetadata_GetDeprecationMessage_0"]=Module["asm"]["gA"]).apply(null,arguments)};var _emscripten_bind_InstructionMetadata_IsPrivate_0=Module["_emscripten_bind_InstructionMetadata_IsPrivate_0"]=function(){return(_emscripten_bind_InstructionMetadata_IsPrivate_0=Module["_emscripten_bind_InstructionMetadata_IsPrivate_0"]=Module["asm"]["hA"]).apply(null,arguments)};var _emscripten_bind_InstructionMetadata_IsAsync_0=Module["_emscripten_bind_InstructionMetadata_IsAsync_0"]=function(){return(_emscripten_bind_InstructionMetadata_IsAsync_0=Module["_emscripten_bind_InstructionMetadata_IsAsync_0"]=Module["asm"]["iA"]).apply(null,arguments)};var _emscripten_bind_InstructionMetadata_IsOptionallyAsync_0=Module["_emscripten_bind_InstructionMetadata_IsOptionallyAsync_0"]=function(){return(_emscripten_bind_InstructionMetadata_IsOptionallyAsync_0=Module["_emscripten_bind_InstructionMetadata_IsOptionallyAsync_0"]=Module["asm"]["jA"]).apply(null,arguments)};var _emscripten_bind_InstructionMetadata_IsRelevantForLayoutEvents_0=Module["_emscripten_bind_InstructionMetadata_IsRelevantForLayoutEvents_0"]=function(){return(_emscripten_bind_InstructionMetadata_IsRelevantForLayoutEvents_0=Module["_emscripten_bind_InstructionMetadata_IsRelevantForLayoutEvents_0"]=Module["asm"]["kA"]).apply(null,arguments)};var _emscripten_bind_InstructionMetadata_IsRelevantForFunctionEvents_0=Module["_emscripten_bind_InstructionMetadata_IsRelevantForFunctionEvents_0"]=function(){return(_emscripten_bind_InstructionMetadata_IsRelevantForFunctionEvents_0=Module["_emscripten_bind_InstructionMetadata_IsRelevantForFunctionEvents_0"]=Module["asm"]["lA"]).apply(null,arguments)};var _emscripten_bind_InstructionMetadata_IsRelevantForAsynchronousFunctionEvents_0=Module["_emscripten_bind_InstructionMetadata_IsRelevantForAsynchronousFunctionEvents_0"]=function(){return(_emscripten_bind_InstructionMetadata_IsRelevantForAsynchronousFunctionEvents_0=Module["_emscripten_bind_InstructionMetadata_IsRelevantForAsynchronousFunctionEvents_0"]=Module["asm"]["mA"]).apply(null,arguments)};var _emscripten_bind_InstructionMetadata_IsRelevantForCustomObjectEvents_0=Module["_emscripten_bind_InstructionMetadata_IsRelevantForCustomObjectEvents_0"]=function(){return(_emscripten_bind_InstructionMetadata_IsRelevantForCustomObjectEvents_0=Module["_emscripten_bind_InstructionMetadata_IsRelevantForCustomObjectEvents_0"]=Module["asm"]["nA"]).apply(null,arguments)};var _emscripten_bind_InstructionMetadata_SetCanHaveSubInstructions_0=Module["_emscripten_bind_InstructionMetadata_SetCanHaveSubInstructions_0"]=function(){return(_emscripten_bind_InstructionMetadata_SetCanHaveSubInstructions_0=Module["_emscripten_bind_InstructionMetadata_SetCanHaveSubInstructions_0"]=Module["asm"]["oA"]).apply(null,arguments)};var _emscripten_bind_InstructionMetadata_SetHelpPath_1=Module["_emscripten_bind_InstructionMetadata_SetHelpPath_1"]=function(){return(_emscripten_bind_InstructionMetadata_SetHelpPath_1=Module["_emscripten_bind_InstructionMetadata_SetHelpPath_1"]=Module["asm"]["pA"]).apply(null,arguments)};var _emscripten_bind_InstructionMetadata_SetHidden_0=Module["_emscripten_bind_InstructionMetadata_SetHidden_0"]=function(){return(_emscripten_bind_InstructionMetadata_SetHidden_0=Module["_emscripten_bind_InstructionMetadata_SetHidden_0"]=Module["asm"]["qA"]).apply(null,arguments)};var _emscripten_bind_InstructionMetadata_SetPrivate_0=Module["_emscripten_bind_InstructionMetadata_SetPrivate_0"]=function(){return(_emscripten_bind_InstructionMetadata_SetPrivate_0=Module["_emscripten_bind_InstructionMetadata_SetPrivate_0"]=Module["asm"]["rA"]).apply(null,arguments)};var _emscripten_bind_InstructionMetadata_SetRelevantForLayoutEventsOnly_0=Module["_emscripten_bind_InstructionMetadata_SetRelevantForLayoutEventsOnly_0"]=function(){return(_emscripten_bind_InstructionMetadata_SetRelevantForLayoutEventsOnly_0=Module["_emscripten_bind_InstructionMetadata_SetRelevantForLayoutEventsOnly_0"]=Module["asm"]["sA"]).apply(null,arguments)};var _emscripten_bind_InstructionMetadata_SetRelevantForFunctionEventsOnly_0=Module["_emscripten_bind_InstructionMetadata_SetRelevantForFunctionEventsOnly_0"]=function(){return(_emscripten_bind_InstructionMetadata_SetRelevantForFunctionEventsOnly_0=Module["_emscripten_bind_InstructionMetadata_SetRelevantForFunctionEventsOnly_0"]=Module["asm"]["tA"]).apply(null,arguments)};var _emscripten_bind_InstructionMetadata_SetRelevantForAsynchronousFunctionEventsOnly_0=Module["_emscripten_bind_InstructionMetadata_SetRelevantForAsynchronousFunctionEventsOnly_0"]=function(){return(_emscripten_bind_InstructionMetadata_SetRelevantForAsynchronousFunctionEventsOnly_0=Module["_emscripten_bind_InstructionMetadata_SetRelevantForAsynchronousFunctionEventsOnly_0"]=Module["asm"]["uA"]).apply(null,arguments)};var _emscripten_bind_InstructionMetadata_SetRelevantForCustomObjectEventsOnly_0=Module["_emscripten_bind_InstructionMetadata_SetRelevantForCustomObjectEventsOnly_0"]=function(){return(_emscripten_bind_InstructionMetadata_SetRelevantForCustomObjectEventsOnly_0=Module["_emscripten_bind_InstructionMetadata_SetRelevantForCustomObjectEventsOnly_0"]=Module["asm"]["vA"]).apply(null,arguments)};var _emscripten_bind_InstructionMetadata_AddParameter_2=Module["_emscripten_bind_InstructionMetadata_AddParameter_2"]=function(){return(_emscripten_bind_InstructionMetadata_AddParameter_2=Module["_emscripten_bind_InstructionMetadata_AddParameter_2"]=Module["asm"]["wA"]).apply(null,arguments)};var _emscripten_bind_InstructionMetadata_AddParameter_3=Module["_emscripten_bind_InstructionMetadata_AddParameter_3"]=function(){return(_emscripten_bind_InstructionMetadata_AddParameter_3=Module["_emscripten_bind_InstructionMetadata_AddParameter_3"]=Module["asm"]["xA"]).apply(null,arguments)};var _emscripten_bind_InstructionMetadata_AddParameter_4=Module["_emscripten_bind_InstructionMetadata_AddParameter_4"]=function(){return(_emscripten_bind_InstructionMetadata_AddParameter_4=Module["_emscripten_bind_InstructionMetadata_AddParameter_4"]=Module["asm"]["yA"]).apply(null,arguments)};var _emscripten_bind_InstructionMetadata_AddCodeOnlyParameter_2=Module["_emscripten_bind_InstructionMetadata_AddCodeOnlyParameter_2"]=function(){return(_emscripten_bind_InstructionMetadata_AddCodeOnlyParameter_2=Module["_emscripten_bind_InstructionMetadata_AddCodeOnlyParameter_2"]=Module["asm"]["zA"]).apply(null,arguments)};var _emscripten_bind_InstructionMetadata_SetDefaultValue_1=Module["_emscripten_bind_InstructionMetadata_SetDefaultValue_1"]=function(){return(_emscripten_bind_InstructionMetadata_SetDefaultValue_1=Module["_emscripten_bind_InstructionMetadata_SetDefaultValue_1"]=Module["asm"]["AA"]).apply(null,arguments)};var _emscripten_bind_InstructionMetadata_SetParameterLongDescription_1=Module["_emscripten_bind_InstructionMetadata_SetParameterLongDescription_1"]=function(){return(_emscripten_bind_InstructionMetadata_SetParameterLongDescription_1=Module["_emscripten_bind_InstructionMetadata_SetParameterLongDescription_1"]=Module["asm"]["BA"]).apply(null,arguments)};var _emscripten_bind_InstructionMetadata_SetParameterHint_1=Module["_emscripten_bind_InstructionMetadata_SetParameterHint_1"]=function(){return(_emscripten_bind_InstructionMetadata_SetParameterHint_1=Module["_emscripten_bind_InstructionMetadata_SetParameterHint_1"]=Module["asm"]["CA"]).apply(null,arguments)};var _emscripten_bind_InstructionMetadata_SetParameterExtraInfo_1=Module["_emscripten_bind_InstructionMetadata_SetParameterExtraInfo_1"]=function(){return(_emscripten_bind_InstructionMetadata_SetParameterExtraInfo_1=Module["_emscripten_bind_InstructionMetadata_SetParameterExtraInfo_1"]=Module["asm"]["DA"]).apply(null,arguments)};var _emscripten_bind_InstructionMetadata_SetHint_1=Module["_emscripten_bind_InstructionMetadata_SetHint_1"]=function(){return(_emscripten_bind_InstructionMetadata_SetHint_1=Module["_emscripten_bind_InstructionMetadata_SetHint_1"]=Module["asm"]["EA"]).apply(null,arguments)};var _emscripten_bind_InstructionMetadata_GetHint_0=Module["_emscripten_bind_InstructionMetadata_GetHint_0"]=function(){return(_emscripten_bind_InstructionMetadata_GetHint_0=Module["_emscripten_bind_InstructionMetadata_GetHint_0"]=Module["asm"]["FA"]).apply(null,arguments)};var _emscripten_bind_InstructionMetadata_UseStandardOperatorParameters_2=Module["_emscripten_bind_InstructionMetadata_UseStandardOperatorParameters_2"]=function(){return(_emscripten_bind_InstructionMetadata_UseStandardOperatorParameters_2=Module["_emscripten_bind_InstructionMetadata_UseStandardOperatorParameters_2"]=Module["asm"]["GA"]).apply(null,arguments)};var _emscripten_bind_InstructionMetadata_UseStandardRelationalOperatorParameters_2=Module["_emscripten_bind_InstructionMetadata_UseStandardRelationalOperatorParameters_2"]=function(){return(_emscripten_bind_InstructionMetadata_UseStandardRelationalOperatorParameters_2=Module["_emscripten_bind_InstructionMetadata_UseStandardRelationalOperatorParameters_2"]=Module["asm"]["HA"]).apply(null,arguments)};var _emscripten_bind_InstructionMetadata_MarkAsSimple_0=Module["_emscripten_bind_InstructionMetadata_MarkAsSimple_0"]=function(){return(_emscripten_bind_InstructionMetadata_MarkAsSimple_0=Module["_emscripten_bind_InstructionMetadata_MarkAsSimple_0"]=Module["asm"]["IA"]).apply(null,arguments)};var _emscripten_bind_InstructionMetadata_MarkAsAdvanced_0=Module["_emscripten_bind_InstructionMetadata_MarkAsAdvanced_0"]=function(){return(_emscripten_bind_InstructionMetadata_MarkAsAdvanced_0=Module["_emscripten_bind_InstructionMetadata_MarkAsAdvanced_0"]=Module["asm"]["JA"]).apply(null,arguments)};var _emscripten_bind_InstructionMetadata_MarkAsComplex_0=Module["_emscripten_bind_InstructionMetadata_MarkAsComplex_0"]=function(){return(_emscripten_bind_InstructionMetadata_MarkAsComplex_0=Module["_emscripten_bind_InstructionMetadata_MarkAsComplex_0"]=Module["asm"]["KA"]).apply(null,arguments)};var _emscripten_bind_InstructionMetadata_GetCodeExtraInformation_0=Module["_emscripten_bind_InstructionMetadata_GetCodeExtraInformation_0"]=function(){return(_emscripten_bind_InstructionMetadata_GetCodeExtraInformation_0=Module["_emscripten_bind_InstructionMetadata_GetCodeExtraInformation_0"]=Module["asm"]["LA"]).apply(null,arguments)};var _emscripten_bind_InstructionMetadata_SetFunctionName_1=Module["_emscripten_bind_InstructionMetadata_SetFunctionName_1"]=function(){return(_emscripten_bind_InstructionMetadata_SetFunctionName_1=Module["_emscripten_bind_InstructionMetadata_SetFunctionName_1"]=Module["asm"]["MA"]).apply(null,arguments)};var _emscripten_bind_InstructionMetadata_SetAsyncFunctionName_1=Module["_emscripten_bind_InstructionMetadata_SetAsyncFunctionName_1"]=function(){return(_emscripten_bind_InstructionMetadata_SetAsyncFunctionName_1=Module["_emscripten_bind_InstructionMetadata_SetAsyncFunctionName_1"]=Module["asm"]["NA"]).apply(null,arguments)};var _emscripten_bind_InstructionMetadata_GetFunctionName_0=Module["_emscripten_bind_InstructionMetadata_GetFunctionName_0"]=function(){return(_emscripten_bind_InstructionMetadata_GetFunctionName_0=Module["_emscripten_bind_InstructionMetadata_GetFunctionName_0"]=Module["asm"]["OA"]).apply(null,arguments)};var _emscripten_bind_InstructionMetadata_GetAsyncFunctionName_0=Module["_emscripten_bind_InstructionMetadata_GetAsyncFunctionName_0"]=function(){return(_emscripten_bind_InstructionMetadata_GetAsyncFunctionName_0=Module["_emscripten_bind_InstructionMetadata_GetAsyncFunctionName_0"]=Module["asm"]["PA"]).apply(null,arguments)};var _emscripten_bind_InstructionMetadata_SetManipulatedType_1=Module["_emscripten_bind_InstructionMetadata_SetManipulatedType_1"]=function(){return(_emscripten_bind_InstructionMetadata_SetManipulatedType_1=Module["_emscripten_bind_InstructionMetadata_SetManipulatedType_1"]=Module["asm"]["QA"]).apply(null,arguments)};var _emscripten_bind_InstructionMetadata_SetGetter_1=Module["_emscripten_bind_InstructionMetadata_SetGetter_1"]=function(){return(_emscripten_bind_InstructionMetadata_SetGetter_1=Module["_emscripten_bind_InstructionMetadata_SetGetter_1"]=Module["asm"]["RA"]).apply(null,arguments)};var _emscripten_bind_InstructionMetadata_SetMutators_1=Module["_emscripten_bind_InstructionMetadata_SetMutators_1"]=function(){return(_emscripten_bind_InstructionMetadata_SetMutators_1=Module["_emscripten_bind_InstructionMetadata_SetMutators_1"]=Module["asm"]["SA"]).apply(null,arguments)};var _emscripten_bind_InstructionMetadata_SetIncludeFile_1=Module["_emscripten_bind_InstructionMetadata_SetIncludeFile_1"]=function(){return(_emscripten_bind_InstructionMetadata_SetIncludeFile_1=Module["_emscripten_bind_InstructionMetadata_SetIncludeFile_1"]=Module["asm"]["TA"]).apply(null,arguments)};var _emscripten_bind_InstructionMetadata_AddIncludeFile_1=Module["_emscripten_bind_InstructionMetadata_AddIncludeFile_1"]=function(){return(_emscripten_bind_InstructionMetadata_AddIncludeFile_1=Module["_emscripten_bind_InstructionMetadata_AddIncludeFile_1"]=Module["asm"]["UA"]).apply(null,arguments)};var _emscripten_bind_InstructionMetadata_GetIncludeFiles_0=Module["_emscripten_bind_InstructionMetadata_GetIncludeFiles_0"]=function(){return(_emscripten_bind_InstructionMetadata_GetIncludeFiles_0=Module["_emscripten_bind_InstructionMetadata_GetIncludeFiles_0"]=Module["asm"]["VA"]).apply(null,arguments)};var _emscripten_bind_InstructionMetadata___destroy___0=Module["_emscripten_bind_InstructionMetadata___destroy___0"]=function(){return(_emscripten_bind_InstructionMetadata___destroy___0=Module["_emscripten_bind_InstructionMetadata___destroy___0"]=Module["asm"]["WA"]).apply(null,arguments)};var _emscripten_bind_ExpressionMetadata_ExpressionMetadata_7=Module["_emscripten_bind_ExpressionMetadata_ExpressionMetadata_7"]=function(){return(_emscripten_bind_ExpressionMetadata_ExpressionMetadata_7=Module["_emscripten_bind_ExpressionMetadata_ExpressionMetadata_7"]=Module["asm"]["XA"]).apply(null,arguments)};var _emscripten_bind_ExpressionMetadata_GetReturnType_0=Module["_emscripten_bind_ExpressionMetadata_GetReturnType_0"]=function(){return(_emscripten_bind_ExpressionMetadata_GetReturnType_0=Module["_emscripten_bind_ExpressionMetadata_GetReturnType_0"]=Module["asm"]["YA"]).apply(null,arguments)};var _emscripten_bind_ExpressionMetadata_GetFullName_0=Module["_emscripten_bind_ExpressionMetadata_GetFullName_0"]=function(){return(_emscripten_bind_ExpressionMetadata_GetFullName_0=Module["_emscripten_bind_ExpressionMetadata_GetFullName_0"]=Module["asm"]["ZA"]).apply(null,arguments)};var _emscripten_bind_ExpressionMetadata_GetDescription_0=Module["_emscripten_bind_ExpressionMetadata_GetDescription_0"]=function(){return(_emscripten_bind_ExpressionMetadata_GetDescription_0=Module["_emscripten_bind_ExpressionMetadata_GetDescription_0"]=Module["asm"]["_A"]).apply(null,arguments)};var _emscripten_bind_ExpressionMetadata_GetGroup_0=Module["_emscripten_bind_ExpressionMetadata_GetGroup_0"]=function(){return(_emscripten_bind_ExpressionMetadata_GetGroup_0=Module["_emscripten_bind_ExpressionMetadata_GetGroup_0"]=Module["asm"]["$A"]).apply(null,arguments)};var _emscripten_bind_ExpressionMetadata_GetSmallIconFilename_0=Module["_emscripten_bind_ExpressionMetadata_GetSmallIconFilename_0"]=function(){return(_emscripten_bind_ExpressionMetadata_GetSmallIconFilename_0=Module["_emscripten_bind_ExpressionMetadata_GetSmallIconFilename_0"]=Module["asm"]["aB"]).apply(null,arguments)};var _emscripten_bind_ExpressionMetadata_GetHelpPath_0=Module["_emscripten_bind_ExpressionMetadata_GetHelpPath_0"]=function(){return(_emscripten_bind_ExpressionMetadata_GetHelpPath_0=Module["_emscripten_bind_ExpressionMetadata_GetHelpPath_0"]=Module["asm"]["bB"]).apply(null,arguments)};var _emscripten_bind_ExpressionMetadata_IsShown_0=Module["_emscripten_bind_ExpressionMetadata_IsShown_0"]=function(){return(_emscripten_bind_ExpressionMetadata_IsShown_0=Module["_emscripten_bind_ExpressionMetadata_IsShown_0"]=Module["asm"]["cB"]).apply(null,arguments)};var _emscripten_bind_ExpressionMetadata_IsPrivate_0=Module["_emscripten_bind_ExpressionMetadata_IsPrivate_0"]=function(){return(_emscripten_bind_ExpressionMetadata_IsPrivate_0=Module["_emscripten_bind_ExpressionMetadata_IsPrivate_0"]=Module["asm"]["dB"]).apply(null,arguments)};var _emscripten_bind_ExpressionMetadata_IsDeprecated_0=Module["_emscripten_bind_ExpressionMetadata_IsDeprecated_0"]=function(){return(_emscripten_bind_ExpressionMetadata_IsDeprecated_0=Module["_emscripten_bind_ExpressionMetadata_IsDeprecated_0"]=Module["asm"]["eB"]).apply(null,arguments)};var _emscripten_bind_ExpressionMetadata_GetDeprecationMessage_0=Module["_emscripten_bind_ExpressionMetadata_GetDeprecationMessage_0"]=function(){return(_emscripten_bind_ExpressionMetadata_GetDeprecationMessage_0=Module["_emscripten_bind_ExpressionMetadata_GetDeprecationMessage_0"]=Module["asm"]["fB"]).apply(null,arguments)};var _emscripten_bind_ExpressionMetadata_IsRelevantForLayoutEvents_0=Module["_emscripten_bind_ExpressionMetadata_IsRelevantForLayoutEvents_0"]=function(){return(_emscripten_bind_ExpressionMetadata_IsRelevantForLayoutEvents_0=Module["_emscripten_bind_ExpressionMetadata_IsRelevantForLayoutEvents_0"]=Module["asm"]["gB"]).apply(null,arguments)};var _emscripten_bind_ExpressionMetadata_IsRelevantForFunctionEvents_0=Module["_emscripten_bind_ExpressionMetadata_IsRelevantForFunctionEvents_0"]=function(){return(_emscripten_bind_ExpressionMetadata_IsRelevantForFunctionEvents_0=Module["_emscripten_bind_ExpressionMetadata_IsRelevantForFunctionEvents_0"]=Module["asm"]["hB"]).apply(null,arguments)};var _emscripten_bind_ExpressionMetadata_IsRelevantForAsynchronousFunctionEvents_0=Module["_emscripten_bind_ExpressionMetadata_IsRelevantForAsynchronousFunctionEvents_0"]=function(){return(_emscripten_bind_ExpressionMetadata_IsRelevantForAsynchronousFunctionEvents_0=Module["_emscripten_bind_ExpressionMetadata_IsRelevantForAsynchronousFunctionEvents_0"]=Module["asm"]["iB"]).apply(null,arguments)};var _emscripten_bind_ExpressionMetadata_IsRelevantForCustomObjectEvents_0=Module["_emscripten_bind_ExpressionMetadata_IsRelevantForCustomObjectEvents_0"]=function(){return(_emscripten_bind_ExpressionMetadata_IsRelevantForCustomObjectEvents_0=Module["_emscripten_bind_ExpressionMetadata_IsRelevantForCustomObjectEvents_0"]=Module["asm"]["jB"]).apply(null,arguments)};var _emscripten_bind_ExpressionMetadata_GetParameter_1=Module["_emscripten_bind_ExpressionMetadata_GetParameter_1"]=function(){return(_emscripten_bind_ExpressionMetadata_GetParameter_1=Module["_emscripten_bind_ExpressionMetadata_GetParameter_1"]=Module["asm"]["kB"]).apply(null,arguments)};var _emscripten_bind_ExpressionMetadata_GetParametersCount_0=Module["_emscripten_bind_ExpressionMetadata_GetParametersCount_0"]=function(){return(_emscripten_bind_ExpressionMetadata_GetParametersCount_0=Module["_emscripten_bind_ExpressionMetadata_GetParametersCount_0"]=Module["asm"]["lB"]).apply(null,arguments)};var _emscripten_bind_ExpressionMetadata_GetParameters_0=Module["_emscripten_bind_ExpressionMetadata_GetParameters_0"]=function(){return(_emscripten_bind_ExpressionMetadata_GetParameters_0=Module["_emscripten_bind_ExpressionMetadata_GetParameters_0"]=Module["asm"]["mB"]).apply(null,arguments)};var _emscripten_bind_ExpressionMetadata_SetHidden_0=Module["_emscripten_bind_ExpressionMetadata_SetHidden_0"]=function(){return(_emscripten_bind_ExpressionMetadata_SetHidden_0=Module["_emscripten_bind_ExpressionMetadata_SetHidden_0"]=Module["asm"]["nB"]).apply(null,arguments)};var _emscripten_bind_ExpressionMetadata_SetPrivate_0=Module["_emscripten_bind_ExpressionMetadata_SetPrivate_0"]=function(){return(_emscripten_bind_ExpressionMetadata_SetPrivate_0=Module["_emscripten_bind_ExpressionMetadata_SetPrivate_0"]=Module["asm"]["oB"]).apply(null,arguments)};var _emscripten_bind_ExpressionMetadata_SetRelevantForLayoutEventsOnly_0=Module["_emscripten_bind_ExpressionMetadata_SetRelevantForLayoutEventsOnly_0"]=function(){return(_emscripten_bind_ExpressionMetadata_SetRelevantForLayoutEventsOnly_0=Module["_emscripten_bind_ExpressionMetadata_SetRelevantForLayoutEventsOnly_0"]=Module["asm"]["pB"]).apply(null,arguments)};var _emscripten_bind_ExpressionMetadata_SetRelevantForFunctionEventsOnly_0=Module["_emscripten_bind_ExpressionMetadata_SetRelevantForFunctionEventsOnly_0"]=function(){return(_emscripten_bind_ExpressionMetadata_SetRelevantForFunctionEventsOnly_0=Module["_emscripten_bind_ExpressionMetadata_SetRelevantForFunctionEventsOnly_0"]=Module["asm"]["qB"]).apply(null,arguments)};var _emscripten_bind_ExpressionMetadata_SetRelevantForAsynchronousFunctionEventsOnly_0=Module["_emscripten_bind_ExpressionMetadata_SetRelevantForAsynchronousFunctionEventsOnly_0"]=function(){return(_emscripten_bind_ExpressionMetadata_SetRelevantForAsynchronousFunctionEventsOnly_0=Module["_emscripten_bind_ExpressionMetadata_SetRelevantForAsynchronousFunctionEventsOnly_0"]=Module["asm"]["rB"]).apply(null,arguments)};var _emscripten_bind_ExpressionMetadata_SetRelevantForCustomObjectEventsOnly_0=Module["_emscripten_bind_ExpressionMetadata_SetRelevantForCustomObjectEventsOnly_0"]=function(){return(_emscripten_bind_ExpressionMetadata_SetRelevantForCustomObjectEventsOnly_0=Module["_emscripten_bind_ExpressionMetadata_SetRelevantForCustomObjectEventsOnly_0"]=Module["asm"]["sB"]).apply(null,arguments)};var _emscripten_bind_ExpressionMetadata_AddParameter_2=Module["_emscripten_bind_ExpressionMetadata_AddParameter_2"]=function(){return(_emscripten_bind_ExpressionMetadata_AddParameter_2=Module["_emscripten_bind_ExpressionMetadata_AddParameter_2"]=Module["asm"]["tB"]).apply(null,arguments)};var _emscripten_bind_ExpressionMetadata_AddParameter_3=Module["_emscripten_bind_ExpressionMetadata_AddParameter_3"]=function(){return(_emscripten_bind_ExpressionMetadata_AddParameter_3=Module["_emscripten_bind_ExpressionMetadata_AddParameter_3"]=Module["asm"]["uB"]).apply(null,arguments)};var _emscripten_bind_ExpressionMetadata_AddParameter_4=Module["_emscripten_bind_ExpressionMetadata_AddParameter_4"]=function(){return(_emscripten_bind_ExpressionMetadata_AddParameter_4=Module["_emscripten_bind_ExpressionMetadata_AddParameter_4"]=Module["asm"]["vB"]).apply(null,arguments)};var _emscripten_bind_ExpressionMetadata_AddCodeOnlyParameter_2=Module["_emscripten_bind_ExpressionMetadata_AddCodeOnlyParameter_2"]=function(){return(_emscripten_bind_ExpressionMetadata_AddCodeOnlyParameter_2=Module["_emscripten_bind_ExpressionMetadata_AddCodeOnlyParameter_2"]=Module["asm"]["wB"]).apply(null,arguments)};var _emscripten_bind_ExpressionMetadata_SetDefaultValue_1=Module["_emscripten_bind_ExpressionMetadata_SetDefaultValue_1"]=function(){return(_emscripten_bind_ExpressionMetadata_SetDefaultValue_1=Module["_emscripten_bind_ExpressionMetadata_SetDefaultValue_1"]=Module["asm"]["xB"]).apply(null,arguments)};var _emscripten_bind_ExpressionMetadata_SetParameterLongDescription_1=Module["_emscripten_bind_ExpressionMetadata_SetParameterLongDescription_1"]=function(){return(_emscripten_bind_ExpressionMetadata_SetParameterLongDescription_1=Module["_emscripten_bind_ExpressionMetadata_SetParameterLongDescription_1"]=Module["asm"]["yB"]).apply(null,arguments)};var _emscripten_bind_ExpressionMetadata_SetParameterHint_1=Module["_emscripten_bind_ExpressionMetadata_SetParameterHint_1"]=function(){return(_emscripten_bind_ExpressionMetadata_SetParameterHint_1=Module["_emscripten_bind_ExpressionMetadata_SetParameterHint_1"]=Module["asm"]["zB"]).apply(null,arguments)};var _emscripten_bind_ExpressionMetadata_SetParameterExtraInfo_1=Module["_emscripten_bind_ExpressionMetadata_SetParameterExtraInfo_1"]=function(){return(_emscripten_bind_ExpressionMetadata_SetParameterExtraInfo_1=Module["_emscripten_bind_ExpressionMetadata_SetParameterExtraInfo_1"]=Module["asm"]["AB"]).apply(null,arguments)};var _emscripten_bind_ExpressionMetadata_GetCodeExtraInformation_0=Module["_emscripten_bind_ExpressionMetadata_GetCodeExtraInformation_0"]=function(){return(_emscripten_bind_ExpressionMetadata_GetCodeExtraInformation_0=Module["_emscripten_bind_ExpressionMetadata_GetCodeExtraInformation_0"]=Module["asm"]["BB"]).apply(null,arguments)};var _emscripten_bind_ExpressionMetadata_SetFunctionName_1=Module["_emscripten_bind_ExpressionMetadata_SetFunctionName_1"]=function(){return(_emscripten_bind_ExpressionMetadata_SetFunctionName_1=Module["_emscripten_bind_ExpressionMetadata_SetFunctionName_1"]=Module["asm"]["CB"]).apply(null,arguments)};var _emscripten_bind_ExpressionMetadata_GetFunctionName_0=Module["_emscripten_bind_ExpressionMetadata_GetFunctionName_0"]=function(){return(_emscripten_bind_ExpressionMetadata_GetFunctionName_0=Module["_emscripten_bind_ExpressionMetadata_GetFunctionName_0"]=Module["asm"]["DB"]).apply(null,arguments)};var _emscripten_bind_ExpressionMetadata_SetStatic_0=Module["_emscripten_bind_ExpressionMetadata_SetStatic_0"]=function(){return(_emscripten_bind_ExpressionMetadata_SetStatic_0=Module["_emscripten_bind_ExpressionMetadata_SetStatic_0"]=Module["asm"]["EB"]).apply(null,arguments)};var _emscripten_bind_ExpressionMetadata_SetIncludeFile_1=Module["_emscripten_bind_ExpressionMetadata_SetIncludeFile_1"]=function(){return(_emscripten_bind_ExpressionMetadata_SetIncludeFile_1=Module["_emscripten_bind_ExpressionMetadata_SetIncludeFile_1"]=Module["asm"]["FB"]).apply(null,arguments)};var _emscripten_bind_ExpressionMetadata_AddIncludeFile_1=Module["_emscripten_bind_ExpressionMetadata_AddIncludeFile_1"]=function(){return(_emscripten_bind_ExpressionMetadata_AddIncludeFile_1=Module["_emscripten_bind_ExpressionMetadata_AddIncludeFile_1"]=Module["asm"]["GB"]).apply(null,arguments)};var _emscripten_bind_ExpressionMetadata_GetIncludeFiles_0=Module["_emscripten_bind_ExpressionMetadata_GetIncludeFiles_0"]=function(){return(_emscripten_bind_ExpressionMetadata_GetIncludeFiles_0=Module["_emscripten_bind_ExpressionMetadata_GetIncludeFiles_0"]=Module["asm"]["HB"]).apply(null,arguments)};var _emscripten_bind_ExpressionMetadata___destroy___0=Module["_emscripten_bind_ExpressionMetadata___destroy___0"]=function(){return(_emscripten_bind_ExpressionMetadata___destroy___0=Module["_emscripten_bind_ExpressionMetadata___destroy___0"]=Module["asm"]["IB"]).apply(null,arguments)};var _emscripten_bind_MultipleInstructionMetadata_AddParameter_2=Module["_emscripten_bind_MultipleInstructionMetadata_AddParameter_2"]=function(){return(_emscripten_bind_MultipleInstructionMetadata_AddParameter_2=Module["_emscripten_bind_MultipleInstructionMetadata_AddParameter_2"]=Module["asm"]["JB"]).apply(null,arguments)};var _emscripten_bind_MultipleInstructionMetadata_AddParameter_3=Module["_emscripten_bind_MultipleInstructionMetadata_AddParameter_3"]=function(){return(_emscripten_bind_MultipleInstructionMetadata_AddParameter_3=Module["_emscripten_bind_MultipleInstructionMetadata_AddParameter_3"]=Module["asm"]["KB"]).apply(null,arguments)};var _emscripten_bind_MultipleInstructionMetadata_AddParameter_4=Module["_emscripten_bind_MultipleInstructionMetadata_AddParameter_4"]=function(){return(_emscripten_bind_MultipleInstructionMetadata_AddParameter_4=Module["_emscripten_bind_MultipleInstructionMetadata_AddParameter_4"]=Module["asm"]["LB"]).apply(null,arguments)};var _emscripten_bind_MultipleInstructionMetadata_AddCodeOnlyParameter_2=Module["_emscripten_bind_MultipleInstructionMetadata_AddCodeOnlyParameter_2"]=function(){return(_emscripten_bind_MultipleInstructionMetadata_AddCodeOnlyParameter_2=Module["_emscripten_bind_MultipleInstructionMetadata_AddCodeOnlyParameter_2"]=Module["asm"]["MB"]).apply(null,arguments)};var _emscripten_bind_MultipleInstructionMetadata_SetDefaultValue_1=Module["_emscripten_bind_MultipleInstructionMetadata_SetDefaultValue_1"]=function(){return(_emscripten_bind_MultipleInstructionMetadata_SetDefaultValue_1=Module["_emscripten_bind_MultipleInstructionMetadata_SetDefaultValue_1"]=Module["asm"]["NB"]).apply(null,arguments)};var _emscripten_bind_MultipleInstructionMetadata_SetParameterLongDescription_1=Module["_emscripten_bind_MultipleInstructionMetadata_SetParameterLongDescription_1"]=function(){return(_emscripten_bind_MultipleInstructionMetadata_SetParameterLongDescription_1=Module["_emscripten_bind_MultipleInstructionMetadata_SetParameterLongDescription_1"]=Module["asm"]["OB"]).apply(null,arguments)};var _emscripten_bind_MultipleInstructionMetadata_SetParameterHint_1=Module["_emscripten_bind_MultipleInstructionMetadata_SetParameterHint_1"]=function(){return(_emscripten_bind_MultipleInstructionMetadata_SetParameterHint_1=Module["_emscripten_bind_MultipleInstructionMetadata_SetParameterHint_1"]=Module["asm"]["PB"]).apply(null,arguments)};var _emscripten_bind_MultipleInstructionMetadata_SetParameterExtraInfo_1=Module["_emscripten_bind_MultipleInstructionMetadata_SetParameterExtraInfo_1"]=function(){return(_emscripten_bind_MultipleInstructionMetadata_SetParameterExtraInfo_1=Module["_emscripten_bind_MultipleInstructionMetadata_SetParameterExtraInfo_1"]=Module["asm"]["QB"]).apply(null,arguments)};var _emscripten_bind_MultipleInstructionMetadata_UseStandardParameters_2=Module["_emscripten_bind_MultipleInstructionMetadata_UseStandardParameters_2"]=function(){return(_emscripten_bind_MultipleInstructionMetadata_UseStandardParameters_2=Module["_emscripten_bind_MultipleInstructionMetadata_UseStandardParameters_2"]=Module["asm"]["RB"]).apply(null,arguments)};var _emscripten_bind_MultipleInstructionMetadata_SetHidden_0=Module["_emscripten_bind_MultipleInstructionMetadata_SetHidden_0"]=function(){return(_emscripten_bind_MultipleInstructionMetadata_SetHidden_0=Module["_emscripten_bind_MultipleInstructionMetadata_SetHidden_0"]=Module["asm"]["SB"]).apply(null,arguments)};var _emscripten_bind_MultipleInstructionMetadata_SetFunctionName_1=Module["_emscripten_bind_MultipleInstructionMetadata_SetFunctionName_1"]=function(){return(_emscripten_bind_MultipleInstructionMetadata_SetFunctionName_1=Module["_emscripten_bind_MultipleInstructionMetadata_SetFunctionName_1"]=Module["asm"]["TB"]).apply(null,arguments)};var _emscripten_bind_MultipleInstructionMetadata_SetGetter_1=Module["_emscripten_bind_MultipleInstructionMetadata_SetGetter_1"]=function(){return(_emscripten_bind_MultipleInstructionMetadata_SetGetter_1=Module["_emscripten_bind_MultipleInstructionMetadata_SetGetter_1"]=Module["asm"]["UB"]).apply(null,arguments)};var _emscripten_bind_MultipleInstructionMetadata_SetIncludeFile_1=Module["_emscripten_bind_MultipleInstructionMetadata_SetIncludeFile_1"]=function(){return(_emscripten_bind_MultipleInstructionMetadata_SetIncludeFile_1=Module["_emscripten_bind_MultipleInstructionMetadata_SetIncludeFile_1"]=Module["asm"]["VB"]).apply(null,arguments)};var _emscripten_bind_MultipleInstructionMetadata_AddIncludeFile_1=Module["_emscripten_bind_MultipleInstructionMetadata_AddIncludeFile_1"]=function(){return(_emscripten_bind_MultipleInstructionMetadata_AddIncludeFile_1=Module["_emscripten_bind_MultipleInstructionMetadata_AddIncludeFile_1"]=Module["asm"]["WB"]).apply(null,arguments)};var _emscripten_bind_MultipleInstructionMetadata_GetIncludeFiles_0=Module["_emscripten_bind_MultipleInstructionMetadata_GetIncludeFiles_0"]=function(){return(_emscripten_bind_MultipleInstructionMetadata_GetIncludeFiles_0=Module["_emscripten_bind_MultipleInstructionMetadata_GetIncludeFiles_0"]=Module["asm"]["XB"]).apply(null,arguments)};var _emscripten_bind_MultipleInstructionMetadata_MarkAsSimple_0=Module["_emscripten_bind_MultipleInstructionMetadata_MarkAsSimple_0"]=function(){return(_emscripten_bind_MultipleInstructionMetadata_MarkAsSimple_0=Module["_emscripten_bind_MultipleInstructionMetadata_MarkAsSimple_0"]=Module["asm"]["YB"]).apply(null,arguments)};var _emscripten_bind_MultipleInstructionMetadata_MarkAsAdvanced_0=Module["_emscripten_bind_MultipleInstructionMetadata_MarkAsAdvanced_0"]=function(){return(_emscripten_bind_MultipleInstructionMetadata_MarkAsAdvanced_0=Module["_emscripten_bind_MultipleInstructionMetadata_MarkAsAdvanced_0"]=Module["asm"]["ZB"]).apply(null,arguments)};var _emscripten_bind_MultipleInstructionMetadata_MarkAsComplex_0=Module["_emscripten_bind_MultipleInstructionMetadata_MarkAsComplex_0"]=function(){return(_emscripten_bind_MultipleInstructionMetadata_MarkAsComplex_0=Module["_emscripten_bind_MultipleInstructionMetadata_MarkAsComplex_0"]=Module["asm"]["_B"]).apply(null,arguments)};var _emscripten_bind_MultipleInstructionMetadata_SetPrivate_0=Module["_emscripten_bind_MultipleInstructionMetadata_SetPrivate_0"]=function(){return(_emscripten_bind_MultipleInstructionMetadata_SetPrivate_0=Module["_emscripten_bind_MultipleInstructionMetadata_SetPrivate_0"]=Module["asm"]["$B"]).apply(null,arguments)};var _emscripten_bind_MultipleInstructionMetadata___destroy___0=Module["_emscripten_bind_MultipleInstructionMetadata___destroy___0"]=function(){return(_emscripten_bind_MultipleInstructionMetadata___destroy___0=Module["_emscripten_bind_MultipleInstructionMetadata___destroy___0"]=Module["asm"]["aC"]).apply(null,arguments)};var _emscripten_bind_DependencyMetadata_DependencyMetadata_0=Module["_emscripten_bind_DependencyMetadata_DependencyMetadata_0"]=function(){return(_emscripten_bind_DependencyMetadata_DependencyMetadata_0=Module["_emscripten_bind_DependencyMetadata_DependencyMetadata_0"]=Module["asm"]["bC"]).apply(null,arguments)};var _emscripten_bind_DependencyMetadata_GetName_0=Module["_emscripten_bind_DependencyMetadata_GetName_0"]=function(){return(_emscripten_bind_DependencyMetadata_GetName_0=Module["_emscripten_bind_DependencyMetadata_GetName_0"]=Module["asm"]["cC"]).apply(null,arguments)};var _emscripten_bind_DependencyMetadata_SetName_1=Module["_emscripten_bind_DependencyMetadata_SetName_1"]=function(){return(_emscripten_bind_DependencyMetadata_SetName_1=Module["_emscripten_bind_DependencyMetadata_SetName_1"]=Module["asm"]["dC"]).apply(null,arguments)};var _emscripten_bind_DependencyMetadata_GetExportName_0=Module["_emscripten_bind_DependencyMetadata_GetExportName_0"]=function(){return(_emscripten_bind_DependencyMetadata_GetExportName_0=Module["_emscripten_bind_DependencyMetadata_GetExportName_0"]=Module["asm"]["eC"]).apply(null,arguments)};var _emscripten_bind_DependencyMetadata_SetExportName_1=Module["_emscripten_bind_DependencyMetadata_SetExportName_1"]=function(){return(_emscripten_bind_DependencyMetadata_SetExportName_1=Module["_emscripten_bind_DependencyMetadata_SetExportName_1"]=Module["asm"]["fC"]).apply(null,arguments)};var _emscripten_bind_DependencyMetadata_GetVersion_0=Module["_emscripten_bind_DependencyMetadata_GetVersion_0"]=function(){return(_emscripten_bind_DependencyMetadata_GetVersion_0=Module["_emscripten_bind_DependencyMetadata_GetVersion_0"]=Module["asm"]["gC"]).apply(null,arguments)};var _emscripten_bind_DependencyMetadata_SetVersion_1=Module["_emscripten_bind_DependencyMetadata_SetVersion_1"]=function(){return(_emscripten_bind_DependencyMetadata_SetVersion_1=Module["_emscripten_bind_DependencyMetadata_SetVersion_1"]=Module["asm"]["hC"]).apply(null,arguments)};var _emscripten_bind_DependencyMetadata_GetDependencyType_0=Module["_emscripten_bind_DependencyMetadata_GetDependencyType_0"]=function(){return(_emscripten_bind_DependencyMetadata_GetDependencyType_0=Module["_emscripten_bind_DependencyMetadata_GetDependencyType_0"]=Module["asm"]["iC"]).apply(null,arguments)};var _emscripten_bind_DependencyMetadata_SetDependencyType_1=Module["_emscripten_bind_DependencyMetadata_SetDependencyType_1"]=function(){return(_emscripten_bind_DependencyMetadata_SetDependencyType_1=Module["_emscripten_bind_DependencyMetadata_SetDependencyType_1"]=Module["asm"]["jC"]).apply(null,arguments)};var _emscripten_bind_DependencyMetadata_SetExtraSetting_2=Module["_emscripten_bind_DependencyMetadata_SetExtraSetting_2"]=function(){return(_emscripten_bind_DependencyMetadata_SetExtraSetting_2=Module["_emscripten_bind_DependencyMetadata_SetExtraSetting_2"]=Module["asm"]["kC"]).apply(null,arguments)};var _emscripten_bind_DependencyMetadata_GetAllExtraSettings_0=Module["_emscripten_bind_DependencyMetadata_GetAllExtraSettings_0"]=function(){return(_emscripten_bind_DependencyMetadata_GetAllExtraSettings_0=Module["_emscripten_bind_DependencyMetadata_GetAllExtraSettings_0"]=Module["asm"]["lC"]).apply(null,arguments)};var _emscripten_bind_DependencyMetadata_OnlyIfSomeExtraSettingsNonEmpty_0=Module["_emscripten_bind_DependencyMetadata_OnlyIfSomeExtraSettingsNonEmpty_0"]=function(){return(_emscripten_bind_DependencyMetadata_OnlyIfSomeExtraSettingsNonEmpty_0=Module["_emscripten_bind_DependencyMetadata_OnlyIfSomeExtraSettingsNonEmpty_0"]=Module["asm"]["mC"]).apply(null,arguments)};var _emscripten_bind_DependencyMetadata_OnlyIfOtherDependencyIsExported_1=Module["_emscripten_bind_DependencyMetadata_OnlyIfOtherDependencyIsExported_1"]=function(){return(_emscripten_bind_DependencyMetadata_OnlyIfOtherDependencyIsExported_1=Module["_emscripten_bind_DependencyMetadata_OnlyIfOtherDependencyIsExported_1"]=Module["asm"]["nC"]).apply(null,arguments)};var _emscripten_bind_DependencyMetadata_CopyFrom_1=Module["_emscripten_bind_DependencyMetadata_CopyFrom_1"]=function(){return(_emscripten_bind_DependencyMetadata_CopyFrom_1=Module["_emscripten_bind_DependencyMetadata_CopyFrom_1"]=Module["asm"]["oC"]).apply(null,arguments)};var _emscripten_bind_DependencyMetadata___destroy___0=Module["_emscripten_bind_DependencyMetadata___destroy___0"]=function(){return(_emscripten_bind_DependencyMetadata___destroy___0=Module["_emscripten_bind_DependencyMetadata___destroy___0"]=Module["asm"]["pC"]).apply(null,arguments)};var _emscripten_bind_SourceFileMetadata_SourceFileMetadata_0=Module["_emscripten_bind_SourceFileMetadata_SourceFileMetadata_0"]=function(){return(_emscripten_bind_SourceFileMetadata_SourceFileMetadata_0=Module["_emscripten_bind_SourceFileMetadata_SourceFileMetadata_0"]=Module["asm"]["qC"]).apply(null,arguments)};var _emscripten_bind_SourceFileMetadata_GetResourceName_0=Module["_emscripten_bind_SourceFileMetadata_GetResourceName_0"]=function(){return(_emscripten_bind_SourceFileMetadata_GetResourceName_0=Module["_emscripten_bind_SourceFileMetadata_GetResourceName_0"]=Module["asm"]["rC"]).apply(null,arguments)};var _emscripten_bind_SourceFileMetadata_SetResourceName_1=Module["_emscripten_bind_SourceFileMetadata_SetResourceName_1"]=function(){return(_emscripten_bind_SourceFileMetadata_SetResourceName_1=Module["_emscripten_bind_SourceFileMetadata_SetResourceName_1"]=Module["asm"]["sC"]).apply(null,arguments)};var _emscripten_bind_SourceFileMetadata_GetIncludePosition_0=Module["_emscripten_bind_SourceFileMetadata_GetIncludePosition_0"]=function(){return(_emscripten_bind_SourceFileMetadata_GetIncludePosition_0=Module["_emscripten_bind_SourceFileMetadata_GetIncludePosition_0"]=Module["asm"]["tC"]).apply(null,arguments)};var _emscripten_bind_SourceFileMetadata_SetIncludePosition_1=Module["_emscripten_bind_SourceFileMetadata_SetIncludePosition_1"]=function(){return(_emscripten_bind_SourceFileMetadata_SetIncludePosition_1=Module["_emscripten_bind_SourceFileMetadata_SetIncludePosition_1"]=Module["asm"]["uC"]).apply(null,arguments)};var _emscripten_bind_SourceFileMetadata___destroy___0=Module["_emscripten_bind_SourceFileMetadata___destroy___0"]=function(){return(_emscripten_bind_SourceFileMetadata___destroy___0=Module["_emscripten_bind_SourceFileMetadata___destroy___0"]=Module["asm"]["vC"]).apply(null,arguments)};var _emscripten_bind_ParameterMetadata_ParameterMetadata_0=Module["_emscripten_bind_ParameterMetadata_ParameterMetadata_0"]=function(){return(_emscripten_bind_ParameterMetadata_ParameterMetadata_0=Module["_emscripten_bind_ParameterMetadata_ParameterMetadata_0"]=Module["asm"]["wC"]).apply(null,arguments)};var _emscripten_bind_ParameterMetadata_GetType_0=Module["_emscripten_bind_ParameterMetadata_GetType_0"]=function(){return(_emscripten_bind_ParameterMetadata_GetType_0=Module["_emscripten_bind_ParameterMetadata_GetType_0"]=Module["asm"]["xC"]).apply(null,arguments)};var _emscripten_bind_ParameterMetadata_SetType_1=Module["_emscripten_bind_ParameterMetadata_SetType_1"]=function(){return(_emscripten_bind_ParameterMetadata_SetType_1=Module["_emscripten_bind_ParameterMetadata_SetType_1"]=Module["asm"]["yC"]).apply(null,arguments)};var _emscripten_bind_ParameterMetadata_GetName_0=Module["_emscripten_bind_ParameterMetadata_GetName_0"]=function(){return(_emscripten_bind_ParameterMetadata_GetName_0=Module["_emscripten_bind_ParameterMetadata_GetName_0"]=Module["asm"]["zC"]).apply(null,arguments)};var _emscripten_bind_ParameterMetadata_SetName_1=Module["_emscripten_bind_ParameterMetadata_SetName_1"]=function(){return(_emscripten_bind_ParameterMetadata_SetName_1=Module["_emscripten_bind_ParameterMetadata_SetName_1"]=Module["asm"]["AC"]).apply(null,arguments)};var _emscripten_bind_ParameterMetadata_GetExtraInfo_0=Module["_emscripten_bind_ParameterMetadata_GetExtraInfo_0"]=function(){return(_emscripten_bind_ParameterMetadata_GetExtraInfo_0=Module["_emscripten_bind_ParameterMetadata_GetExtraInfo_0"]=Module["asm"]["BC"]).apply(null,arguments)};var _emscripten_bind_ParameterMetadata_SetExtraInfo_1=Module["_emscripten_bind_ParameterMetadata_SetExtraInfo_1"]=function(){return(_emscripten_bind_ParameterMetadata_SetExtraInfo_1=Module["_emscripten_bind_ParameterMetadata_SetExtraInfo_1"]=Module["asm"]["CC"]).apply(null,arguments)};var _emscripten_bind_ParameterMetadata_IsOptional_0=Module["_emscripten_bind_ParameterMetadata_IsOptional_0"]=function(){return(_emscripten_bind_ParameterMetadata_IsOptional_0=Module["_emscripten_bind_ParameterMetadata_IsOptional_0"]=Module["asm"]["DC"]).apply(null,arguments)};var _emscripten_bind_ParameterMetadata_SetOptional_1=Module["_emscripten_bind_ParameterMetadata_SetOptional_1"]=function(){return(_emscripten_bind_ParameterMetadata_SetOptional_1=Module["_emscripten_bind_ParameterMetadata_SetOptional_1"]=Module["asm"]["EC"]).apply(null,arguments)};var _emscripten_bind_ParameterMetadata_GetDescription_0=Module["_emscripten_bind_ParameterMetadata_GetDescription_0"]=function(){return(_emscripten_bind_ParameterMetadata_GetDescription_0=Module["_emscripten_bind_ParameterMetadata_GetDescription_0"]=Module["asm"]["FC"]).apply(null,arguments)};var _emscripten_bind_ParameterMetadata_SetDescription_1=Module["_emscripten_bind_ParameterMetadata_SetDescription_1"]=function(){return(_emscripten_bind_ParameterMetadata_SetDescription_1=Module["_emscripten_bind_ParameterMetadata_SetDescription_1"]=Module["asm"]["GC"]).apply(null,arguments)};var _emscripten_bind_ParameterMetadata_GetLongDescription_0=Module["_emscripten_bind_ParameterMetadata_GetLongDescription_0"]=function(){return(_emscripten_bind_ParameterMetadata_GetLongDescription_0=Module["_emscripten_bind_ParameterMetadata_GetLongDescription_0"]=Module["asm"]["HC"]).apply(null,arguments)};var _emscripten_bind_ParameterMetadata_SetLongDescription_1=Module["_emscripten_bind_ParameterMetadata_SetLongDescription_1"]=function(){return(_emscripten_bind_ParameterMetadata_SetLongDescription_1=Module["_emscripten_bind_ParameterMetadata_SetLongDescription_1"]=Module["asm"]["IC"]).apply(null,arguments)};var _emscripten_bind_ParameterMetadata_GetHint_0=Module["_emscripten_bind_ParameterMetadata_GetHint_0"]=function(){return(_emscripten_bind_ParameterMetadata_GetHint_0=Module["_emscripten_bind_ParameterMetadata_GetHint_0"]=Module["asm"]["JC"]).apply(null,arguments)};var _emscripten_bind_ParameterMetadata_SetHint_1=Module["_emscripten_bind_ParameterMetadata_SetHint_1"]=function(){return(_emscripten_bind_ParameterMetadata_SetHint_1=Module["_emscripten_bind_ParameterMetadata_SetHint_1"]=Module["asm"]["KC"]).apply(null,arguments)};var _emscripten_bind_ParameterMetadata_IsCodeOnly_0=Module["_emscripten_bind_ParameterMetadata_IsCodeOnly_0"]=function(){return(_emscripten_bind_ParameterMetadata_IsCodeOnly_0=Module["_emscripten_bind_ParameterMetadata_IsCodeOnly_0"]=Module["asm"]["LC"]).apply(null,arguments)};var _emscripten_bind_ParameterMetadata_SetCodeOnly_1=Module["_emscripten_bind_ParameterMetadata_SetCodeOnly_1"]=function(){return(_emscripten_bind_ParameterMetadata_SetCodeOnly_1=Module["_emscripten_bind_ParameterMetadata_SetCodeOnly_1"]=Module["asm"]["MC"]).apply(null,arguments)};var _emscripten_bind_ParameterMetadata_GetDefaultValue_0=Module["_emscripten_bind_ParameterMetadata_GetDefaultValue_0"]=function(){return(_emscripten_bind_ParameterMetadata_GetDefaultValue_0=Module["_emscripten_bind_ParameterMetadata_GetDefaultValue_0"]=Module["asm"]["NC"]).apply(null,arguments)};var _emscripten_bind_ParameterMetadata_SetDefaultValue_1=Module["_emscripten_bind_ParameterMetadata_SetDefaultValue_1"]=function(){return(_emscripten_bind_ParameterMetadata_SetDefaultValue_1=Module["_emscripten_bind_ParameterMetadata_SetDefaultValue_1"]=Module["asm"]["OC"]).apply(null,arguments)};var _emscripten_bind_ParameterMetadata_SetValueTypeMetadata_1=Module["_emscripten_bind_ParameterMetadata_SetValueTypeMetadata_1"]=function(){return(_emscripten_bind_ParameterMetadata_SetValueTypeMetadata_1=Module["_emscripten_bind_ParameterMetadata_SetValueTypeMetadata_1"]=Module["asm"]["PC"]).apply(null,arguments)};var _emscripten_bind_ParameterMetadata_GetValueTypeMetadata_0=Module["_emscripten_bind_ParameterMetadata_GetValueTypeMetadata_0"]=function(){return(_emscripten_bind_ParameterMetadata_GetValueTypeMetadata_0=Module["_emscripten_bind_ParameterMetadata_GetValueTypeMetadata_0"]=Module["asm"]["QC"]).apply(null,arguments)};var _emscripten_bind_ParameterMetadata_STATIC_IsObject_1=Module["_emscripten_bind_ParameterMetadata_STATIC_IsObject_1"]=function(){return(_emscripten_bind_ParameterMetadata_STATIC_IsObject_1=Module["_emscripten_bind_ParameterMetadata_STATIC_IsObject_1"]=Module["asm"]["RC"]).apply(null,arguments)};var _emscripten_bind_ParameterMetadata_STATIC_IsBehavior_1=Module["_emscripten_bind_ParameterMetadata_STATIC_IsBehavior_1"]=function(){return(_emscripten_bind_ParameterMetadata_STATIC_IsBehavior_1=Module["_emscripten_bind_ParameterMetadata_STATIC_IsBehavior_1"]=Module["asm"]["SC"]).apply(null,arguments)};var _emscripten_bind_ParameterMetadata_STATIC_IsExpression_2=Module["_emscripten_bind_ParameterMetadata_STATIC_IsExpression_2"]=function(){return(_emscripten_bind_ParameterMetadata_STATIC_IsExpression_2=Module["_emscripten_bind_ParameterMetadata_STATIC_IsExpression_2"]=Module["asm"]["TC"]).apply(null,arguments)};var _emscripten_bind_ParameterMetadata_SerializeTo_1=Module["_emscripten_bind_ParameterMetadata_SerializeTo_1"]=function(){return(_emscripten_bind_ParameterMetadata_SerializeTo_1=Module["_emscripten_bind_ParameterMetadata_SerializeTo_1"]=Module["asm"]["UC"]).apply(null,arguments)};var _emscripten_bind_ParameterMetadata_UnserializeFrom_1=Module["_emscripten_bind_ParameterMetadata_UnserializeFrom_1"]=function(){return(_emscripten_bind_ParameterMetadata_UnserializeFrom_1=Module["_emscripten_bind_ParameterMetadata_UnserializeFrom_1"]=Module["asm"]["VC"]).apply(null,arguments)};var _emscripten_bind_ParameterMetadata___destroy___0=Module["_emscripten_bind_ParameterMetadata___destroy___0"]=function(){return(_emscripten_bind_ParameterMetadata___destroy___0=Module["_emscripten_bind_ParameterMetadata___destroy___0"]=Module["asm"]["WC"]).apply(null,arguments)};var _emscripten_bind_ValueTypeMetadata_ValueTypeMetadata_0=Module["_emscripten_bind_ValueTypeMetadata_ValueTypeMetadata_0"]=function(){return(_emscripten_bind_ValueTypeMetadata_ValueTypeMetadata_0=Module["_emscripten_bind_ValueTypeMetadata_ValueTypeMetadata_0"]=Module["asm"]["XC"]).apply(null,arguments)};var _emscripten_bind_ValueTypeMetadata_GetName_0=Module["_emscripten_bind_ValueTypeMetadata_GetName_0"]=function(){return(_emscripten_bind_ValueTypeMetadata_GetName_0=Module["_emscripten_bind_ValueTypeMetadata_GetName_0"]=Module["asm"]["YC"]).apply(null,arguments)};var _emscripten_bind_ValueTypeMetadata_SetName_1=Module["_emscripten_bind_ValueTypeMetadata_SetName_1"]=function(){return(_emscripten_bind_ValueTypeMetadata_SetName_1=Module["_emscripten_bind_ValueTypeMetadata_SetName_1"]=Module["asm"]["ZC"]).apply(null,arguments)};var _emscripten_bind_ValueTypeMetadata_GetExtraInfo_0=Module["_emscripten_bind_ValueTypeMetadata_GetExtraInfo_0"]=function(){return(_emscripten_bind_ValueTypeMetadata_GetExtraInfo_0=Module["_emscripten_bind_ValueTypeMetadata_GetExtraInfo_0"]=Module["asm"]["_C"]).apply(null,arguments)};var _emscripten_bind_ValueTypeMetadata_SetExtraInfo_1=Module["_emscripten_bind_ValueTypeMetadata_SetExtraInfo_1"]=function(){return(_emscripten_bind_ValueTypeMetadata_SetExtraInfo_1=Module["_emscripten_bind_ValueTypeMetadata_SetExtraInfo_1"]=Module["asm"]["$C"]).apply(null,arguments)};var _emscripten_bind_ValueTypeMetadata_IsOptional_0=Module["_emscripten_bind_ValueTypeMetadata_IsOptional_0"]=function(){return(_emscripten_bind_ValueTypeMetadata_IsOptional_0=Module["_emscripten_bind_ValueTypeMetadata_IsOptional_0"]=Module["asm"]["aD"]).apply(null,arguments)};var _emscripten_bind_ValueTypeMetadata_SetOptional_1=Module["_emscripten_bind_ValueTypeMetadata_SetOptional_1"]=function(){return(_emscripten_bind_ValueTypeMetadata_SetOptional_1=Module["_emscripten_bind_ValueTypeMetadata_SetOptional_1"]=Module["asm"]["bD"]).apply(null,arguments)};var _emscripten_bind_ValueTypeMetadata_GetDefaultValue_0=Module["_emscripten_bind_ValueTypeMetadata_GetDefaultValue_0"]=function(){return(_emscripten_bind_ValueTypeMetadata_GetDefaultValue_0=Module["_emscripten_bind_ValueTypeMetadata_GetDefaultValue_0"]=Module["asm"]["cD"]).apply(null,arguments)};var _emscripten_bind_ValueTypeMetadata_SetDefaultValue_1=Module["_emscripten_bind_ValueTypeMetadata_SetDefaultValue_1"]=function(){return(_emscripten_bind_ValueTypeMetadata_SetDefaultValue_1=Module["_emscripten_bind_ValueTypeMetadata_SetDefaultValue_1"]=Module["asm"]["dD"]).apply(null,arguments)};var _emscripten_bind_ValueTypeMetadata_IsObject_0=Module["_emscripten_bind_ValueTypeMetadata_IsObject_0"]=function(){return(_emscripten_bind_ValueTypeMetadata_IsObject_0=Module["_emscripten_bind_ValueTypeMetadata_IsObject_0"]=Module["asm"]["eD"]).apply(null,arguments)};var _emscripten_bind_ValueTypeMetadata_IsBehavior_0=Module["_emscripten_bind_ValueTypeMetadata_IsBehavior_0"]=function(){return(_emscripten_bind_ValueTypeMetadata_IsBehavior_0=Module["_emscripten_bind_ValueTypeMetadata_IsBehavior_0"]=Module["asm"]["fD"]).apply(null,arguments)};var _emscripten_bind_ValueTypeMetadata_IsNumber_0=Module["_emscripten_bind_ValueTypeMetadata_IsNumber_0"]=function(){return(_emscripten_bind_ValueTypeMetadata_IsNumber_0=Module["_emscripten_bind_ValueTypeMetadata_IsNumber_0"]=Module["asm"]["gD"]).apply(null,arguments)};var _emscripten_bind_ValueTypeMetadata_IsString_0=Module["_emscripten_bind_ValueTypeMetadata_IsString_0"]=function(){return(_emscripten_bind_ValueTypeMetadata_IsString_0=Module["_emscripten_bind_ValueTypeMetadata_IsString_0"]=Module["asm"]["hD"]).apply(null,arguments)};var _emscripten_bind_ValueTypeMetadata_IsVariable_0=Module["_emscripten_bind_ValueTypeMetadata_IsVariable_0"]=function(){return(_emscripten_bind_ValueTypeMetadata_IsVariable_0=Module["_emscripten_bind_ValueTypeMetadata_IsVariable_0"]=Module["asm"]["iD"]).apply(null,arguments)};var _emscripten_bind_ValueTypeMetadata_STATIC_IsTypeObject_1=Module["_emscripten_bind_ValueTypeMetadata_STATIC_IsTypeObject_1"]=function(){return(_emscripten_bind_ValueTypeMetadata_STATIC_IsTypeObject_1=Module["_emscripten_bind_ValueTypeMetadata_STATIC_IsTypeObject_1"]=Module["asm"]["jD"]).apply(null,arguments)};var _emscripten_bind_ValueTypeMetadata_STATIC_IsTypeBehavior_1=Module["_emscripten_bind_ValueTypeMetadata_STATIC_IsTypeBehavior_1"]=function(){return(_emscripten_bind_ValueTypeMetadata_STATIC_IsTypeBehavior_1=Module["_emscripten_bind_ValueTypeMetadata_STATIC_IsTypeBehavior_1"]=Module["asm"]["kD"]).apply(null,arguments)};var _emscripten_bind_ValueTypeMetadata_STATIC_IsTypeExpression_2=Module["_emscripten_bind_ValueTypeMetadata_STATIC_IsTypeExpression_2"]=function(){return(_emscripten_bind_ValueTypeMetadata_STATIC_IsTypeExpression_2=Module["_emscripten_bind_ValueTypeMetadata_STATIC_IsTypeExpression_2"]=Module["asm"]["lD"]).apply(null,arguments)};var _emscripten_bind_ValueTypeMetadata_STATIC_GetPrimitiveValueType_1=Module["_emscripten_bind_ValueTypeMetadata_STATIC_GetPrimitiveValueType_1"]=function(){return(_emscripten_bind_ValueTypeMetadata_STATIC_GetPrimitiveValueType_1=Module["_emscripten_bind_ValueTypeMetadata_STATIC_GetPrimitiveValueType_1"]=Module["asm"]["mD"]).apply(null,arguments)};var _emscripten_bind_ValueTypeMetadata_STATIC_ConvertPropertyTypeToValueType_1=Module["_emscripten_bind_ValueTypeMetadata_STATIC_ConvertPropertyTypeToValueType_1"]=function(){return(_emscripten_bind_ValueTypeMetadata_STATIC_ConvertPropertyTypeToValueType_1=Module["_emscripten_bind_ValueTypeMetadata_STATIC_ConvertPropertyTypeToValueType_1"]=Module["asm"]["nD"]).apply(null,arguments)};var _emscripten_bind_ValueTypeMetadata_SerializeTo_1=Module["_emscripten_bind_ValueTypeMetadata_SerializeTo_1"]=function(){return(_emscripten_bind_ValueTypeMetadata_SerializeTo_1=Module["_emscripten_bind_ValueTypeMetadata_SerializeTo_1"]=Module["asm"]["oD"]).apply(null,arguments)};var _emscripten_bind_ValueTypeMetadata_UnserializeFrom_1=Module["_emscripten_bind_ValueTypeMetadata_UnserializeFrom_1"]=function(){return(_emscripten_bind_ValueTypeMetadata_UnserializeFrom_1=Module["_emscripten_bind_ValueTypeMetadata_UnserializeFrom_1"]=Module["asm"]["pD"]).apply(null,arguments)};var _emscripten_bind_ValueTypeMetadata___destroy___0=Module["_emscripten_bind_ValueTypeMetadata___destroy___0"]=function(){return(_emscripten_bind_ValueTypeMetadata___destroy___0=Module["_emscripten_bind_ValueTypeMetadata___destroy___0"]=Module["asm"]["qD"]).apply(null,arguments)};var _emscripten_bind_ParameterMetadataContainer_InsertNewParameter_2=Module["_emscripten_bind_ParameterMetadataContainer_InsertNewParameter_2"]=function(){return(_emscripten_bind_ParameterMetadataContainer_InsertNewParameter_2=Module["_emscripten_bind_ParameterMetadataContainer_InsertNewParameter_2"]=Module["asm"]["rD"]).apply(null,arguments)};var _emscripten_bind_ParameterMetadataContainer_InsertParameter_2=Module["_emscripten_bind_ParameterMetadataContainer_InsertParameter_2"]=function(){return(_emscripten_bind_ParameterMetadataContainer_InsertParameter_2=Module["_emscripten_bind_ParameterMetadataContainer_InsertParameter_2"]=Module["asm"]["sD"]).apply(null,arguments)};var _emscripten_bind_ParameterMetadataContainer_HasParameterNamed_1=Module["_emscripten_bind_ParameterMetadataContainer_HasParameterNamed_1"]=function(){return(_emscripten_bind_ParameterMetadataContainer_HasParameterNamed_1=Module["_emscripten_bind_ParameterMetadataContainer_HasParameterNamed_1"]=Module["asm"]["tD"]).apply(null,arguments)};var _emscripten_bind_ParameterMetadataContainer_GetParameter_1=Module["_emscripten_bind_ParameterMetadataContainer_GetParameter_1"]=function(){return(_emscripten_bind_ParameterMetadataContainer_GetParameter_1=Module["_emscripten_bind_ParameterMetadataContainer_GetParameter_1"]=Module["asm"]["uD"]).apply(null,arguments)};var _emscripten_bind_ParameterMetadataContainer_GetParameterAt_1=Module["_emscripten_bind_ParameterMetadataContainer_GetParameterAt_1"]=function(){return(_emscripten_bind_ParameterMetadataContainer_GetParameterAt_1=Module["_emscripten_bind_ParameterMetadataContainer_GetParameterAt_1"]=Module["asm"]["vD"]).apply(null,arguments)};var _emscripten_bind_ParameterMetadataContainer_RemoveParameter_1=Module["_emscripten_bind_ParameterMetadataContainer_RemoveParameter_1"]=function(){return(_emscripten_bind_ParameterMetadataContainer_RemoveParameter_1=Module["_emscripten_bind_ParameterMetadataContainer_RemoveParameter_1"]=Module["asm"]["wD"]).apply(null,arguments)};var _emscripten_bind_ParameterMetadataContainer_MoveParameter_2=Module["_emscripten_bind_ParameterMetadataContainer_MoveParameter_2"]=function(){return(_emscripten_bind_ParameterMetadataContainer_MoveParameter_2=Module["_emscripten_bind_ParameterMetadataContainer_MoveParameter_2"]=Module["asm"]["xD"]).apply(null,arguments)};var _emscripten_bind_ParameterMetadataContainer_GetParametersCount_0=Module["_emscripten_bind_ParameterMetadataContainer_GetParametersCount_0"]=function(){return(_emscripten_bind_ParameterMetadataContainer_GetParametersCount_0=Module["_emscripten_bind_ParameterMetadataContainer_GetParametersCount_0"]=Module["asm"]["yD"]).apply(null,arguments)};var _emscripten_bind_ParameterMetadataContainer_GetParameterPosition_1=Module["_emscripten_bind_ParameterMetadataContainer_GetParameterPosition_1"]=function(){return(_emscripten_bind_ParameterMetadataContainer_GetParameterPosition_1=Module["_emscripten_bind_ParameterMetadataContainer_GetParameterPosition_1"]=Module["asm"]["zD"]).apply(null,arguments)};var _emscripten_bind_ParameterMetadataContainer_ClearParameters_0=Module["_emscripten_bind_ParameterMetadataContainer_ClearParameters_0"]=function(){return(_emscripten_bind_ParameterMetadataContainer_ClearParameters_0=Module["_emscripten_bind_ParameterMetadataContainer_ClearParameters_0"]=Module["asm"]["AD"]).apply(null,arguments)};var _emscripten_bind_ParameterMetadataContainer_AddNewParameter_1=Module["_emscripten_bind_ParameterMetadataContainer_AddNewParameter_1"]=function(){return(_emscripten_bind_ParameterMetadataContainer_AddNewParameter_1=Module["_emscripten_bind_ParameterMetadataContainer_AddNewParameter_1"]=Module["asm"]["BD"]).apply(null,arguments)};var _emscripten_bind_ParameterMetadataContainer___destroy___0=Module["_emscripten_bind_ParameterMetadataContainer___destroy___0"]=function(){return(_emscripten_bind_ParameterMetadataContainer___destroy___0=Module["_emscripten_bind_ParameterMetadataContainer___destroy___0"]=Module["asm"]["CD"]).apply(null,arguments)};var _emscripten_bind_ParameterMetadataTools_STATIC_ParametersToObjectsContainer_3=Module["_emscripten_bind_ParameterMetadataTools_STATIC_ParametersToObjectsContainer_3"]=function(){return(_emscripten_bind_ParameterMetadataTools_STATIC_ParametersToObjectsContainer_3=Module["_emscripten_bind_ParameterMetadataTools_STATIC_ParametersToObjectsContainer_3"]=Module["asm"]["DD"]).apply(null,arguments)};var _emscripten_bind_ParameterMetadataTools_STATIC_GetObjectParameterIndexFor_2=Module["_emscripten_bind_ParameterMetadataTools_STATIC_GetObjectParameterIndexFor_2"]=function(){return(_emscripten_bind_ParameterMetadataTools_STATIC_GetObjectParameterIndexFor_2=Module["_emscripten_bind_ParameterMetadataTools_STATIC_GetObjectParameterIndexFor_2"]=Module["asm"]["ED"]).apply(null,arguments)};var _emscripten_bind_ParameterMetadataTools___destroy___0=Module["_emscripten_bind_ParameterMetadataTools___destroy___0"]=function(){return(_emscripten_bind_ParameterMetadataTools___destroy___0=Module["_emscripten_bind_ParameterMetadataTools___destroy___0"]=Module["asm"]["FD"]).apply(null,arguments)};var _emscripten_bind_ObjectMetadata_GetName_0=Module["_emscripten_bind_ObjectMetadata_GetName_0"]=function(){return(_emscripten_bind_ObjectMetadata_GetName_0=Module["_emscripten_bind_ObjectMetadata_GetName_0"]=Module["asm"]["GD"]).apply(null,arguments)};var _emscripten_bind_ObjectMetadata_GetFullName_0=Module["_emscripten_bind_ObjectMetadata_GetFullName_0"]=function(){return(_emscripten_bind_ObjectMetadata_GetFullName_0=Module["_emscripten_bind_ObjectMetadata_GetFullName_0"]=Module["asm"]["HD"]).apply(null,arguments)};var _emscripten_bind_ObjectMetadata_GetDescription_0=Module["_emscripten_bind_ObjectMetadata_GetDescription_0"]=function(){return(_emscripten_bind_ObjectMetadata_GetDescription_0=Module["_emscripten_bind_ObjectMetadata_GetDescription_0"]=Module["asm"]["ID"]).apply(null,arguments)};var _emscripten_bind_ObjectMetadata_GetIconFilename_0=Module["_emscripten_bind_ObjectMetadata_GetIconFilename_0"]=function(){return(_emscripten_bind_ObjectMetadata_GetIconFilename_0=Module["_emscripten_bind_ObjectMetadata_GetIconFilename_0"]=Module["asm"]["JD"]).apply(null,arguments)};var _emscripten_bind_ObjectMetadata_GetHelpPath_0=Module["_emscripten_bind_ObjectMetadata_GetHelpPath_0"]=function(){return(_emscripten_bind_ObjectMetadata_GetHelpPath_0=Module["_emscripten_bind_ObjectMetadata_GetHelpPath_0"]=Module["asm"]["KD"]).apply(null,arguments)};var _emscripten_bind_ObjectMetadata_GetCategory_0=Module["_emscripten_bind_ObjectMetadata_GetCategory_0"]=function(){return(_emscripten_bind_ObjectMetadata_GetCategory_0=Module["_emscripten_bind_ObjectMetadata_GetCategory_0"]=Module["asm"]["LD"]).apply(null,arguments)};var _emscripten_bind_ObjectMetadata_GetAssetStoreTag_0=Module["_emscripten_bind_ObjectMetadata_GetAssetStoreTag_0"]=function(){return(_emscripten_bind_ObjectMetadata_GetAssetStoreTag_0=Module["_emscripten_bind_ObjectMetadata_GetAssetStoreTag_0"]=Module["asm"]["MD"]).apply(null,arguments)};var _emscripten_bind_ObjectMetadata_SetCategory_1=Module["_emscripten_bind_ObjectMetadata_SetCategory_1"]=function(){return(_emscripten_bind_ObjectMetadata_SetCategory_1=Module["_emscripten_bind_ObjectMetadata_SetCategory_1"]=Module["asm"]["ND"]).apply(null,arguments)};var _emscripten_bind_ObjectMetadata_SetAssetStoreTag_1=Module["_emscripten_bind_ObjectMetadata_SetAssetStoreTag_1"]=function(){return(_emscripten_bind_ObjectMetadata_SetAssetStoreTag_1=Module["_emscripten_bind_ObjectMetadata_SetAssetStoreTag_1"]=Module["asm"]["OD"]).apply(null,arguments)};var _emscripten_bind_ObjectMetadata_AddInGameEditorResource_0=Module["_emscripten_bind_ObjectMetadata_AddInGameEditorResource_0"]=function(){return(_emscripten_bind_ObjectMetadata_AddInGameEditorResource_0=Module["_emscripten_bind_ObjectMetadata_AddInGameEditorResource_0"]=Module["asm"]["PD"]).apply(null,arguments)};var _emscripten_bind_ObjectMetadata_AddScopedCondition_7=Module["_emscripten_bind_ObjectMetadata_AddScopedCondition_7"]=function(){return(_emscripten_bind_ObjectMetadata_AddScopedCondition_7=Module["_emscripten_bind_ObjectMetadata_AddScopedCondition_7"]=Module["asm"]["QD"]).apply(null,arguments)};var _emscripten_bind_ObjectMetadata_AddScopedAction_7=Module["_emscripten_bind_ObjectMetadata_AddScopedAction_7"]=function(){return(_emscripten_bind_ObjectMetadata_AddScopedAction_7=Module["_emscripten_bind_ObjectMetadata_AddScopedAction_7"]=Module["asm"]["RD"]).apply(null,arguments)};var _emscripten_bind_ObjectMetadata_AddCondition_7=Module["_emscripten_bind_ObjectMetadata_AddCondition_7"]=function(){return(_emscripten_bind_ObjectMetadata_AddCondition_7=Module["_emscripten_bind_ObjectMetadata_AddCondition_7"]=Module["asm"]["SD"]).apply(null,arguments)};var _emscripten_bind_ObjectMetadata_AddAction_7=Module["_emscripten_bind_ObjectMetadata_AddAction_7"]=function(){return(_emscripten_bind_ObjectMetadata_AddAction_7=Module["_emscripten_bind_ObjectMetadata_AddAction_7"]=Module["asm"]["TD"]).apply(null,arguments)};var _emscripten_bind_ObjectMetadata_AddExpression_5=Module["_emscripten_bind_ObjectMetadata_AddExpression_5"]=function(){return(_emscripten_bind_ObjectMetadata_AddExpression_5=Module["_emscripten_bind_ObjectMetadata_AddExpression_5"]=Module["asm"]["UD"]).apply(null,arguments)};var _emscripten_bind_ObjectMetadata_AddStrExpression_5=Module["_emscripten_bind_ObjectMetadata_AddStrExpression_5"]=function(){return(_emscripten_bind_ObjectMetadata_AddStrExpression_5=Module["_emscripten_bind_ObjectMetadata_AddStrExpression_5"]=Module["asm"]["VD"]).apply(null,arguments)};var _emscripten_bind_ObjectMetadata_AddExpressionAndCondition_7=Module["_emscripten_bind_ObjectMetadata_AddExpressionAndCondition_7"]=function(){return(_emscripten_bind_ObjectMetadata_AddExpressionAndCondition_7=Module["_emscripten_bind_ObjectMetadata_AddExpressionAndCondition_7"]=Module["asm"]["WD"]).apply(null,arguments)};var _emscripten_bind_ObjectMetadata_AddExpressionAndConditionAndAction_7=Module["_emscripten_bind_ObjectMetadata_AddExpressionAndConditionAndAction_7"]=function(){return(_emscripten_bind_ObjectMetadata_AddExpressionAndConditionAndAction_7=Module["_emscripten_bind_ObjectMetadata_AddExpressionAndConditionAndAction_7"]=Module["asm"]["XD"]).apply(null,arguments)};var _emscripten_bind_ObjectMetadata_GetAllActions_0=Module["_emscripten_bind_ObjectMetadata_GetAllActions_0"]=function(){return(_emscripten_bind_ObjectMetadata_GetAllActions_0=Module["_emscripten_bind_ObjectMetadata_GetAllActions_0"]=Module["asm"]["YD"]).apply(null,arguments)};var _emscripten_bind_ObjectMetadata_GetAllConditions_0=Module["_emscripten_bind_ObjectMetadata_GetAllConditions_0"]=function(){return(_emscripten_bind_ObjectMetadata_GetAllConditions_0=Module["_emscripten_bind_ObjectMetadata_GetAllConditions_0"]=Module["asm"]["ZD"]).apply(null,arguments)};var _emscripten_bind_ObjectMetadata_GetAllExpressions_0=Module["_emscripten_bind_ObjectMetadata_GetAllExpressions_0"]=function(){return(_emscripten_bind_ObjectMetadata_GetAllExpressions_0=Module["_emscripten_bind_ObjectMetadata_GetAllExpressions_0"]=Module["asm"]["_D"]).apply(null,arguments)};var _emscripten_bind_ObjectMetadata_GetAllStrExpressions_0=Module["_emscripten_bind_ObjectMetadata_GetAllStrExpressions_0"]=function(){return(_emscripten_bind_ObjectMetadata_GetAllStrExpressions_0=Module["_emscripten_bind_ObjectMetadata_GetAllStrExpressions_0"]=Module["asm"]["$D"]).apply(null,arguments)};var _emscripten_bind_ObjectMetadata_SetIncludeFile_1=Module["_emscripten_bind_ObjectMetadata_SetIncludeFile_1"]=function(){return(_emscripten_bind_ObjectMetadata_SetIncludeFile_1=Module["_emscripten_bind_ObjectMetadata_SetIncludeFile_1"]=Module["asm"]["aE"]).apply(null,arguments)};var _emscripten_bind_ObjectMetadata_AddIncludeFile_1=Module["_emscripten_bind_ObjectMetadata_AddIncludeFile_1"]=function(){return(_emscripten_bind_ObjectMetadata_AddIncludeFile_1=Module["_emscripten_bind_ObjectMetadata_AddIncludeFile_1"]=Module["asm"]["bE"]).apply(null,arguments)};var _emscripten_bind_ObjectMetadata_GetDefaultBehaviors_0=Module["_emscripten_bind_ObjectMetadata_GetDefaultBehaviors_0"]=function(){return(_emscripten_bind_ObjectMetadata_GetDefaultBehaviors_0=Module["_emscripten_bind_ObjectMetadata_GetDefaultBehaviors_0"]=Module["asm"]["cE"]).apply(null,arguments)};var _emscripten_bind_ObjectMetadata_HasDefaultBehavior_1=Module["_emscripten_bind_ObjectMetadata_HasDefaultBehavior_1"]=function(){return(_emscripten_bind_ObjectMetadata_HasDefaultBehavior_1=Module["_emscripten_bind_ObjectMetadata_HasDefaultBehavior_1"]=Module["asm"]["dE"]).apply(null,arguments)};var _emscripten_bind_ObjectMetadata_AddDefaultBehavior_1=Module["_emscripten_bind_ObjectMetadata_AddDefaultBehavior_1"]=function(){return(_emscripten_bind_ObjectMetadata_AddDefaultBehavior_1=Module["_emscripten_bind_ObjectMetadata_AddDefaultBehavior_1"]=Module["asm"]["eE"]).apply(null,arguments)};var _emscripten_bind_ObjectMetadata_IsPrivate_0=Module["_emscripten_bind_ObjectMetadata_IsPrivate_0"]=function(){return(_emscripten_bind_ObjectMetadata_IsPrivate_0=Module["_emscripten_bind_ObjectMetadata_IsPrivate_0"]=Module["asm"]["fE"]).apply(null,arguments)};var _emscripten_bind_ObjectMetadata_SetPrivate_0=Module["_emscripten_bind_ObjectMetadata_SetPrivate_0"]=function(){return(_emscripten_bind_ObjectMetadata_SetPrivate_0=Module["_emscripten_bind_ObjectMetadata_SetPrivate_0"]=Module["asm"]["gE"]).apply(null,arguments)};var _emscripten_bind_ObjectMetadata_SetHidden_0=Module["_emscripten_bind_ObjectMetadata_SetHidden_0"]=function(){return(_emscripten_bind_ObjectMetadata_SetHidden_0=Module["_emscripten_bind_ObjectMetadata_SetHidden_0"]=Module["asm"]["hE"]).apply(null,arguments)};var _emscripten_bind_ObjectMetadata_IsHidden_0=Module["_emscripten_bind_ObjectMetadata_IsHidden_0"]=function(){return(_emscripten_bind_ObjectMetadata_IsHidden_0=Module["_emscripten_bind_ObjectMetadata_IsHidden_0"]=Module["asm"]["iE"]).apply(null,arguments)};var _emscripten_bind_ObjectMetadata_MarkAsRenderedIn3D_0=Module["_emscripten_bind_ObjectMetadata_MarkAsRenderedIn3D_0"]=function(){return(_emscripten_bind_ObjectMetadata_MarkAsRenderedIn3D_0=Module["_emscripten_bind_ObjectMetadata_MarkAsRenderedIn3D_0"]=Module["asm"]["jE"]).apply(null,arguments)};var _emscripten_bind_ObjectMetadata_IsRenderedIn3D_0=Module["_emscripten_bind_ObjectMetadata_IsRenderedIn3D_0"]=function(){return(_emscripten_bind_ObjectMetadata_IsRenderedIn3D_0=Module["_emscripten_bind_ObjectMetadata_IsRenderedIn3D_0"]=Module["asm"]["kE"]).apply(null,arguments)};var _emscripten_bind_ObjectMetadata_SetOpenFullEditorLabel_1=Module["_emscripten_bind_ObjectMetadata_SetOpenFullEditorLabel_1"]=function(){return(_emscripten_bind_ObjectMetadata_SetOpenFullEditorLabel_1=Module["_emscripten_bind_ObjectMetadata_SetOpenFullEditorLabel_1"]=Module["asm"]["lE"]).apply(null,arguments)};var _emscripten_bind_ObjectMetadata_GetOpenFullEditorLabel_0=Module["_emscripten_bind_ObjectMetadata_GetOpenFullEditorLabel_0"]=function(){return(_emscripten_bind_ObjectMetadata_GetOpenFullEditorLabel_0=Module["_emscripten_bind_ObjectMetadata_GetOpenFullEditorLabel_0"]=Module["asm"]["mE"]).apply(null,arguments)};var _emscripten_bind_ObjectMetadata___destroy___0=Module["_emscripten_bind_ObjectMetadata___destroy___0"]=function(){return(_emscripten_bind_ObjectMetadata___destroy___0=Module["_emscripten_bind_ObjectMetadata___destroy___0"]=Module["asm"]["nE"]).apply(null,arguments)};var _emscripten_bind_InGameEditorResourceMetadata_SetResourceName_1=Module["_emscripten_bind_InGameEditorResourceMetadata_SetResourceName_1"]=function(){return(_emscripten_bind_InGameEditorResourceMetadata_SetResourceName_1=Module["_emscripten_bind_InGameEditorResourceMetadata_SetResourceName_1"]=Module["asm"]["oE"]).apply(null,arguments)};var _emscripten_bind_InGameEditorResourceMetadata_SetFilePath_1=Module["_emscripten_bind_InGameEditorResourceMetadata_SetFilePath_1"]=function(){return(_emscripten_bind_InGameEditorResourceMetadata_SetFilePath_1=Module["_emscripten_bind_InGameEditorResourceMetadata_SetFilePath_1"]=Module["asm"]["pE"]).apply(null,arguments)};var _emscripten_bind_InGameEditorResourceMetadata_SetKind_1=Module["_emscripten_bind_InGameEditorResourceMetadata_SetKind_1"]=function(){return(_emscripten_bind_InGameEditorResourceMetadata_SetKind_1=Module["_emscripten_bind_InGameEditorResourceMetadata_SetKind_1"]=Module["asm"]["qE"]).apply(null,arguments)};var _emscripten_bind_InGameEditorResourceMetadata___destroy___0=Module["_emscripten_bind_InGameEditorResourceMetadata___destroy___0"]=function(){return(_emscripten_bind_InGameEditorResourceMetadata___destroy___0=Module["_emscripten_bind_InGameEditorResourceMetadata___destroy___0"]=Module["asm"]["rE"]).apply(null,arguments)};var _emscripten_bind_QuickCustomization___destroy___0=Module["_emscripten_bind_QuickCustomization___destroy___0"]=function(){return(_emscripten_bind_QuickCustomization___destroy___0=Module["_emscripten_bind_QuickCustomization___destroy___0"]=Module["asm"]["sE"]).apply(null,arguments)};var _emscripten_bind_QuickCustomizationVisibilitiesContainer_Set_2=Module["_emscripten_bind_QuickCustomizationVisibilitiesContainer_Set_2"]=function(){return(_emscripten_bind_QuickCustomizationVisibilitiesContainer_Set_2=Module["_emscripten_bind_QuickCustomizationVisibilitiesContainer_Set_2"]=Module["asm"]["tE"]).apply(null,arguments)};var _emscripten_bind_QuickCustomizationVisibilitiesContainer_Get_1=Module["_emscripten_bind_QuickCustomizationVisibilitiesContainer_Get_1"]=function(){return(_emscripten_bind_QuickCustomizationVisibilitiesContainer_Get_1=Module["_emscripten_bind_QuickCustomizationVisibilitiesContainer_Get_1"]=Module["asm"]["uE"]).apply(null,arguments)};var _emscripten_bind_QuickCustomizationVisibilitiesContainer___destroy___0=Module["_emscripten_bind_QuickCustomizationVisibilitiesContainer___destroy___0"]=function(){return(_emscripten_bind_QuickCustomizationVisibilitiesContainer___destroy___0=Module["_emscripten_bind_QuickCustomizationVisibilitiesContainer___destroy___0"]=Module["asm"]["vE"]).apply(null,arguments)};var _emscripten_bind_Screenshot_GetDelayTimeInSeconds_0=Module["_emscripten_bind_Screenshot_GetDelayTimeInSeconds_0"]=function(){return(_emscripten_bind_Screenshot_GetDelayTimeInSeconds_0=Module["_emscripten_bind_Screenshot_GetDelayTimeInSeconds_0"]=Module["asm"]["wE"]).apply(null,arguments)};var _emscripten_bind_Screenshot_SetDelayTimeInSeconds_1=Module["_emscripten_bind_Screenshot_SetDelayTimeInSeconds_1"]=function(){return(_emscripten_bind_Screenshot_SetDelayTimeInSeconds_1=Module["_emscripten_bind_Screenshot_SetDelayTimeInSeconds_1"]=Module["asm"]["xE"]).apply(null,arguments)};var _emscripten_bind_Screenshot_GetSignedUrl_0=Module["_emscripten_bind_Screenshot_GetSignedUrl_0"]=function(){return(_emscripten_bind_Screenshot_GetSignedUrl_0=Module["_emscripten_bind_Screenshot_GetSignedUrl_0"]=Module["asm"]["yE"]).apply(null,arguments)};var _emscripten_bind_Screenshot_SetSignedUrl_1=Module["_emscripten_bind_Screenshot_SetSignedUrl_1"]=function(){return(_emscripten_bind_Screenshot_SetSignedUrl_1=Module["_emscripten_bind_Screenshot_SetSignedUrl_1"]=Module["asm"]["zE"]).apply(null,arguments)};var _emscripten_bind_Screenshot_GetPublicUrl_0=Module["_emscripten_bind_Screenshot_GetPublicUrl_0"]=function(){return(_emscripten_bind_Screenshot_GetPublicUrl_0=Module["_emscripten_bind_Screenshot_GetPublicUrl_0"]=Module["asm"]["AE"]).apply(null,arguments)};var _emscripten_bind_Screenshot_SetPublicUrl_1=Module["_emscripten_bind_Screenshot_SetPublicUrl_1"]=function(){return(_emscripten_bind_Screenshot_SetPublicUrl_1=Module["_emscripten_bind_Screenshot_SetPublicUrl_1"]=Module["asm"]["BE"]).apply(null,arguments)};var _emscripten_bind_Screenshot___destroy___0=Module["_emscripten_bind_Screenshot___destroy___0"]=function(){return(_emscripten_bind_Screenshot___destroy___0=Module["_emscripten_bind_Screenshot___destroy___0"]=Module["asm"]["CE"]).apply(null,arguments)};var _emscripten_bind_CaptureOptions_AddScreenshot_1=Module["_emscripten_bind_CaptureOptions_AddScreenshot_1"]=function(){return(_emscripten_bind_CaptureOptions_AddScreenshot_1=Module["_emscripten_bind_CaptureOptions_AddScreenshot_1"]=Module["asm"]["DE"]).apply(null,arguments)};var _emscripten_bind_CaptureOptions_ClearScreenshots_0=Module["_emscripten_bind_CaptureOptions_ClearScreenshots_0"]=function(){return(_emscripten_bind_CaptureOptions_ClearScreenshots_0=Module["_emscripten_bind_CaptureOptions_ClearScreenshots_0"]=Module["asm"]["EE"]).apply(null,arguments)};var _emscripten_bind_CaptureOptions_GetScreenshots_0=Module["_emscripten_bind_CaptureOptions_GetScreenshots_0"]=function(){return(_emscripten_bind_CaptureOptions_GetScreenshots_0=Module["_emscripten_bind_CaptureOptions_GetScreenshots_0"]=Module["asm"]["FE"]).apply(null,arguments)};var _emscripten_bind_CaptureOptions___destroy___0=Module["_emscripten_bind_CaptureOptions___destroy___0"]=function(){return(_emscripten_bind_CaptureOptions___destroy___0=Module["_emscripten_bind_CaptureOptions___destroy___0"]=Module["asm"]["GE"]).apply(null,arguments)};var _emscripten_bind_BehaviorMetadata_GetName_0=Module["_emscripten_bind_BehaviorMetadata_GetName_0"]=function(){return(_emscripten_bind_BehaviorMetadata_GetName_0=Module["_emscripten_bind_BehaviorMetadata_GetName_0"]=Module["asm"]["HE"]).apply(null,arguments)};var _emscripten_bind_BehaviorMetadata_GetFullName_0=Module["_emscripten_bind_BehaviorMetadata_GetFullName_0"]=function(){return(_emscripten_bind_BehaviorMetadata_GetFullName_0=Module["_emscripten_bind_BehaviorMetadata_GetFullName_0"]=Module["asm"]["IE"]).apply(null,arguments)};var _emscripten_bind_BehaviorMetadata_GetDefaultName_0=Module["_emscripten_bind_BehaviorMetadata_GetDefaultName_0"]=function(){return(_emscripten_bind_BehaviorMetadata_GetDefaultName_0=Module["_emscripten_bind_BehaviorMetadata_GetDefaultName_0"]=Module["asm"]["JE"]).apply(null,arguments)};var _emscripten_bind_BehaviorMetadata_GetDescription_0=Module["_emscripten_bind_BehaviorMetadata_GetDescription_0"]=function(){return(_emscripten_bind_BehaviorMetadata_GetDescription_0=Module["_emscripten_bind_BehaviorMetadata_GetDescription_0"]=Module["asm"]["KE"]).apply(null,arguments)};var _emscripten_bind_BehaviorMetadata_GetGroup_0=Module["_emscripten_bind_BehaviorMetadata_GetGroup_0"]=function(){return(_emscripten_bind_BehaviorMetadata_GetGroup_0=Module["_emscripten_bind_BehaviorMetadata_GetGroup_0"]=Module["asm"]["LE"]).apply(null,arguments)};var _emscripten_bind_BehaviorMetadata_GetIconFilename_0=Module["_emscripten_bind_BehaviorMetadata_GetIconFilename_0"]=function(){return(_emscripten_bind_BehaviorMetadata_GetIconFilename_0=Module["_emscripten_bind_BehaviorMetadata_GetIconFilename_0"]=Module["asm"]["ME"]).apply(null,arguments)};var _emscripten_bind_BehaviorMetadata_GetHelpPath_0=Module["_emscripten_bind_BehaviorMetadata_GetHelpPath_0"]=function(){return(_emscripten_bind_BehaviorMetadata_GetHelpPath_0=Module["_emscripten_bind_BehaviorMetadata_GetHelpPath_0"]=Module["asm"]["NE"]).apply(null,arguments)};var _emscripten_bind_BehaviorMetadata_AddScopedCondition_7=Module["_emscripten_bind_BehaviorMetadata_AddScopedCondition_7"]=function(){return(_emscripten_bind_BehaviorMetadata_AddScopedCondition_7=Module["_emscripten_bind_BehaviorMetadata_AddScopedCondition_7"]=Module["asm"]["OE"]).apply(null,arguments)};var _emscripten_bind_BehaviorMetadata_AddScopedAction_7=Module["_emscripten_bind_BehaviorMetadata_AddScopedAction_7"]=function(){return(_emscripten_bind_BehaviorMetadata_AddScopedAction_7=Module["_emscripten_bind_BehaviorMetadata_AddScopedAction_7"]=Module["asm"]["PE"]).apply(null,arguments)};var _emscripten_bind_BehaviorMetadata_AddCondition_7=Module["_emscripten_bind_BehaviorMetadata_AddCondition_7"]=function(){return(_emscripten_bind_BehaviorMetadata_AddCondition_7=Module["_emscripten_bind_BehaviorMetadata_AddCondition_7"]=Module["asm"]["QE"]).apply(null,arguments)};var _emscripten_bind_BehaviorMetadata_AddAction_7=Module["_emscripten_bind_BehaviorMetadata_AddAction_7"]=function(){return(_emscripten_bind_BehaviorMetadata_AddAction_7=Module["_emscripten_bind_BehaviorMetadata_AddAction_7"]=Module["asm"]["RE"]).apply(null,arguments)};var _emscripten_bind_BehaviorMetadata_AddExpression_5=Module["_emscripten_bind_BehaviorMetadata_AddExpression_5"]=function(){return(_emscripten_bind_BehaviorMetadata_AddExpression_5=Module["_emscripten_bind_BehaviorMetadata_AddExpression_5"]=Module["asm"]["SE"]).apply(null,arguments)};var _emscripten_bind_BehaviorMetadata_AddStrExpression_5=Module["_emscripten_bind_BehaviorMetadata_AddStrExpression_5"]=function(){return(_emscripten_bind_BehaviorMetadata_AddStrExpression_5=Module["_emscripten_bind_BehaviorMetadata_AddStrExpression_5"]=Module["asm"]["TE"]).apply(null,arguments)};var _emscripten_bind_BehaviorMetadata_AddExpressionAndCondition_7=Module["_emscripten_bind_BehaviorMetadata_AddExpressionAndCondition_7"]=function(){return(_emscripten_bind_BehaviorMetadata_AddExpressionAndCondition_7=Module["_emscripten_bind_BehaviorMetadata_AddExpressionAndCondition_7"]=Module["asm"]["UE"]).apply(null,arguments)};var _emscripten_bind_BehaviorMetadata_AddExpressionAndConditionAndAction_7=Module["_emscripten_bind_BehaviorMetadata_AddExpressionAndConditionAndAction_7"]=function(){return(_emscripten_bind_BehaviorMetadata_AddExpressionAndConditionAndAction_7=Module["_emscripten_bind_BehaviorMetadata_AddExpressionAndConditionAndAction_7"]=Module["asm"]["VE"]).apply(null,arguments)};var _emscripten_bind_BehaviorMetadata_AddDuplicatedAction_2=Module["_emscripten_bind_BehaviorMetadata_AddDuplicatedAction_2"]=function(){return(_emscripten_bind_BehaviorMetadata_AddDuplicatedAction_2=Module["_emscripten_bind_BehaviorMetadata_AddDuplicatedAction_2"]=Module["asm"]["WE"]).apply(null,arguments)};var _emscripten_bind_BehaviorMetadata_AddDuplicatedCondition_2=Module["_emscripten_bind_BehaviorMetadata_AddDuplicatedCondition_2"]=function(){return(_emscripten_bind_BehaviorMetadata_AddDuplicatedCondition_2=Module["_emscripten_bind_BehaviorMetadata_AddDuplicatedCondition_2"]=Module["asm"]["XE"]).apply(null,arguments)};var _emscripten_bind_BehaviorMetadata_AddDuplicatedExpression_2=Module["_emscripten_bind_BehaviorMetadata_AddDuplicatedExpression_2"]=function(){return(_emscripten_bind_BehaviorMetadata_AddDuplicatedExpression_2=Module["_emscripten_bind_BehaviorMetadata_AddDuplicatedExpression_2"]=Module["asm"]["YE"]).apply(null,arguments)};var _emscripten_bind_BehaviorMetadata_AddDuplicatedStrExpression_2=Module["_emscripten_bind_BehaviorMetadata_AddDuplicatedStrExpression_2"]=function(){return(_emscripten_bind_BehaviorMetadata_AddDuplicatedStrExpression_2=Module["_emscripten_bind_BehaviorMetadata_AddDuplicatedStrExpression_2"]=Module["asm"]["ZE"]).apply(null,arguments)};var _emscripten_bind_BehaviorMetadata_GetAllActions_0=Module["_emscripten_bind_BehaviorMetadata_GetAllActions_0"]=function(){return(_emscripten_bind_BehaviorMetadata_GetAllActions_0=Module["_emscripten_bind_BehaviorMetadata_GetAllActions_0"]=Module["asm"]["_E"]).apply(null,arguments)};var _emscripten_bind_BehaviorMetadata_GetAllConditions_0=Module["_emscripten_bind_BehaviorMetadata_GetAllConditions_0"]=function(){return(_emscripten_bind_BehaviorMetadata_GetAllConditions_0=Module["_emscripten_bind_BehaviorMetadata_GetAllConditions_0"]=Module["asm"]["$E"]).apply(null,arguments)};var _emscripten_bind_BehaviorMetadata_GetAllExpressions_0=Module["_emscripten_bind_BehaviorMetadata_GetAllExpressions_0"]=function(){return(_emscripten_bind_BehaviorMetadata_GetAllExpressions_0=Module["_emscripten_bind_BehaviorMetadata_GetAllExpressions_0"]=Module["asm"]["aF"]).apply(null,arguments)};var _emscripten_bind_BehaviorMetadata_GetAllStrExpressions_0=Module["_emscripten_bind_BehaviorMetadata_GetAllStrExpressions_0"]=function(){return(_emscripten_bind_BehaviorMetadata_GetAllStrExpressions_0=Module["_emscripten_bind_BehaviorMetadata_GetAllStrExpressions_0"]=Module["asm"]["bF"]).apply(null,arguments)};var _emscripten_bind_BehaviorMetadata_SetIncludeFile_1=Module["_emscripten_bind_BehaviorMetadata_SetIncludeFile_1"]=function(){return(_emscripten_bind_BehaviorMetadata_SetIncludeFile_1=Module["_emscripten_bind_BehaviorMetadata_SetIncludeFile_1"]=Module["asm"]["cF"]).apply(null,arguments)};var _emscripten_bind_BehaviorMetadata_AddIncludeFile_1=Module["_emscripten_bind_BehaviorMetadata_AddIncludeFile_1"]=function(){return(_emscripten_bind_BehaviorMetadata_AddIncludeFile_1=Module["_emscripten_bind_BehaviorMetadata_AddIncludeFile_1"]=Module["asm"]["dF"]).apply(null,arguments)};var _emscripten_bind_BehaviorMetadata_AddRequiredFile_1=Module["_emscripten_bind_BehaviorMetadata_AddRequiredFile_1"]=function(){return(_emscripten_bind_BehaviorMetadata_AddRequiredFile_1=Module["_emscripten_bind_BehaviorMetadata_AddRequiredFile_1"]=Module["asm"]["eF"]).apply(null,arguments)};var _emscripten_bind_BehaviorMetadata_SetObjectType_1=Module["_emscripten_bind_BehaviorMetadata_SetObjectType_1"]=function(){return(_emscripten_bind_BehaviorMetadata_SetObjectType_1=Module["_emscripten_bind_BehaviorMetadata_SetObjectType_1"]=Module["asm"]["fF"]).apply(null,arguments)};var _emscripten_bind_BehaviorMetadata_GetObjectType_0=Module["_emscripten_bind_BehaviorMetadata_GetObjectType_0"]=function(){return(_emscripten_bind_BehaviorMetadata_GetObjectType_0=Module["_emscripten_bind_BehaviorMetadata_GetObjectType_0"]=Module["asm"]["gF"]).apply(null,arguments)};var _emscripten_bind_BehaviorMetadata_GetRequiredBehaviorTypes_0=Module["_emscripten_bind_BehaviorMetadata_GetRequiredBehaviorTypes_0"]=function(){return(_emscripten_bind_BehaviorMetadata_GetRequiredBehaviorTypes_0=Module["_emscripten_bind_BehaviorMetadata_GetRequiredBehaviorTypes_0"]=Module["asm"]["hF"]).apply(null,arguments)};var _emscripten_bind_BehaviorMetadata_IsPrivate_0=Module["_emscripten_bind_BehaviorMetadata_IsPrivate_0"]=function(){return(_emscripten_bind_BehaviorMetadata_IsPrivate_0=Module["_emscripten_bind_BehaviorMetadata_IsPrivate_0"]=Module["asm"]["iF"]).apply(null,arguments)};var _emscripten_bind_BehaviorMetadata_SetPrivate_0=Module["_emscripten_bind_BehaviorMetadata_SetPrivate_0"]=function(){return(_emscripten_bind_BehaviorMetadata_SetPrivate_0=Module["_emscripten_bind_BehaviorMetadata_SetPrivate_0"]=Module["asm"]["jF"]).apply(null,arguments)};var _emscripten_bind_BehaviorMetadata_IsHidden_0=Module["_emscripten_bind_BehaviorMetadata_IsHidden_0"]=function(){return(_emscripten_bind_BehaviorMetadata_IsHidden_0=Module["_emscripten_bind_BehaviorMetadata_IsHidden_0"]=Module["asm"]["kF"]).apply(null,arguments)};var _emscripten_bind_BehaviorMetadata_SetHidden_0=Module["_emscripten_bind_BehaviorMetadata_SetHidden_0"]=function(){return(_emscripten_bind_BehaviorMetadata_SetHidden_0=Module["_emscripten_bind_BehaviorMetadata_SetHidden_0"]=Module["asm"]["lF"]).apply(null,arguments)};var _emscripten_bind_BehaviorMetadata_IsRelevantForChildObjects_0=Module["_emscripten_bind_BehaviorMetadata_IsRelevantForChildObjects_0"]=function(){return(_emscripten_bind_BehaviorMetadata_IsRelevantForChildObjects_0=Module["_emscripten_bind_BehaviorMetadata_IsRelevantForChildObjects_0"]=Module["asm"]["mF"]).apply(null,arguments)};var _emscripten_bind_BehaviorMetadata_MarkAsIrrelevantForChildObjects_0=Module["_emscripten_bind_BehaviorMetadata_MarkAsIrrelevantForChildObjects_0"]=function(){return(_emscripten_bind_BehaviorMetadata_MarkAsIrrelevantForChildObjects_0=Module["_emscripten_bind_BehaviorMetadata_MarkAsIrrelevantForChildObjects_0"]=Module["asm"]["nF"]).apply(null,arguments)};var _emscripten_bind_BehaviorMetadata_IsActivatedByDefaultInEditor_0=Module["_emscripten_bind_BehaviorMetadata_IsActivatedByDefaultInEditor_0"]=function(){return(_emscripten_bind_BehaviorMetadata_IsActivatedByDefaultInEditor_0=Module["_emscripten_bind_BehaviorMetadata_IsActivatedByDefaultInEditor_0"]=Module["asm"]["oF"]).apply(null,arguments)};var _emscripten_bind_BehaviorMetadata_MarkAsActivatedByDefaultInEditor_0=Module["_emscripten_bind_BehaviorMetadata_MarkAsActivatedByDefaultInEditor_0"]=function(){return(_emscripten_bind_BehaviorMetadata_MarkAsActivatedByDefaultInEditor_0=Module["_emscripten_bind_BehaviorMetadata_MarkAsActivatedByDefaultInEditor_0"]=Module["asm"]["pF"]).apply(null,arguments)};var _emscripten_bind_BehaviorMetadata_GetQuickCustomizationVisibility_0=Module["_emscripten_bind_BehaviorMetadata_GetQuickCustomizationVisibility_0"]=function(){return(_emscripten_bind_BehaviorMetadata_GetQuickCustomizationVisibility_0=Module["_emscripten_bind_BehaviorMetadata_GetQuickCustomizationVisibility_0"]=Module["asm"]["qF"]).apply(null,arguments)};var _emscripten_bind_BehaviorMetadata_SetQuickCustomizationVisibility_1=Module["_emscripten_bind_BehaviorMetadata_SetQuickCustomizationVisibility_1"]=function(){return(_emscripten_bind_BehaviorMetadata_SetQuickCustomizationVisibility_1=Module["_emscripten_bind_BehaviorMetadata_SetQuickCustomizationVisibility_1"]=Module["asm"]["rF"]).apply(null,arguments)};var _emscripten_bind_BehaviorMetadata_SetOpenFullEditorLabel_1=Module["_emscripten_bind_BehaviorMetadata_SetOpenFullEditorLabel_1"]=function(){return(_emscripten_bind_BehaviorMetadata_SetOpenFullEditorLabel_1=Module["_emscripten_bind_BehaviorMetadata_SetOpenFullEditorLabel_1"]=Module["asm"]["sF"]).apply(null,arguments)};var _emscripten_bind_BehaviorMetadata_GetOpenFullEditorLabel_0=Module["_emscripten_bind_BehaviorMetadata_GetOpenFullEditorLabel_0"]=function(){return(_emscripten_bind_BehaviorMetadata_GetOpenFullEditorLabel_0=Module["_emscripten_bind_BehaviorMetadata_GetOpenFullEditorLabel_0"]=Module["asm"]["tF"]).apply(null,arguments)};var _emscripten_bind_BehaviorMetadata_Get_0=Module["_emscripten_bind_BehaviorMetadata_Get_0"]=function(){return(_emscripten_bind_BehaviorMetadata_Get_0=Module["_emscripten_bind_BehaviorMetadata_Get_0"]=Module["asm"]["uF"]).apply(null,arguments)};var _emscripten_bind_BehaviorMetadata_GetSharedDataInstance_0=Module["_emscripten_bind_BehaviorMetadata_GetSharedDataInstance_0"]=function(){return(_emscripten_bind_BehaviorMetadata_GetSharedDataInstance_0=Module["_emscripten_bind_BehaviorMetadata_GetSharedDataInstance_0"]=Module["asm"]["vF"]).apply(null,arguments)};var _emscripten_bind_BehaviorMetadata_GetProperties_0=Module["_emscripten_bind_BehaviorMetadata_GetProperties_0"]=function(){return(_emscripten_bind_BehaviorMetadata_GetProperties_0=Module["_emscripten_bind_BehaviorMetadata_GetProperties_0"]=Module["asm"]["wF"]).apply(null,arguments)};var _emscripten_bind_BehaviorMetadata_GetSharedProperties_0=Module["_emscripten_bind_BehaviorMetadata_GetSharedProperties_0"]=function(){return(_emscripten_bind_BehaviorMetadata_GetSharedProperties_0=Module["_emscripten_bind_BehaviorMetadata_GetSharedProperties_0"]=Module["asm"]["xF"]).apply(null,arguments)};var _emscripten_bind_BehaviorMetadata___destroy___0=Module["_emscripten_bind_BehaviorMetadata___destroy___0"]=function(){return(_emscripten_bind_BehaviorMetadata___destroy___0=Module["_emscripten_bind_BehaviorMetadata___destroy___0"]=Module["asm"]["yF"]).apply(null,arguments)};var _emscripten_bind_EffectMetadata_SetFullName_1=Module["_emscripten_bind_EffectMetadata_SetFullName_1"]=function(){return(_emscripten_bind_EffectMetadata_SetFullName_1=Module["_emscripten_bind_EffectMetadata_SetFullName_1"]=Module["asm"]["zF"]).apply(null,arguments)};var _emscripten_bind_EffectMetadata_SetDescription_1=Module["_emscripten_bind_EffectMetadata_SetDescription_1"]=function(){return(_emscripten_bind_EffectMetadata_SetDescription_1=Module["_emscripten_bind_EffectMetadata_SetDescription_1"]=Module["asm"]["AF"]).apply(null,arguments)};var _emscripten_bind_EffectMetadata_SetHelpPath_1=Module["_emscripten_bind_EffectMetadata_SetHelpPath_1"]=function(){return(_emscripten_bind_EffectMetadata_SetHelpPath_1=Module["_emscripten_bind_EffectMetadata_SetHelpPath_1"]=Module["asm"]["BF"]).apply(null,arguments)};var _emscripten_bind_EffectMetadata_SetIncludeFile_1=Module["_emscripten_bind_EffectMetadata_SetIncludeFile_1"]=function(){return(_emscripten_bind_EffectMetadata_SetIncludeFile_1=Module["_emscripten_bind_EffectMetadata_SetIncludeFile_1"]=Module["asm"]["CF"]).apply(null,arguments)};var _emscripten_bind_EffectMetadata_AddIncludeFile_1=Module["_emscripten_bind_EffectMetadata_AddIncludeFile_1"]=function(){return(_emscripten_bind_EffectMetadata_AddIncludeFile_1=Module["_emscripten_bind_EffectMetadata_AddIncludeFile_1"]=Module["asm"]["DF"]).apply(null,arguments)};var _emscripten_bind_EffectMetadata_MarkAsNotWorkingForObjects_0=Module["_emscripten_bind_EffectMetadata_MarkAsNotWorkingForObjects_0"]=function(){return(_emscripten_bind_EffectMetadata_MarkAsNotWorkingForObjects_0=Module["_emscripten_bind_EffectMetadata_MarkAsNotWorkingForObjects_0"]=Module["asm"]["EF"]).apply(null,arguments)};var _emscripten_bind_EffectMetadata_MarkAsOnlyWorkingFor2D_0=Module["_emscripten_bind_EffectMetadata_MarkAsOnlyWorkingFor2D_0"]=function(){return(_emscripten_bind_EffectMetadata_MarkAsOnlyWorkingFor2D_0=Module["_emscripten_bind_EffectMetadata_MarkAsOnlyWorkingFor2D_0"]=Module["asm"]["FF"]).apply(null,arguments)};var _emscripten_bind_EffectMetadata_MarkAsOnlyWorkingFor3D_0=Module["_emscripten_bind_EffectMetadata_MarkAsOnlyWorkingFor3D_0"]=function(){return(_emscripten_bind_EffectMetadata_MarkAsOnlyWorkingFor3D_0=Module["_emscripten_bind_EffectMetadata_MarkAsOnlyWorkingFor3D_0"]=Module["asm"]["GF"]).apply(null,arguments)};var _emscripten_bind_EffectMetadata_MarkAsUnique_0=Module["_emscripten_bind_EffectMetadata_MarkAsUnique_0"]=function(){return(_emscripten_bind_EffectMetadata_MarkAsUnique_0=Module["_emscripten_bind_EffectMetadata_MarkAsUnique_0"]=Module["asm"]["HF"]).apply(null,arguments)};var _emscripten_bind_EffectMetadata_GetType_0=Module["_emscripten_bind_EffectMetadata_GetType_0"]=function(){return(_emscripten_bind_EffectMetadata_GetType_0=Module["_emscripten_bind_EffectMetadata_GetType_0"]=Module["asm"]["IF"]).apply(null,arguments)};var _emscripten_bind_EffectMetadata_GetFullName_0=Module["_emscripten_bind_EffectMetadata_GetFullName_0"]=function(){return(_emscripten_bind_EffectMetadata_GetFullName_0=Module["_emscripten_bind_EffectMetadata_GetFullName_0"]=Module["asm"]["JF"]).apply(null,arguments)};var _emscripten_bind_EffectMetadata_GetDescription_0=Module["_emscripten_bind_EffectMetadata_GetDescription_0"]=function(){return(_emscripten_bind_EffectMetadata_GetDescription_0=Module["_emscripten_bind_EffectMetadata_GetDescription_0"]=Module["asm"]["KF"]).apply(null,arguments)};var _emscripten_bind_EffectMetadata_GetHelpPath_0=Module["_emscripten_bind_EffectMetadata_GetHelpPath_0"]=function(){return(_emscripten_bind_EffectMetadata_GetHelpPath_0=Module["_emscripten_bind_EffectMetadata_GetHelpPath_0"]=Module["asm"]["LF"]).apply(null,arguments)};var _emscripten_bind_EffectMetadata_IsMarkedAsNotWorkingForObjects_0=Module["_emscripten_bind_EffectMetadata_IsMarkedAsNotWorkingForObjects_0"]=function(){return(_emscripten_bind_EffectMetadata_IsMarkedAsNotWorkingForObjects_0=Module["_emscripten_bind_EffectMetadata_IsMarkedAsNotWorkingForObjects_0"]=Module["asm"]["MF"]).apply(null,arguments)};var _emscripten_bind_EffectMetadata_IsMarkedAsOnlyWorkingFor2D_0=Module["_emscripten_bind_EffectMetadata_IsMarkedAsOnlyWorkingFor2D_0"]=function(){return(_emscripten_bind_EffectMetadata_IsMarkedAsOnlyWorkingFor2D_0=Module["_emscripten_bind_EffectMetadata_IsMarkedAsOnlyWorkingFor2D_0"]=Module["asm"]["NF"]).apply(null,arguments)};var _emscripten_bind_EffectMetadata_IsMarkedAsOnlyWorkingFor3D_0=Module["_emscripten_bind_EffectMetadata_IsMarkedAsOnlyWorkingFor3D_0"]=function(){return(_emscripten_bind_EffectMetadata_IsMarkedAsOnlyWorkingFor3D_0=Module["_emscripten_bind_EffectMetadata_IsMarkedAsOnlyWorkingFor3D_0"]=Module["asm"]["OF"]).apply(null,arguments)};var _emscripten_bind_EffectMetadata_IsMarkedAsUnique_0=Module["_emscripten_bind_EffectMetadata_IsMarkedAsUnique_0"]=function(){return(_emscripten_bind_EffectMetadata_IsMarkedAsUnique_0=Module["_emscripten_bind_EffectMetadata_IsMarkedAsUnique_0"]=Module["asm"]["PF"]).apply(null,arguments)};var _emscripten_bind_EffectMetadata_GetProperties_0=Module["_emscripten_bind_EffectMetadata_GetProperties_0"]=function(){return(_emscripten_bind_EffectMetadata_GetProperties_0=Module["_emscripten_bind_EffectMetadata_GetProperties_0"]=Module["asm"]["QF"]).apply(null,arguments)};var _emscripten_bind_EffectMetadata___destroy___0=Module["_emscripten_bind_EffectMetadata___destroy___0"]=function(){return(_emscripten_bind_EffectMetadata___destroy___0=Module["_emscripten_bind_EffectMetadata___destroy___0"]=Module["asm"]["RF"]).apply(null,arguments)};var _emscripten_bind_EventMetadata_GetFullName_0=Module["_emscripten_bind_EventMetadata_GetFullName_0"]=function(){return(_emscripten_bind_EventMetadata_GetFullName_0=Module["_emscripten_bind_EventMetadata_GetFullName_0"]=Module["asm"]["SF"]).apply(null,arguments)};var _emscripten_bind_EventMetadata_GetDescription_0=Module["_emscripten_bind_EventMetadata_GetDescription_0"]=function(){return(_emscripten_bind_EventMetadata_GetDescription_0=Module["_emscripten_bind_EventMetadata_GetDescription_0"]=Module["asm"]["TF"]).apply(null,arguments)};var _emscripten_bind_EventMetadata_GetGroup_0=Module["_emscripten_bind_EventMetadata_GetGroup_0"]=function(){return(_emscripten_bind_EventMetadata_GetGroup_0=Module["_emscripten_bind_EventMetadata_GetGroup_0"]=Module["asm"]["UF"]).apply(null,arguments)};var _emscripten_bind_EventMetadata___destroy___0=Module["_emscripten_bind_EventMetadata___destroy___0"]=function(){return(_emscripten_bind_EventMetadata___destroy___0=Module["_emscripten_bind_EventMetadata___destroy___0"]=Module["asm"]["VF"]).apply(null,arguments)};var _emscripten_bind_PlatformExtension_PlatformExtension_0=Module["_emscripten_bind_PlatformExtension_PlatformExtension_0"]=function(){return(_emscripten_bind_PlatformExtension_PlatformExtension_0=Module["_emscripten_bind_PlatformExtension_PlatformExtension_0"]=Module["asm"]["WF"]).apply(null,arguments)};var _emscripten_bind_PlatformExtension_SetExtensionInformation_5=Module["_emscripten_bind_PlatformExtension_SetExtensionInformation_5"]=function(){return(_emscripten_bind_PlatformExtension_SetExtensionInformation_5=Module["_emscripten_bind_PlatformExtension_SetExtensionInformation_5"]=Module["asm"]["XF"]).apply(null,arguments)};var _emscripten_bind_PlatformExtension_SetExtensionHelpPath_1=Module["_emscripten_bind_PlatformExtension_SetExtensionHelpPath_1"]=function(){return(_emscripten_bind_PlatformExtension_SetExtensionHelpPath_1=Module["_emscripten_bind_PlatformExtension_SetExtensionHelpPath_1"]=Module["asm"]["YF"]).apply(null,arguments)};var _emscripten_bind_PlatformExtension_SetIconUrl_1=Module["_emscripten_bind_PlatformExtension_SetIconUrl_1"]=function(){return(_emscripten_bind_PlatformExtension_SetIconUrl_1=Module["_emscripten_bind_PlatformExtension_SetIconUrl_1"]=Module["asm"]["ZF"]).apply(null,arguments)};var _emscripten_bind_PlatformExtension_SetCategory_1=Module["_emscripten_bind_PlatformExtension_SetCategory_1"]=function(){return(_emscripten_bind_PlatformExtension_SetCategory_1=Module["_emscripten_bind_PlatformExtension_SetCategory_1"]=Module["asm"]["_F"]).apply(null,arguments)};var _emscripten_bind_PlatformExtension_SetShortDescription_1=Module["_emscripten_bind_PlatformExtension_SetShortDescription_1"]=function(){return(_emscripten_bind_PlatformExtension_SetShortDescription_1=Module["_emscripten_bind_PlatformExtension_SetShortDescription_1"]=Module["asm"]["$F"]).apply(null,arguments)};var _emscripten_bind_PlatformExtension_GetShortDescription_0=Module["_emscripten_bind_PlatformExtension_GetShortDescription_0"]=function(){return(_emscripten_bind_PlatformExtension_GetShortDescription_0=Module["_emscripten_bind_PlatformExtension_GetShortDescription_0"]=Module["asm"]["aG"]).apply(null,arguments)};var _emscripten_bind_PlatformExtension_SetDimension_1=Module["_emscripten_bind_PlatformExtension_SetDimension_1"]=function(){return(_emscripten_bind_PlatformExtension_SetDimension_1=Module["_emscripten_bind_PlatformExtension_SetDimension_1"]=Module["asm"]["bG"]).apply(null,arguments)};var _emscripten_bind_PlatformExtension_GetDimension_0=Module["_emscripten_bind_PlatformExtension_GetDimension_0"]=function(){return(_emscripten_bind_PlatformExtension_GetDimension_0=Module["_emscripten_bind_PlatformExtension_GetDimension_0"]=Module["asm"]["cG"]).apply(null,arguments)};var _emscripten_bind_PlatformExtension_AddInstructionOrExpressionGroupMetadata_1=Module["_emscripten_bind_PlatformExtension_AddInstructionOrExpressionGroupMetadata_1"]=function(){return(_emscripten_bind_PlatformExtension_AddInstructionOrExpressionGroupMetadata_1=Module["_emscripten_bind_PlatformExtension_AddInstructionOrExpressionGroupMetadata_1"]=Module["asm"]["dG"]).apply(null,arguments)};var _emscripten_bind_PlatformExtension_MarkAsDeprecated_0=Module["_emscripten_bind_PlatformExtension_MarkAsDeprecated_0"]=function(){return(_emscripten_bind_PlatformExtension_MarkAsDeprecated_0=Module["_emscripten_bind_PlatformExtension_MarkAsDeprecated_0"]=Module["asm"]["eG"]).apply(null,arguments)};var _emscripten_bind_PlatformExtension_GetTags_0=Module["_emscripten_bind_PlatformExtension_GetTags_0"]=function(){return(_emscripten_bind_PlatformExtension_GetTags_0=Module["_emscripten_bind_PlatformExtension_GetTags_0"]=Module["asm"]["fG"]).apply(null,arguments)};var _emscripten_bind_PlatformExtension_SetTags_1=Module["_emscripten_bind_PlatformExtension_SetTags_1"]=function(){return(_emscripten_bind_PlatformExtension_SetTags_1=Module["_emscripten_bind_PlatformExtension_SetTags_1"]=Module["asm"]["gG"]).apply(null,arguments)};var _emscripten_bind_PlatformExtension_AddExpressionAndCondition_7=Module["_emscripten_bind_PlatformExtension_AddExpressionAndCondition_7"]=function(){return(_emscripten_bind_PlatformExtension_AddExpressionAndCondition_7=Module["_emscripten_bind_PlatformExtension_AddExpressionAndCondition_7"]=Module["asm"]["hG"]).apply(null,arguments)};var _emscripten_bind_PlatformExtension_AddExpressionAndConditionAndAction_7=Module["_emscripten_bind_PlatformExtension_AddExpressionAndConditionAndAction_7"]=function(){return(_emscripten_bind_PlatformExtension_AddExpressionAndConditionAndAction_7=Module["_emscripten_bind_PlatformExtension_AddExpressionAndConditionAndAction_7"]=Module["asm"]["iG"]).apply(null,arguments)};var _emscripten_bind_PlatformExtension_AddCondition_7=Module["_emscripten_bind_PlatformExtension_AddCondition_7"]=function(){return(_emscripten_bind_PlatformExtension_AddCondition_7=Module["_emscripten_bind_PlatformExtension_AddCondition_7"]=Module["asm"]["jG"]).apply(null,arguments)};var _emscripten_bind_PlatformExtension_AddAction_7=Module["_emscripten_bind_PlatformExtension_AddAction_7"]=function(){return(_emscripten_bind_PlatformExtension_AddAction_7=Module["_emscripten_bind_PlatformExtension_AddAction_7"]=Module["asm"]["kG"]).apply(null,arguments)};var _emscripten_bind_PlatformExtension_AddExpression_5=Module["_emscripten_bind_PlatformExtension_AddExpression_5"]=function(){return(_emscripten_bind_PlatformExtension_AddExpression_5=Module["_emscripten_bind_PlatformExtension_AddExpression_5"]=Module["asm"]["lG"]).apply(null,arguments)};var _emscripten_bind_PlatformExtension_AddStrExpression_5=Module["_emscripten_bind_PlatformExtension_AddStrExpression_5"]=function(){return(_emscripten_bind_PlatformExtension_AddStrExpression_5=Module["_emscripten_bind_PlatformExtension_AddStrExpression_5"]=Module["asm"]["mG"]).apply(null,arguments)};var _emscripten_bind_PlatformExtension_AddDependency_0=Module["_emscripten_bind_PlatformExtension_AddDependency_0"]=function(){return(_emscripten_bind_PlatformExtension_AddDependency_0=Module["_emscripten_bind_PlatformExtension_AddDependency_0"]=Module["asm"]["nG"]).apply(null,arguments)};var _emscripten_bind_PlatformExtension_WRAPPED_AddBehavior_9=Module["_emscripten_bind_PlatformExtension_WRAPPED_AddBehavior_9"]=function(){return(_emscripten_bind_PlatformExtension_WRAPPED_AddBehavior_9=Module["_emscripten_bind_PlatformExtension_WRAPPED_AddBehavior_9"]=Module["asm"]["oG"]).apply(null,arguments)};var _emscripten_bind_PlatformExtension_WRAPPED_AddObject_5=Module["_emscripten_bind_PlatformExtension_WRAPPED_AddObject_5"]=function(){return(_emscripten_bind_PlatformExtension_WRAPPED_AddObject_5=Module["_emscripten_bind_PlatformExtension_WRAPPED_AddObject_5"]=Module["asm"]["pG"]).apply(null,arguments)};var _emscripten_bind_PlatformExtension_AddEffect_1=Module["_emscripten_bind_PlatformExtension_AddEffect_1"]=function(){return(_emscripten_bind_PlatformExtension_AddEffect_1=Module["_emscripten_bind_PlatformExtension_AddEffect_1"]=Module["asm"]["qG"]).apply(null,arguments)};var _emscripten_bind_PlatformExtension_RegisterProperty_1=Module["_emscripten_bind_PlatformExtension_RegisterProperty_1"]=function(){return(_emscripten_bind_PlatformExtension_RegisterProperty_1=Module["_emscripten_bind_PlatformExtension_RegisterProperty_1"]=Module["asm"]["rG"]).apply(null,arguments)};var _emscripten_bind_PlatformExtension_GetFullName_0=Module["_emscripten_bind_PlatformExtension_GetFullName_0"]=function(){return(_emscripten_bind_PlatformExtension_GetFullName_0=Module["_emscripten_bind_PlatformExtension_GetFullName_0"]=Module["asm"]["sG"]).apply(null,arguments)};var _emscripten_bind_PlatformExtension_GetName_0=Module["_emscripten_bind_PlatformExtension_GetName_0"]=function(){return(_emscripten_bind_PlatformExtension_GetName_0=Module["_emscripten_bind_PlatformExtension_GetName_0"]=Module["asm"]["tG"]).apply(null,arguments)};var _emscripten_bind_PlatformExtension_GetCategory_0=Module["_emscripten_bind_PlatformExtension_GetCategory_0"]=function(){return(_emscripten_bind_PlatformExtension_GetCategory_0=Module["_emscripten_bind_PlatformExtension_GetCategory_0"]=Module["asm"]["uG"]).apply(null,arguments)};var _emscripten_bind_PlatformExtension_GetDescription_0=Module["_emscripten_bind_PlatformExtension_GetDescription_0"]=function(){return(_emscripten_bind_PlatformExtension_GetDescription_0=Module["_emscripten_bind_PlatformExtension_GetDescription_0"]=Module["asm"]["vG"]).apply(null,arguments)};var _emscripten_bind_PlatformExtension_GetAuthor_0=Module["_emscripten_bind_PlatformExtension_GetAuthor_0"]=function(){return(_emscripten_bind_PlatformExtension_GetAuthor_0=Module["_emscripten_bind_PlatformExtension_GetAuthor_0"]=Module["asm"]["wG"]).apply(null,arguments)};var _emscripten_bind_PlatformExtension_GetLicense_0=Module["_emscripten_bind_PlatformExtension_GetLicense_0"]=function(){return(_emscripten_bind_PlatformExtension_GetLicense_0=Module["_emscripten_bind_PlatformExtension_GetLicense_0"]=Module["asm"]["xG"]).apply(null,arguments)};var _emscripten_bind_PlatformExtension_GetHelpPath_0=Module["_emscripten_bind_PlatformExtension_GetHelpPath_0"]=function(){return(_emscripten_bind_PlatformExtension_GetHelpPath_0=Module["_emscripten_bind_PlatformExtension_GetHelpPath_0"]=Module["asm"]["yG"]).apply(null,arguments)};var _emscripten_bind_PlatformExtension_GetIconUrl_0=Module["_emscripten_bind_PlatformExtension_GetIconUrl_0"]=function(){return(_emscripten_bind_PlatformExtension_GetIconUrl_0=Module["_emscripten_bind_PlatformExtension_GetIconUrl_0"]=Module["asm"]["zG"]).apply(null,arguments)};var _emscripten_bind_PlatformExtension_GetNameSpace_0=Module["_emscripten_bind_PlatformExtension_GetNameSpace_0"]=function(){return(_emscripten_bind_PlatformExtension_GetNameSpace_0=Module["_emscripten_bind_PlatformExtension_GetNameSpace_0"]=Module["asm"]["AG"]).apply(null,arguments)};var _emscripten_bind_PlatformExtension_AddDuplicatedAction_2=Module["_emscripten_bind_PlatformExtension_AddDuplicatedAction_2"]=function(){return(_emscripten_bind_PlatformExtension_AddDuplicatedAction_2=Module["_emscripten_bind_PlatformExtension_AddDuplicatedAction_2"]=Module["asm"]["BG"]).apply(null,arguments)};var _emscripten_bind_PlatformExtension_AddDuplicatedCondition_2=Module["_emscripten_bind_PlatformExtension_AddDuplicatedCondition_2"]=function(){return(_emscripten_bind_PlatformExtension_AddDuplicatedCondition_2=Module["_emscripten_bind_PlatformExtension_AddDuplicatedCondition_2"]=Module["asm"]["CG"]).apply(null,arguments)};var _emscripten_bind_PlatformExtension_AddDuplicatedExpression_2=Module["_emscripten_bind_PlatformExtension_AddDuplicatedExpression_2"]=function(){return(_emscripten_bind_PlatformExtension_AddDuplicatedExpression_2=Module["_emscripten_bind_PlatformExtension_AddDuplicatedExpression_2"]=Module["asm"]["DG"]).apply(null,arguments)};var _emscripten_bind_PlatformExtension_AddDuplicatedStrExpression_2=Module["_emscripten_bind_PlatformExtension_AddDuplicatedStrExpression_2"]=function(){return(_emscripten_bind_PlatformExtension_AddDuplicatedStrExpression_2=Module["_emscripten_bind_PlatformExtension_AddDuplicatedStrExpression_2"]=Module["asm"]["EG"]).apply(null,arguments)};var _emscripten_bind_PlatformExtension_GetExtensionObjectsTypes_0=Module["_emscripten_bind_PlatformExtension_GetExtensionObjectsTypes_0"]=function(){return(_emscripten_bind_PlatformExtension_GetExtensionObjectsTypes_0=Module["_emscripten_bind_PlatformExtension_GetExtensionObjectsTypes_0"]=Module["asm"]["FG"]).apply(null,arguments)};var _emscripten_bind_PlatformExtension_GetBehaviorsTypes_0=Module["_emscripten_bind_PlatformExtension_GetBehaviorsTypes_0"]=function(){return(_emscripten_bind_PlatformExtension_GetBehaviorsTypes_0=Module["_emscripten_bind_PlatformExtension_GetBehaviorsTypes_0"]=Module["asm"]["GG"]).apply(null,arguments)};var _emscripten_bind_PlatformExtension_GetExtensionEffectTypes_0=Module["_emscripten_bind_PlatformExtension_GetExtensionEffectTypes_0"]=function(){return(_emscripten_bind_PlatformExtension_GetExtensionEffectTypes_0=Module["_emscripten_bind_PlatformExtension_GetExtensionEffectTypes_0"]=Module["asm"]["HG"]).apply(null,arguments)};var _emscripten_bind_PlatformExtension_GetObjectMetadata_1=Module["_emscripten_bind_PlatformExtension_GetObjectMetadata_1"]=function(){return(_emscripten_bind_PlatformExtension_GetObjectMetadata_1=Module["_emscripten_bind_PlatformExtension_GetObjectMetadata_1"]=Module["asm"]["IG"]).apply(null,arguments)};var _emscripten_bind_PlatformExtension_GetBehaviorMetadata_1=Module["_emscripten_bind_PlatformExtension_GetBehaviorMetadata_1"]=function(){return(_emscripten_bind_PlatformExtension_GetBehaviorMetadata_1=Module["_emscripten_bind_PlatformExtension_GetBehaviorMetadata_1"]=Module["asm"]["JG"]).apply(null,arguments)};var _emscripten_bind_PlatformExtension_GetEffectMetadata_1=Module["_emscripten_bind_PlatformExtension_GetEffectMetadata_1"]=function(){return(_emscripten_bind_PlatformExtension_GetEffectMetadata_1=Module["_emscripten_bind_PlatformExtension_GetEffectMetadata_1"]=Module["asm"]["KG"]).apply(null,arguments)};var _emscripten_bind_PlatformExtension_GetAllEvents_0=Module["_emscripten_bind_PlatformExtension_GetAllEvents_0"]=function(){return(_emscripten_bind_PlatformExtension_GetAllEvents_0=Module["_emscripten_bind_PlatformExtension_GetAllEvents_0"]=Module["asm"]["LG"]).apply(null,arguments)};var _emscripten_bind_PlatformExtension_GetAllActions_0=Module["_emscripten_bind_PlatformExtension_GetAllActions_0"]=function(){return(_emscripten_bind_PlatformExtension_GetAllActions_0=Module["_emscripten_bind_PlatformExtension_GetAllActions_0"]=Module["asm"]["MG"]).apply(null,arguments)};var _emscripten_bind_PlatformExtension_GetAllConditions_0=Module["_emscripten_bind_PlatformExtension_GetAllConditions_0"]=function(){return(_emscripten_bind_PlatformExtension_GetAllConditions_0=Module["_emscripten_bind_PlatformExtension_GetAllConditions_0"]=Module["asm"]["NG"]).apply(null,arguments)};var _emscripten_bind_PlatformExtension_GetAllExpressions_0=Module["_emscripten_bind_PlatformExtension_GetAllExpressions_0"]=function(){return(_emscripten_bind_PlatformExtension_GetAllExpressions_0=Module["_emscripten_bind_PlatformExtension_GetAllExpressions_0"]=Module["asm"]["OG"]).apply(null,arguments)};var _emscripten_bind_PlatformExtension_GetAllStrExpressions_0=Module["_emscripten_bind_PlatformExtension_GetAllStrExpressions_0"]=function(){return(_emscripten_bind_PlatformExtension_GetAllStrExpressions_0=Module["_emscripten_bind_PlatformExtension_GetAllStrExpressions_0"]=Module["asm"]["PG"]).apply(null,arguments)};var _emscripten_bind_PlatformExtension_GetAllActionsForObject_1=Module["_emscripten_bind_PlatformExtension_GetAllActionsForObject_1"]=function(){return(_emscripten_bind_PlatformExtension_GetAllActionsForObject_1=Module["_emscripten_bind_PlatformExtension_GetAllActionsForObject_1"]=Module["asm"]["QG"]).apply(null,arguments)};var _emscripten_bind_PlatformExtension_GetAllConditionsForObject_1=Module["_emscripten_bind_PlatformExtension_GetAllConditionsForObject_1"]=function(){return(_emscripten_bind_PlatformExtension_GetAllConditionsForObject_1=Module["_emscripten_bind_PlatformExtension_GetAllConditionsForObject_1"]=Module["asm"]["RG"]).apply(null,arguments)};var _emscripten_bind_PlatformExtension_GetAllExpressionsForObject_1=Module["_emscripten_bind_PlatformExtension_GetAllExpressionsForObject_1"]=function(){return(_emscripten_bind_PlatformExtension_GetAllExpressionsForObject_1=Module["_emscripten_bind_PlatformExtension_GetAllExpressionsForObject_1"]=Module["asm"]["SG"]).apply(null,arguments)};var _emscripten_bind_PlatformExtension_GetAllStrExpressionsForObject_1=Module["_emscripten_bind_PlatformExtension_GetAllStrExpressionsForObject_1"]=function(){return(_emscripten_bind_PlatformExtension_GetAllStrExpressionsForObject_1=Module["_emscripten_bind_PlatformExtension_GetAllStrExpressionsForObject_1"]=Module["asm"]["TG"]).apply(null,arguments)};var _emscripten_bind_PlatformExtension_GetAllActionsForBehavior_1=Module["_emscripten_bind_PlatformExtension_GetAllActionsForBehavior_1"]=function(){return(_emscripten_bind_PlatformExtension_GetAllActionsForBehavior_1=Module["_emscripten_bind_PlatformExtension_GetAllActionsForBehavior_1"]=Module["asm"]["UG"]).apply(null,arguments)};var _emscripten_bind_PlatformExtension_GetAllConditionsForBehavior_1=Module["_emscripten_bind_PlatformExtension_GetAllConditionsForBehavior_1"]=function(){return(_emscripten_bind_PlatformExtension_GetAllConditionsForBehavior_1=Module["_emscripten_bind_PlatformExtension_GetAllConditionsForBehavior_1"]=Module["asm"]["VG"]).apply(null,arguments)};var _emscripten_bind_PlatformExtension_GetAllExpressionsForBehavior_1=Module["_emscripten_bind_PlatformExtension_GetAllExpressionsForBehavior_1"]=function(){return(_emscripten_bind_PlatformExtension_GetAllExpressionsForBehavior_1=Module["_emscripten_bind_PlatformExtension_GetAllExpressionsForBehavior_1"]=Module["asm"]["WG"]).apply(null,arguments)};var _emscripten_bind_PlatformExtension_GetAllStrExpressionsForBehavior_1=Module["_emscripten_bind_PlatformExtension_GetAllStrExpressionsForBehavior_1"]=function(){return(_emscripten_bind_PlatformExtension_GetAllStrExpressionsForBehavior_1=Module["_emscripten_bind_PlatformExtension_GetAllStrExpressionsForBehavior_1"]=Module["asm"]["XG"]).apply(null,arguments)};var _emscripten_bind_PlatformExtension_GetAllProperties_0=Module["_emscripten_bind_PlatformExtension_GetAllProperties_0"]=function(){return(_emscripten_bind_PlatformExtension_GetAllProperties_0=Module["_emscripten_bind_PlatformExtension_GetAllProperties_0"]=Module["asm"]["YG"]).apply(null,arguments)};var _emscripten_bind_PlatformExtension_GetAllDependencies_0=Module["_emscripten_bind_PlatformExtension_GetAllDependencies_0"]=function(){return(_emscripten_bind_PlatformExtension_GetAllDependencies_0=Module["_emscripten_bind_PlatformExtension_GetAllDependencies_0"]=Module["asm"]["ZG"]).apply(null,arguments)};var _emscripten_bind_PlatformExtension_GetAllSourceFiles_0=Module["_emscripten_bind_PlatformExtension_GetAllSourceFiles_0"]=function(){return(_emscripten_bind_PlatformExtension_GetAllSourceFiles_0=Module["_emscripten_bind_PlatformExtension_GetAllSourceFiles_0"]=Module["asm"]["_G"]).apply(null,arguments)};var _emscripten_bind_PlatformExtension_STATIC_GetNamespaceSeparator_0=Module["_emscripten_bind_PlatformExtension_STATIC_GetNamespaceSeparator_0"]=function(){return(_emscripten_bind_PlatformExtension_STATIC_GetNamespaceSeparator_0=Module["_emscripten_bind_PlatformExtension_STATIC_GetNamespaceSeparator_0"]=Module["asm"]["$G"]).apply(null,arguments)};var _emscripten_bind_PlatformExtension_STATIC_GetBehaviorFullType_2=Module["_emscripten_bind_PlatformExtension_STATIC_GetBehaviorFullType_2"]=function(){return(_emscripten_bind_PlatformExtension_STATIC_GetBehaviorFullType_2=Module["_emscripten_bind_PlatformExtension_STATIC_GetBehaviorFullType_2"]=Module["asm"]["aH"]).apply(null,arguments)};var _emscripten_bind_PlatformExtension_STATIC_GetExtensionFromFullBehaviorType_1=Module["_emscripten_bind_PlatformExtension_STATIC_GetExtensionFromFullBehaviorType_1"]=function(){return(_emscripten_bind_PlatformExtension_STATIC_GetExtensionFromFullBehaviorType_1=Module["_emscripten_bind_PlatformExtension_STATIC_GetExtensionFromFullBehaviorType_1"]=Module["asm"]["bH"]).apply(null,arguments)};var _emscripten_bind_PlatformExtension_STATIC_GetBehaviorNameFromFullBehaviorType_1=Module["_emscripten_bind_PlatformExtension_STATIC_GetBehaviorNameFromFullBehaviorType_1"]=function(){return(_emscripten_bind_PlatformExtension_STATIC_GetBehaviorNameFromFullBehaviorType_1=Module["_emscripten_bind_PlatformExtension_STATIC_GetBehaviorNameFromFullBehaviorType_1"]=Module["asm"]["cH"]).apply(null,arguments)};var _emscripten_bind_PlatformExtension_STATIC_GetObjectFullType_2=Module["_emscripten_bind_PlatformExtension_STATIC_GetObjectFullType_2"]=function(){return(_emscripten_bind_PlatformExtension_STATIC_GetObjectFullType_2=Module["_emscripten_bind_PlatformExtension_STATIC_GetObjectFullType_2"]=Module["asm"]["dH"]).apply(null,arguments)};var _emscripten_bind_PlatformExtension_STATIC_GetExtensionFromFullObjectType_1=Module["_emscripten_bind_PlatformExtension_STATIC_GetExtensionFromFullObjectType_1"]=function(){return(_emscripten_bind_PlatformExtension_STATIC_GetExtensionFromFullObjectType_1=Module["_emscripten_bind_PlatformExtension_STATIC_GetExtensionFromFullObjectType_1"]=Module["asm"]["eH"]).apply(null,arguments)};var _emscripten_bind_PlatformExtension_STATIC_GetObjectNameFromFullObjectType_1=Module["_emscripten_bind_PlatformExtension_STATIC_GetObjectNameFromFullObjectType_1"]=function(){return(_emscripten_bind_PlatformExtension_STATIC_GetObjectNameFromFullObjectType_1=Module["_emscripten_bind_PlatformExtension_STATIC_GetObjectNameFromFullObjectType_1"]=Module["asm"]["fH"]).apply(null,arguments)};var _emscripten_bind_PlatformExtension___destroy___0=Module["_emscripten_bind_PlatformExtension___destroy___0"]=function(){return(_emscripten_bind_PlatformExtension___destroy___0=Module["_emscripten_bind_PlatformExtension___destroy___0"]=Module["asm"]["gH"]).apply(null,arguments)};var _emscripten_bind_EventsList_EventsList_0=Module["_emscripten_bind_EventsList_EventsList_0"]=function(){return(_emscripten_bind_EventsList_EventsList_0=Module["_emscripten_bind_EventsList_EventsList_0"]=Module["asm"]["hH"]).apply(null,arguments)};var _emscripten_bind_EventsList_InsertEvent_2=Module["_emscripten_bind_EventsList_InsertEvent_2"]=function(){return(_emscripten_bind_EventsList_InsertEvent_2=Module["_emscripten_bind_EventsList_InsertEvent_2"]=Module["asm"]["iH"]).apply(null,arguments)};var _emscripten_bind_EventsList_InsertNewEvent_3=Module["_emscripten_bind_EventsList_InsertNewEvent_3"]=function(){return(_emscripten_bind_EventsList_InsertNewEvent_3=Module["_emscripten_bind_EventsList_InsertNewEvent_3"]=Module["asm"]["jH"]).apply(null,arguments)};var _emscripten_bind_EventsList_InsertEvents_4=Module["_emscripten_bind_EventsList_InsertEvents_4"]=function(){return(_emscripten_bind_EventsList_InsertEvents_4=Module["_emscripten_bind_EventsList_InsertEvents_4"]=Module["asm"]["kH"]).apply(null,arguments)};var _emscripten_bind_EventsList_GetEventAt_1=Module["_emscripten_bind_EventsList_GetEventAt_1"]=function(){return(_emscripten_bind_EventsList_GetEventAt_1=Module["_emscripten_bind_EventsList_GetEventAt_1"]=Module["asm"]["lH"]).apply(null,arguments)};var _emscripten_bind_EventsList_RemoveEventAt_1=Module["_emscripten_bind_EventsList_RemoveEventAt_1"]=function(){return(_emscripten_bind_EventsList_RemoveEventAt_1=Module["_emscripten_bind_EventsList_RemoveEventAt_1"]=Module["asm"]["mH"]).apply(null,arguments)};var _emscripten_bind_EventsList_RemoveEvent_1=Module["_emscripten_bind_EventsList_RemoveEvent_1"]=function(){return(_emscripten_bind_EventsList_RemoveEvent_1=Module["_emscripten_bind_EventsList_RemoveEvent_1"]=Module["asm"]["nH"]).apply(null,arguments)};var _emscripten_bind_EventsList_GetEventsCount_0=Module["_emscripten_bind_EventsList_GetEventsCount_0"]=function(){return(_emscripten_bind_EventsList_GetEventsCount_0=Module["_emscripten_bind_EventsList_GetEventsCount_0"]=Module["asm"]["oH"]).apply(null,arguments)};var _emscripten_bind_EventsList_Contains_2=Module["_emscripten_bind_EventsList_Contains_2"]=function(){return(_emscripten_bind_EventsList_Contains_2=Module["_emscripten_bind_EventsList_Contains_2"]=Module["asm"]["pH"]).apply(null,arguments)};var _emscripten_bind_EventsList_MoveEventToAnotherEventsList_3=Module["_emscripten_bind_EventsList_MoveEventToAnotherEventsList_3"]=function(){return(_emscripten_bind_EventsList_MoveEventToAnotherEventsList_3=Module["_emscripten_bind_EventsList_MoveEventToAnotherEventsList_3"]=Module["asm"]["qH"]).apply(null,arguments)};var _emscripten_bind_EventsList_IsEmpty_0=Module["_emscripten_bind_EventsList_IsEmpty_0"]=function(){return(_emscripten_bind_EventsList_IsEmpty_0=Module["_emscripten_bind_EventsList_IsEmpty_0"]=Module["asm"]["rH"]).apply(null,arguments)};var _emscripten_bind_EventsList_Clear_0=Module["_emscripten_bind_EventsList_Clear_0"]=function(){return(_emscripten_bind_EventsList_Clear_0=Module["_emscripten_bind_EventsList_Clear_0"]=Module["asm"]["sH"]).apply(null,arguments)};var _emscripten_bind_EventsList_SerializeTo_1=Module["_emscripten_bind_EventsList_SerializeTo_1"]=function(){return(_emscripten_bind_EventsList_SerializeTo_1=Module["_emscripten_bind_EventsList_SerializeTo_1"]=Module["asm"]["tH"]).apply(null,arguments)};var _emscripten_bind_EventsList_UnserializeFrom_2=Module["_emscripten_bind_EventsList_UnserializeFrom_2"]=function(){return(_emscripten_bind_EventsList_UnserializeFrom_2=Module["_emscripten_bind_EventsList_UnserializeFrom_2"]=Module["asm"]["uH"]).apply(null,arguments)};var _emscripten_bind_EventsList___destroy___0=Module["_emscripten_bind_EventsList___destroy___0"]=function(){return(_emscripten_bind_EventsList___destroy___0=Module["_emscripten_bind_EventsList___destroy___0"]=Module["asm"]["vH"]).apply(null,arguments)};var _emscripten_bind_StandardEvent_StandardEvent_0=Module["_emscripten_bind_StandardEvent_StandardEvent_0"]=function(){return(_emscripten_bind_StandardEvent_StandardEvent_0=Module["_emscripten_bind_StandardEvent_StandardEvent_0"]=Module["asm"]["wH"]).apply(null,arguments)};var _emscripten_bind_StandardEvent_GetConditions_0=Module["_emscripten_bind_StandardEvent_GetConditions_0"]=function(){return(_emscripten_bind_StandardEvent_GetConditions_0=Module["_emscripten_bind_StandardEvent_GetConditions_0"]=Module["asm"]["xH"]).apply(null,arguments)};var _emscripten_bind_StandardEvent_GetActions_0=Module["_emscripten_bind_StandardEvent_GetActions_0"]=function(){return(_emscripten_bind_StandardEvent_GetActions_0=Module["_emscripten_bind_StandardEvent_GetActions_0"]=Module["asm"]["yH"]).apply(null,arguments)};var _emscripten_bind_StandardEvent_Clone_0=Module["_emscripten_bind_StandardEvent_Clone_0"]=function(){return(_emscripten_bind_StandardEvent_Clone_0=Module["_emscripten_bind_StandardEvent_Clone_0"]=Module["asm"]["zH"]).apply(null,arguments)};var _emscripten_bind_StandardEvent_GetType_0=Module["_emscripten_bind_StandardEvent_GetType_0"]=function(){return(_emscripten_bind_StandardEvent_GetType_0=Module["_emscripten_bind_StandardEvent_GetType_0"]=Module["asm"]["AH"]).apply(null,arguments)};var _emscripten_bind_StandardEvent_SetType_1=Module["_emscripten_bind_StandardEvent_SetType_1"]=function(){return(_emscripten_bind_StandardEvent_SetType_1=Module["_emscripten_bind_StandardEvent_SetType_1"]=Module["asm"]["BH"]).apply(null,arguments)};var _emscripten_bind_StandardEvent_IsExecutable_0=Module["_emscripten_bind_StandardEvent_IsExecutable_0"]=function(){return(_emscripten_bind_StandardEvent_IsExecutable_0=Module["_emscripten_bind_StandardEvent_IsExecutable_0"]=Module["asm"]["CH"]).apply(null,arguments)};var _emscripten_bind_StandardEvent_CanHaveSubEvents_0=Module["_emscripten_bind_StandardEvent_CanHaveSubEvents_0"]=function(){return(_emscripten_bind_StandardEvent_CanHaveSubEvents_0=Module["_emscripten_bind_StandardEvent_CanHaveSubEvents_0"]=Module["asm"]["DH"]).apply(null,arguments)};var _emscripten_bind_StandardEvent_HasSubEvents_0=Module["_emscripten_bind_StandardEvent_HasSubEvents_0"]=function(){return(_emscripten_bind_StandardEvent_HasSubEvents_0=Module["_emscripten_bind_StandardEvent_HasSubEvents_0"]=Module["asm"]["EH"]).apply(null,arguments)};var _emscripten_bind_StandardEvent_GetSubEvents_0=Module["_emscripten_bind_StandardEvent_GetSubEvents_0"]=function(){return(_emscripten_bind_StandardEvent_GetSubEvents_0=Module["_emscripten_bind_StandardEvent_GetSubEvents_0"]=Module["asm"]["FH"]).apply(null,arguments)};var _emscripten_bind_StandardEvent_CanHaveVariables_0=Module["_emscripten_bind_StandardEvent_CanHaveVariables_0"]=function(){return(_emscripten_bind_StandardEvent_CanHaveVariables_0=Module["_emscripten_bind_StandardEvent_CanHaveVariables_0"]=Module["asm"]["GH"]).apply(null,arguments)};var _emscripten_bind_StandardEvent_HasVariables_0=Module["_emscripten_bind_StandardEvent_HasVariables_0"]=function(){return(_emscripten_bind_StandardEvent_HasVariables_0=Module["_emscripten_bind_StandardEvent_HasVariables_0"]=Module["asm"]["HH"]).apply(null,arguments)};var _emscripten_bind_StandardEvent_GetVariables_0=Module["_emscripten_bind_StandardEvent_GetVariables_0"]=function(){return(_emscripten_bind_StandardEvent_GetVariables_0=Module["_emscripten_bind_StandardEvent_GetVariables_0"]=Module["asm"]["IH"]).apply(null,arguments)};var _emscripten_bind_StandardEvent_IsDisabled_0=Module["_emscripten_bind_StandardEvent_IsDisabled_0"]=function(){return(_emscripten_bind_StandardEvent_IsDisabled_0=Module["_emscripten_bind_StandardEvent_IsDisabled_0"]=Module["asm"]["JH"]).apply(null,arguments)};var _emscripten_bind_StandardEvent_SetDisabled_1=Module["_emscripten_bind_StandardEvent_SetDisabled_1"]=function(){return(_emscripten_bind_StandardEvent_SetDisabled_1=Module["_emscripten_bind_StandardEvent_SetDisabled_1"]=Module["asm"]["KH"]).apply(null,arguments)};var _emscripten_bind_StandardEvent_IsFolded_0=Module["_emscripten_bind_StandardEvent_IsFolded_0"]=function(){return(_emscripten_bind_StandardEvent_IsFolded_0=Module["_emscripten_bind_StandardEvent_IsFolded_0"]=Module["asm"]["LH"]).apply(null,arguments)};var _emscripten_bind_StandardEvent_SetFolded_1=Module["_emscripten_bind_StandardEvent_SetFolded_1"]=function(){return(_emscripten_bind_StandardEvent_SetFolded_1=Module["_emscripten_bind_StandardEvent_SetFolded_1"]=Module["asm"]["MH"]).apply(null,arguments)};var _emscripten_bind_StandardEvent_SerializeTo_1=Module["_emscripten_bind_StandardEvent_SerializeTo_1"]=function(){return(_emscripten_bind_StandardEvent_SerializeTo_1=Module["_emscripten_bind_StandardEvent_SerializeTo_1"]=Module["asm"]["NH"]).apply(null,arguments)};var _emscripten_bind_StandardEvent_UnserializeFrom_2=Module["_emscripten_bind_StandardEvent_UnserializeFrom_2"]=function(){return(_emscripten_bind_StandardEvent_UnserializeFrom_2=Module["_emscripten_bind_StandardEvent_UnserializeFrom_2"]=Module["asm"]["OH"]).apply(null,arguments)};var _emscripten_bind_StandardEvent_GetAiGeneratedEventId_0=Module["_emscripten_bind_StandardEvent_GetAiGeneratedEventId_0"]=function(){return(_emscripten_bind_StandardEvent_GetAiGeneratedEventId_0=Module["_emscripten_bind_StandardEvent_GetAiGeneratedEventId_0"]=Module["asm"]["PH"]).apply(null,arguments)};var _emscripten_bind_StandardEvent_SetAiGeneratedEventId_1=Module["_emscripten_bind_StandardEvent_SetAiGeneratedEventId_1"]=function(){return(_emscripten_bind_StandardEvent_SetAiGeneratedEventId_1=Module["_emscripten_bind_StandardEvent_SetAiGeneratedEventId_1"]=Module["asm"]["QH"]).apply(null,arguments)};var _emscripten_bind_StandardEvent___destroy___0=Module["_emscripten_bind_StandardEvent___destroy___0"]=function(){return(_emscripten_bind_StandardEvent___destroy___0=Module["_emscripten_bind_StandardEvent___destroy___0"]=Module["asm"]["RH"]).apply(null,arguments)};var _emscripten_bind_ElseEvent_ElseEvent_0=Module["_emscripten_bind_ElseEvent_ElseEvent_0"]=function(){return(_emscripten_bind_ElseEvent_ElseEvent_0=Module["_emscripten_bind_ElseEvent_ElseEvent_0"]=Module["asm"]["SH"]).apply(null,arguments)};var _emscripten_bind_ElseEvent_GetConditions_0=Module["_emscripten_bind_ElseEvent_GetConditions_0"]=function(){return(_emscripten_bind_ElseEvent_GetConditions_0=Module["_emscripten_bind_ElseEvent_GetConditions_0"]=Module["asm"]["TH"]).apply(null,arguments)};var _emscripten_bind_ElseEvent_GetActions_0=Module["_emscripten_bind_ElseEvent_GetActions_0"]=function(){return(_emscripten_bind_ElseEvent_GetActions_0=Module["_emscripten_bind_ElseEvent_GetActions_0"]=Module["asm"]["UH"]).apply(null,arguments)};var _emscripten_bind_ElseEvent_Clone_0=Module["_emscripten_bind_ElseEvent_Clone_0"]=function(){return(_emscripten_bind_ElseEvent_Clone_0=Module["_emscripten_bind_ElseEvent_Clone_0"]=Module["asm"]["VH"]).apply(null,arguments)};var _emscripten_bind_ElseEvent_GetType_0=Module["_emscripten_bind_ElseEvent_GetType_0"]=function(){return(_emscripten_bind_ElseEvent_GetType_0=Module["_emscripten_bind_ElseEvent_GetType_0"]=Module["asm"]["WH"]).apply(null,arguments)};var _emscripten_bind_ElseEvent_SetType_1=Module["_emscripten_bind_ElseEvent_SetType_1"]=function(){return(_emscripten_bind_ElseEvent_SetType_1=Module["_emscripten_bind_ElseEvent_SetType_1"]=Module["asm"]["XH"]).apply(null,arguments)};var _emscripten_bind_ElseEvent_IsExecutable_0=Module["_emscripten_bind_ElseEvent_IsExecutable_0"]=function(){return(_emscripten_bind_ElseEvent_IsExecutable_0=Module["_emscripten_bind_ElseEvent_IsExecutable_0"]=Module["asm"]["YH"]).apply(null,arguments)};var _emscripten_bind_ElseEvent_CanHaveSubEvents_0=Module["_emscripten_bind_ElseEvent_CanHaveSubEvents_0"]=function(){return(_emscripten_bind_ElseEvent_CanHaveSubEvents_0=Module["_emscripten_bind_ElseEvent_CanHaveSubEvents_0"]=Module["asm"]["ZH"]).apply(null,arguments)};var _emscripten_bind_ElseEvent_HasSubEvents_0=Module["_emscripten_bind_ElseEvent_HasSubEvents_0"]=function(){return(_emscripten_bind_ElseEvent_HasSubEvents_0=Module["_emscripten_bind_ElseEvent_HasSubEvents_0"]=Module["asm"]["_H"]).apply(null,arguments)};var _emscripten_bind_ElseEvent_GetSubEvents_0=Module["_emscripten_bind_ElseEvent_GetSubEvents_0"]=function(){return(_emscripten_bind_ElseEvent_GetSubEvents_0=Module["_emscripten_bind_ElseEvent_GetSubEvents_0"]=Module["asm"]["$H"]).apply(null,arguments)};var _emscripten_bind_ElseEvent_CanHaveVariables_0=Module["_emscripten_bind_ElseEvent_CanHaveVariables_0"]=function(){return(_emscripten_bind_ElseEvent_CanHaveVariables_0=Module["_emscripten_bind_ElseEvent_CanHaveVariables_0"]=Module["asm"]["aI"]).apply(null,arguments)};var _emscripten_bind_ElseEvent_HasVariables_0=Module["_emscripten_bind_ElseEvent_HasVariables_0"]=function(){return(_emscripten_bind_ElseEvent_HasVariables_0=Module["_emscripten_bind_ElseEvent_HasVariables_0"]=Module["asm"]["bI"]).apply(null,arguments)};var _emscripten_bind_ElseEvent_GetVariables_0=Module["_emscripten_bind_ElseEvent_GetVariables_0"]=function(){return(_emscripten_bind_ElseEvent_GetVariables_0=Module["_emscripten_bind_ElseEvent_GetVariables_0"]=Module["asm"]["cI"]).apply(null,arguments)};var _emscripten_bind_ElseEvent_IsDisabled_0=Module["_emscripten_bind_ElseEvent_IsDisabled_0"]=function(){return(_emscripten_bind_ElseEvent_IsDisabled_0=Module["_emscripten_bind_ElseEvent_IsDisabled_0"]=Module["asm"]["dI"]).apply(null,arguments)};var _emscripten_bind_ElseEvent_SetDisabled_1=Module["_emscripten_bind_ElseEvent_SetDisabled_1"]=function(){return(_emscripten_bind_ElseEvent_SetDisabled_1=Module["_emscripten_bind_ElseEvent_SetDisabled_1"]=Module["asm"]["eI"]).apply(null,arguments)};var _emscripten_bind_ElseEvent_IsFolded_0=Module["_emscripten_bind_ElseEvent_IsFolded_0"]=function(){return(_emscripten_bind_ElseEvent_IsFolded_0=Module["_emscripten_bind_ElseEvent_IsFolded_0"]=Module["asm"]["fI"]).apply(null,arguments)};var _emscripten_bind_ElseEvent_SetFolded_1=Module["_emscripten_bind_ElseEvent_SetFolded_1"]=function(){return(_emscripten_bind_ElseEvent_SetFolded_1=Module["_emscripten_bind_ElseEvent_SetFolded_1"]=Module["asm"]["gI"]).apply(null,arguments)};var _emscripten_bind_ElseEvent_SerializeTo_1=Module["_emscripten_bind_ElseEvent_SerializeTo_1"]=function(){return(_emscripten_bind_ElseEvent_SerializeTo_1=Module["_emscripten_bind_ElseEvent_SerializeTo_1"]=Module["asm"]["hI"]).apply(null,arguments)};var _emscripten_bind_ElseEvent_UnserializeFrom_2=Module["_emscripten_bind_ElseEvent_UnserializeFrom_2"]=function(){return(_emscripten_bind_ElseEvent_UnserializeFrom_2=Module["_emscripten_bind_ElseEvent_UnserializeFrom_2"]=Module["asm"]["iI"]).apply(null,arguments)};var _emscripten_bind_ElseEvent_GetAiGeneratedEventId_0=Module["_emscripten_bind_ElseEvent_GetAiGeneratedEventId_0"]=function(){return(_emscripten_bind_ElseEvent_GetAiGeneratedEventId_0=Module["_emscripten_bind_ElseEvent_GetAiGeneratedEventId_0"]=Module["asm"]["jI"]).apply(null,arguments)};var _emscripten_bind_ElseEvent_SetAiGeneratedEventId_1=Module["_emscripten_bind_ElseEvent_SetAiGeneratedEventId_1"]=function(){return(_emscripten_bind_ElseEvent_SetAiGeneratedEventId_1=Module["_emscripten_bind_ElseEvent_SetAiGeneratedEventId_1"]=Module["asm"]["kI"]).apply(null,arguments)};var _emscripten_bind_ElseEvent___destroy___0=Module["_emscripten_bind_ElseEvent___destroy___0"]=function(){return(_emscripten_bind_ElseEvent___destroy___0=Module["_emscripten_bind_ElseEvent___destroy___0"]=Module["asm"]["lI"]).apply(null,arguments)};var _emscripten_bind_RepeatEvent_RepeatEvent_0=Module["_emscripten_bind_RepeatEvent_RepeatEvent_0"]=function(){return(_emscripten_bind_RepeatEvent_RepeatEvent_0=Module["_emscripten_bind_RepeatEvent_RepeatEvent_0"]=Module["asm"]["mI"]).apply(null,arguments)};var _emscripten_bind_RepeatEvent_GetConditions_0=Module["_emscripten_bind_RepeatEvent_GetConditions_0"]=function(){return(_emscripten_bind_RepeatEvent_GetConditions_0=Module["_emscripten_bind_RepeatEvent_GetConditions_0"]=Module["asm"]["nI"]).apply(null,arguments)};var _emscripten_bind_RepeatEvent_GetActions_0=Module["_emscripten_bind_RepeatEvent_GetActions_0"]=function(){return(_emscripten_bind_RepeatEvent_GetActions_0=Module["_emscripten_bind_RepeatEvent_GetActions_0"]=Module["asm"]["oI"]).apply(null,arguments)};var _emscripten_bind_RepeatEvent_SetRepeatExpressionPlainString_1=Module["_emscripten_bind_RepeatEvent_SetRepeatExpressionPlainString_1"]=function(){return(_emscripten_bind_RepeatEvent_SetRepeatExpressionPlainString_1=Module["_emscripten_bind_RepeatEvent_SetRepeatExpressionPlainString_1"]=Module["asm"]["pI"]).apply(null,arguments)};var _emscripten_bind_RepeatEvent_GetRepeatExpression_0=Module["_emscripten_bind_RepeatEvent_GetRepeatExpression_0"]=function(){return(_emscripten_bind_RepeatEvent_GetRepeatExpression_0=Module["_emscripten_bind_RepeatEvent_GetRepeatExpression_0"]=Module["asm"]["qI"]).apply(null,arguments)};var _emscripten_bind_RepeatEvent_GetLoopIndexVariableName_0=Module["_emscripten_bind_RepeatEvent_GetLoopIndexVariableName_0"]=function(){return(_emscripten_bind_RepeatEvent_GetLoopIndexVariableName_0=Module["_emscripten_bind_RepeatEvent_GetLoopIndexVariableName_0"]=Module["asm"]["rI"]).apply(null,arguments)};var _emscripten_bind_RepeatEvent_SetLoopIndexVariableName_1=Module["_emscripten_bind_RepeatEvent_SetLoopIndexVariableName_1"]=function(){return(_emscripten_bind_RepeatEvent_SetLoopIndexVariableName_1=Module["_emscripten_bind_RepeatEvent_SetLoopIndexVariableName_1"]=Module["asm"]["sI"]).apply(null,arguments)};var _emscripten_bind_RepeatEvent_Clone_0=Module["_emscripten_bind_RepeatEvent_Clone_0"]=function(){return(_emscripten_bind_RepeatEvent_Clone_0=Module["_emscripten_bind_RepeatEvent_Clone_0"]=Module["asm"]["tI"]).apply(null,arguments)};var _emscripten_bind_RepeatEvent_GetType_0=Module["_emscripten_bind_RepeatEvent_GetType_0"]=function(){return(_emscripten_bind_RepeatEvent_GetType_0=Module["_emscripten_bind_RepeatEvent_GetType_0"]=Module["asm"]["uI"]).apply(null,arguments)};var _emscripten_bind_RepeatEvent_SetType_1=Module["_emscripten_bind_RepeatEvent_SetType_1"]=function(){return(_emscripten_bind_RepeatEvent_SetType_1=Module["_emscripten_bind_RepeatEvent_SetType_1"]=Module["asm"]["vI"]).apply(null,arguments)};var _emscripten_bind_RepeatEvent_IsExecutable_0=Module["_emscripten_bind_RepeatEvent_IsExecutable_0"]=function(){return(_emscripten_bind_RepeatEvent_IsExecutable_0=Module["_emscripten_bind_RepeatEvent_IsExecutable_0"]=Module["asm"]["wI"]).apply(null,arguments)};var _emscripten_bind_RepeatEvent_CanHaveSubEvents_0=Module["_emscripten_bind_RepeatEvent_CanHaveSubEvents_0"]=function(){return(_emscripten_bind_RepeatEvent_CanHaveSubEvents_0=Module["_emscripten_bind_RepeatEvent_CanHaveSubEvents_0"]=Module["asm"]["xI"]).apply(null,arguments)};var _emscripten_bind_RepeatEvent_HasSubEvents_0=Module["_emscripten_bind_RepeatEvent_HasSubEvents_0"]=function(){return(_emscripten_bind_RepeatEvent_HasSubEvents_0=Module["_emscripten_bind_RepeatEvent_HasSubEvents_0"]=Module["asm"]["yI"]).apply(null,arguments)};var _emscripten_bind_RepeatEvent_GetSubEvents_0=Module["_emscripten_bind_RepeatEvent_GetSubEvents_0"]=function(){return(_emscripten_bind_RepeatEvent_GetSubEvents_0=Module["_emscripten_bind_RepeatEvent_GetSubEvents_0"]=Module["asm"]["zI"]).apply(null,arguments)};var _emscripten_bind_RepeatEvent_CanHaveVariables_0=Module["_emscripten_bind_RepeatEvent_CanHaveVariables_0"]=function(){return(_emscripten_bind_RepeatEvent_CanHaveVariables_0=Module["_emscripten_bind_RepeatEvent_CanHaveVariables_0"]=Module["asm"]["AI"]).apply(null,arguments)};var _emscripten_bind_RepeatEvent_HasVariables_0=Module["_emscripten_bind_RepeatEvent_HasVariables_0"]=function(){return(_emscripten_bind_RepeatEvent_HasVariables_0=Module["_emscripten_bind_RepeatEvent_HasVariables_0"]=Module["asm"]["BI"]).apply(null,arguments)};var _emscripten_bind_RepeatEvent_GetVariables_0=Module["_emscripten_bind_RepeatEvent_GetVariables_0"]=function(){return(_emscripten_bind_RepeatEvent_GetVariables_0=Module["_emscripten_bind_RepeatEvent_GetVariables_0"]=Module["asm"]["CI"]).apply(null,arguments)};var _emscripten_bind_RepeatEvent_IsDisabled_0=Module["_emscripten_bind_RepeatEvent_IsDisabled_0"]=function(){return(_emscripten_bind_RepeatEvent_IsDisabled_0=Module["_emscripten_bind_RepeatEvent_IsDisabled_0"]=Module["asm"]["DI"]).apply(null,arguments)};var _emscripten_bind_RepeatEvent_SetDisabled_1=Module["_emscripten_bind_RepeatEvent_SetDisabled_1"]=function(){return(_emscripten_bind_RepeatEvent_SetDisabled_1=Module["_emscripten_bind_RepeatEvent_SetDisabled_1"]=Module["asm"]["EI"]).apply(null,arguments)};var _emscripten_bind_RepeatEvent_IsFolded_0=Module["_emscripten_bind_RepeatEvent_IsFolded_0"]=function(){return(_emscripten_bind_RepeatEvent_IsFolded_0=Module["_emscripten_bind_RepeatEvent_IsFolded_0"]=Module["asm"]["FI"]).apply(null,arguments)};var _emscripten_bind_RepeatEvent_SetFolded_1=Module["_emscripten_bind_RepeatEvent_SetFolded_1"]=function(){return(_emscripten_bind_RepeatEvent_SetFolded_1=Module["_emscripten_bind_RepeatEvent_SetFolded_1"]=Module["asm"]["GI"]).apply(null,arguments)};var _emscripten_bind_RepeatEvent_SerializeTo_1=Module["_emscripten_bind_RepeatEvent_SerializeTo_1"]=function(){return(_emscripten_bind_RepeatEvent_SerializeTo_1=Module["_emscripten_bind_RepeatEvent_SerializeTo_1"]=Module["asm"]["HI"]).apply(null,arguments)};var _emscripten_bind_RepeatEvent_UnserializeFrom_2=Module["_emscripten_bind_RepeatEvent_UnserializeFrom_2"]=function(){return(_emscripten_bind_RepeatEvent_UnserializeFrom_2=Module["_emscripten_bind_RepeatEvent_UnserializeFrom_2"]=Module["asm"]["II"]).apply(null,arguments)};var _emscripten_bind_RepeatEvent_GetAiGeneratedEventId_0=Module["_emscripten_bind_RepeatEvent_GetAiGeneratedEventId_0"]=function(){return(_emscripten_bind_RepeatEvent_GetAiGeneratedEventId_0=Module["_emscripten_bind_RepeatEvent_GetAiGeneratedEventId_0"]=Module["asm"]["JI"]).apply(null,arguments)};var _emscripten_bind_RepeatEvent_SetAiGeneratedEventId_1=Module["_emscripten_bind_RepeatEvent_SetAiGeneratedEventId_1"]=function(){return(_emscripten_bind_RepeatEvent_SetAiGeneratedEventId_1=Module["_emscripten_bind_RepeatEvent_SetAiGeneratedEventId_1"]=Module["asm"]["KI"]).apply(null,arguments)};var _emscripten_bind_RepeatEvent___destroy___0=Module["_emscripten_bind_RepeatEvent___destroy___0"]=function(){return(_emscripten_bind_RepeatEvent___destroy___0=Module["_emscripten_bind_RepeatEvent___destroy___0"]=Module["asm"]["LI"]).apply(null,arguments)};var _emscripten_bind_WhileEvent_WhileEvent_0=Module["_emscripten_bind_WhileEvent_WhileEvent_0"]=function(){return(_emscripten_bind_WhileEvent_WhileEvent_0=Module["_emscripten_bind_WhileEvent_WhileEvent_0"]=Module["asm"]["MI"]).apply(null,arguments)};var _emscripten_bind_WhileEvent_GetConditions_0=Module["_emscripten_bind_WhileEvent_GetConditions_0"]=function(){return(_emscripten_bind_WhileEvent_GetConditions_0=Module["_emscripten_bind_WhileEvent_GetConditions_0"]=Module["asm"]["NI"]).apply(null,arguments)};var _emscripten_bind_WhileEvent_GetWhileConditions_0=Module["_emscripten_bind_WhileEvent_GetWhileConditions_0"]=function(){return(_emscripten_bind_WhileEvent_GetWhileConditions_0=Module["_emscripten_bind_WhileEvent_GetWhileConditions_0"]=Module["asm"]["OI"]).apply(null,arguments)};var _emscripten_bind_WhileEvent_GetActions_0=Module["_emscripten_bind_WhileEvent_GetActions_0"]=function(){return(_emscripten_bind_WhileEvent_GetActions_0=Module["_emscripten_bind_WhileEvent_GetActions_0"]=Module["asm"]["PI"]).apply(null,arguments)};var _emscripten_bind_WhileEvent_GetLoopIndexVariableName_0=Module["_emscripten_bind_WhileEvent_GetLoopIndexVariableName_0"]=function(){return(_emscripten_bind_WhileEvent_GetLoopIndexVariableName_0=Module["_emscripten_bind_WhileEvent_GetLoopIndexVariableName_0"]=Module["asm"]["QI"]).apply(null,arguments)};var _emscripten_bind_WhileEvent_SetLoopIndexVariableName_1=Module["_emscripten_bind_WhileEvent_SetLoopIndexVariableName_1"]=function(){return(_emscripten_bind_WhileEvent_SetLoopIndexVariableName_1=Module["_emscripten_bind_WhileEvent_SetLoopIndexVariableName_1"]=Module["asm"]["RI"]).apply(null,arguments)};var _emscripten_bind_WhileEvent_Clone_0=Module["_emscripten_bind_WhileEvent_Clone_0"]=function(){return(_emscripten_bind_WhileEvent_Clone_0=Module["_emscripten_bind_WhileEvent_Clone_0"]=Module["asm"]["SI"]).apply(null,arguments)};var _emscripten_bind_WhileEvent_GetType_0=Module["_emscripten_bind_WhileEvent_GetType_0"]=function(){return(_emscripten_bind_WhileEvent_GetType_0=Module["_emscripten_bind_WhileEvent_GetType_0"]=Module["asm"]["TI"]).apply(null,arguments)};var _emscripten_bind_WhileEvent_SetType_1=Module["_emscripten_bind_WhileEvent_SetType_1"]=function(){return(_emscripten_bind_WhileEvent_SetType_1=Module["_emscripten_bind_WhileEvent_SetType_1"]=Module["asm"]["UI"]).apply(null,arguments)};var _emscripten_bind_WhileEvent_IsExecutable_0=Module["_emscripten_bind_WhileEvent_IsExecutable_0"]=function(){return(_emscripten_bind_WhileEvent_IsExecutable_0=Module["_emscripten_bind_WhileEvent_IsExecutable_0"]=Module["asm"]["VI"]).apply(null,arguments)};var _emscripten_bind_WhileEvent_CanHaveSubEvents_0=Module["_emscripten_bind_WhileEvent_CanHaveSubEvents_0"]=function(){return(_emscripten_bind_WhileEvent_CanHaveSubEvents_0=Module["_emscripten_bind_WhileEvent_CanHaveSubEvents_0"]=Module["asm"]["WI"]).apply(null,arguments)};var _emscripten_bind_WhileEvent_HasSubEvents_0=Module["_emscripten_bind_WhileEvent_HasSubEvents_0"]=function(){return(_emscripten_bind_WhileEvent_HasSubEvents_0=Module["_emscripten_bind_WhileEvent_HasSubEvents_0"]=Module["asm"]["XI"]).apply(null,arguments)};var _emscripten_bind_WhileEvent_GetSubEvents_0=Module["_emscripten_bind_WhileEvent_GetSubEvents_0"]=function(){return(_emscripten_bind_WhileEvent_GetSubEvents_0=Module["_emscripten_bind_WhileEvent_GetSubEvents_0"]=Module["asm"]["YI"]).apply(null,arguments)};var _emscripten_bind_WhileEvent_CanHaveVariables_0=Module["_emscripten_bind_WhileEvent_CanHaveVariables_0"]=function(){return(_emscripten_bind_WhileEvent_CanHaveVariables_0=Module["_emscripten_bind_WhileEvent_CanHaveVariables_0"]=Module["asm"]["ZI"]).apply(null,arguments)};var _emscripten_bind_WhileEvent_HasVariables_0=Module["_emscripten_bind_WhileEvent_HasVariables_0"]=function(){return(_emscripten_bind_WhileEvent_HasVariables_0=Module["_emscripten_bind_WhileEvent_HasVariables_0"]=Module["asm"]["_I"]).apply(null,arguments)};var _emscripten_bind_WhileEvent_GetVariables_0=Module["_emscripten_bind_WhileEvent_GetVariables_0"]=function(){return(_emscripten_bind_WhileEvent_GetVariables_0=Module["_emscripten_bind_WhileEvent_GetVariables_0"]=Module["asm"]["$I"]).apply(null,arguments)};var _emscripten_bind_WhileEvent_IsDisabled_0=Module["_emscripten_bind_WhileEvent_IsDisabled_0"]=function(){return(_emscripten_bind_WhileEvent_IsDisabled_0=Module["_emscripten_bind_WhileEvent_IsDisabled_0"]=Module["asm"]["aJ"]).apply(null,arguments)};var _emscripten_bind_WhileEvent_SetDisabled_1=Module["_emscripten_bind_WhileEvent_SetDisabled_1"]=function(){return(_emscripten_bind_WhileEvent_SetDisabled_1=Module["_emscripten_bind_WhileEvent_SetDisabled_1"]=Module["asm"]["bJ"]).apply(null,arguments)};var _emscripten_bind_WhileEvent_IsFolded_0=Module["_emscripten_bind_WhileEvent_IsFolded_0"]=function(){return(_emscripten_bind_WhileEvent_IsFolded_0=Module["_emscripten_bind_WhileEvent_IsFolded_0"]=Module["asm"]["cJ"]).apply(null,arguments)};var _emscripten_bind_WhileEvent_SetFolded_1=Module["_emscripten_bind_WhileEvent_SetFolded_1"]=function(){return(_emscripten_bind_WhileEvent_SetFolded_1=Module["_emscripten_bind_WhileEvent_SetFolded_1"]=Module["asm"]["dJ"]).apply(null,arguments)};var _emscripten_bind_WhileEvent_SerializeTo_1=Module["_emscripten_bind_WhileEvent_SerializeTo_1"]=function(){return(_emscripten_bind_WhileEvent_SerializeTo_1=Module["_emscripten_bind_WhileEvent_SerializeTo_1"]=Module["asm"]["eJ"]).apply(null,arguments)};var _emscripten_bind_WhileEvent_UnserializeFrom_2=Module["_emscripten_bind_WhileEvent_UnserializeFrom_2"]=function(){return(_emscripten_bind_WhileEvent_UnserializeFrom_2=Module["_emscripten_bind_WhileEvent_UnserializeFrom_2"]=Module["asm"]["fJ"]).apply(null,arguments)};var _emscripten_bind_WhileEvent_GetAiGeneratedEventId_0=Module["_emscripten_bind_WhileEvent_GetAiGeneratedEventId_0"]=function(){return(_emscripten_bind_WhileEvent_GetAiGeneratedEventId_0=Module["_emscripten_bind_WhileEvent_GetAiGeneratedEventId_0"]=Module["asm"]["gJ"]).apply(null,arguments)};var _emscripten_bind_WhileEvent_SetAiGeneratedEventId_1=Module["_emscripten_bind_WhileEvent_SetAiGeneratedEventId_1"]=function(){return(_emscripten_bind_WhileEvent_SetAiGeneratedEventId_1=Module["_emscripten_bind_WhileEvent_SetAiGeneratedEventId_1"]=Module["asm"]["hJ"]).apply(null,arguments)};var _emscripten_bind_WhileEvent___destroy___0=Module["_emscripten_bind_WhileEvent___destroy___0"]=function(){return(_emscripten_bind_WhileEvent___destroy___0=Module["_emscripten_bind_WhileEvent___destroy___0"]=Module["asm"]["iJ"]).apply(null,arguments)};var _emscripten_bind_ForEachEvent_ForEachEvent_0=Module["_emscripten_bind_ForEachEvent_ForEachEvent_0"]=function(){return(_emscripten_bind_ForEachEvent_ForEachEvent_0=Module["_emscripten_bind_ForEachEvent_ForEachEvent_0"]=Module["asm"]["jJ"]).apply(null,arguments)};var _emscripten_bind_ForEachEvent_SetObjectToPick_1=Module["_emscripten_bind_ForEachEvent_SetObjectToPick_1"]=function(){return(_emscripten_bind_ForEachEvent_SetObjectToPick_1=Module["_emscripten_bind_ForEachEvent_SetObjectToPick_1"]=Module["asm"]["kJ"]).apply(null,arguments)};var _emscripten_bind_ForEachEvent_GetObjectToPick_0=Module["_emscripten_bind_ForEachEvent_GetObjectToPick_0"]=function(){return(_emscripten_bind_ForEachEvent_GetObjectToPick_0=Module["_emscripten_bind_ForEachEvent_GetObjectToPick_0"]=Module["asm"]["lJ"]).apply(null,arguments)};var _emscripten_bind_ForEachEvent_GetConditions_0=Module["_emscripten_bind_ForEachEvent_GetConditions_0"]=function(){return(_emscripten_bind_ForEachEvent_GetConditions_0=Module["_emscripten_bind_ForEachEvent_GetConditions_0"]=Module["asm"]["mJ"]).apply(null,arguments)};var _emscripten_bind_ForEachEvent_GetActions_0=Module["_emscripten_bind_ForEachEvent_GetActions_0"]=function(){return(_emscripten_bind_ForEachEvent_GetActions_0=Module["_emscripten_bind_ForEachEvent_GetActions_0"]=Module["asm"]["nJ"]).apply(null,arguments)};var _emscripten_bind_ForEachEvent_GetLoopIndexVariableName_0=Module["_emscripten_bind_ForEachEvent_GetLoopIndexVariableName_0"]=function(){return(_emscripten_bind_ForEachEvent_GetLoopIndexVariableName_0=Module["_emscripten_bind_ForEachEvent_GetLoopIndexVariableName_0"]=Module["asm"]["oJ"]).apply(null,arguments)};var _emscripten_bind_ForEachEvent_SetLoopIndexVariableName_1=Module["_emscripten_bind_ForEachEvent_SetLoopIndexVariableName_1"]=function(){return(_emscripten_bind_ForEachEvent_SetLoopIndexVariableName_1=Module["_emscripten_bind_ForEachEvent_SetLoopIndexVariableName_1"]=Module["asm"]["pJ"]).apply(null,arguments)};var _emscripten_bind_ForEachEvent_GetOrderBy_0=Module["_emscripten_bind_ForEachEvent_GetOrderBy_0"]=function(){return(_emscripten_bind_ForEachEvent_GetOrderBy_0=Module["_emscripten_bind_ForEachEvent_GetOrderBy_0"]=Module["asm"]["qJ"]).apply(null,arguments)};var _emscripten_bind_ForEachEvent_SetOrderBy_1=Module["_emscripten_bind_ForEachEvent_SetOrderBy_1"]=function(){return(_emscripten_bind_ForEachEvent_SetOrderBy_1=Module["_emscripten_bind_ForEachEvent_SetOrderBy_1"]=Module["asm"]["rJ"]).apply(null,arguments)};var _emscripten_bind_ForEachEvent_GetOrderByExpression_0=Module["_emscripten_bind_ForEachEvent_GetOrderByExpression_0"]=function(){return(_emscripten_bind_ForEachEvent_GetOrderByExpression_0=Module["_emscripten_bind_ForEachEvent_GetOrderByExpression_0"]=Module["asm"]["sJ"]).apply(null,arguments)};var _emscripten_bind_ForEachEvent_GetOrder_0=Module["_emscripten_bind_ForEachEvent_GetOrder_0"]=function(){return(_emscripten_bind_ForEachEvent_GetOrder_0=Module["_emscripten_bind_ForEachEvent_GetOrder_0"]=Module["asm"]["tJ"]).apply(null,arguments)};var _emscripten_bind_ForEachEvent_SetOrder_1=Module["_emscripten_bind_ForEachEvent_SetOrder_1"]=function(){return(_emscripten_bind_ForEachEvent_SetOrder_1=Module["_emscripten_bind_ForEachEvent_SetOrder_1"]=Module["asm"]["uJ"]).apply(null,arguments)};var _emscripten_bind_ForEachEvent_GetLimit_0=Module["_emscripten_bind_ForEachEvent_GetLimit_0"]=function(){return(_emscripten_bind_ForEachEvent_GetLimit_0=Module["_emscripten_bind_ForEachEvent_GetLimit_0"]=Module["asm"]["vJ"]).apply(null,arguments)};var _emscripten_bind_ForEachEvent_SetLimit_1=Module["_emscripten_bind_ForEachEvent_SetLimit_1"]=function(){return(_emscripten_bind_ForEachEvent_SetLimit_1=Module["_emscripten_bind_ForEachEvent_SetLimit_1"]=Module["asm"]["wJ"]).apply(null,arguments)};var _emscripten_bind_ForEachEvent_GetLimitExpression_0=Module["_emscripten_bind_ForEachEvent_GetLimitExpression_0"]=function(){return(_emscripten_bind_ForEachEvent_GetLimitExpression_0=Module["_emscripten_bind_ForEachEvent_GetLimitExpression_0"]=Module["asm"]["xJ"]).apply(null,arguments)};var _emscripten_bind_ForEachEvent_Clone_0=Module["_emscripten_bind_ForEachEvent_Clone_0"]=function(){return(_emscripten_bind_ForEachEvent_Clone_0=Module["_emscripten_bind_ForEachEvent_Clone_0"]=Module["asm"]["yJ"]).apply(null,arguments)};var _emscripten_bind_ForEachEvent_GetType_0=Module["_emscripten_bind_ForEachEvent_GetType_0"]=function(){return(_emscripten_bind_ForEachEvent_GetType_0=Module["_emscripten_bind_ForEachEvent_GetType_0"]=Module["asm"]["zJ"]).apply(null,arguments)};var _emscripten_bind_ForEachEvent_SetType_1=Module["_emscripten_bind_ForEachEvent_SetType_1"]=function(){return(_emscripten_bind_ForEachEvent_SetType_1=Module["_emscripten_bind_ForEachEvent_SetType_1"]=Module["asm"]["AJ"]).apply(null,arguments)};var _emscripten_bind_ForEachEvent_IsExecutable_0=Module["_emscripten_bind_ForEachEvent_IsExecutable_0"]=function(){return(_emscripten_bind_ForEachEvent_IsExecutable_0=Module["_emscripten_bind_ForEachEvent_IsExecutable_0"]=Module["asm"]["BJ"]).apply(null,arguments)};var _emscripten_bind_ForEachEvent_CanHaveSubEvents_0=Module["_emscripten_bind_ForEachEvent_CanHaveSubEvents_0"]=function(){return(_emscripten_bind_ForEachEvent_CanHaveSubEvents_0=Module["_emscripten_bind_ForEachEvent_CanHaveSubEvents_0"]=Module["asm"]["CJ"]).apply(null,arguments)};var _emscripten_bind_ForEachEvent_HasSubEvents_0=Module["_emscripten_bind_ForEachEvent_HasSubEvents_0"]=function(){return(_emscripten_bind_ForEachEvent_HasSubEvents_0=Module["_emscripten_bind_ForEachEvent_HasSubEvents_0"]=Module["asm"]["DJ"]).apply(null,arguments)};var _emscripten_bind_ForEachEvent_GetSubEvents_0=Module["_emscripten_bind_ForEachEvent_GetSubEvents_0"]=function(){return(_emscripten_bind_ForEachEvent_GetSubEvents_0=Module["_emscripten_bind_ForEachEvent_GetSubEvents_0"]=Module["asm"]["EJ"]).apply(null,arguments)};var _emscripten_bind_ForEachEvent_CanHaveVariables_0=Module["_emscripten_bind_ForEachEvent_CanHaveVariables_0"]=function(){return(_emscripten_bind_ForEachEvent_CanHaveVariables_0=Module["_emscripten_bind_ForEachEvent_CanHaveVariables_0"]=Module["asm"]["FJ"]).apply(null,arguments)};var _emscripten_bind_ForEachEvent_HasVariables_0=Module["_emscripten_bind_ForEachEvent_HasVariables_0"]=function(){return(_emscripten_bind_ForEachEvent_HasVariables_0=Module["_emscripten_bind_ForEachEvent_HasVariables_0"]=Module["asm"]["GJ"]).apply(null,arguments)};var _emscripten_bind_ForEachEvent_GetVariables_0=Module["_emscripten_bind_ForEachEvent_GetVariables_0"]=function(){return(_emscripten_bind_ForEachEvent_GetVariables_0=Module["_emscripten_bind_ForEachEvent_GetVariables_0"]=Module["asm"]["HJ"]).apply(null,arguments)};var _emscripten_bind_ForEachEvent_IsDisabled_0=Module["_emscripten_bind_ForEachEvent_IsDisabled_0"]=function(){return(_emscripten_bind_ForEachEvent_IsDisabled_0=Module["_emscripten_bind_ForEachEvent_IsDisabled_0"]=Module["asm"]["IJ"]).apply(null,arguments)};var _emscripten_bind_ForEachEvent_SetDisabled_1=Module["_emscripten_bind_ForEachEvent_SetDisabled_1"]=function(){return(_emscripten_bind_ForEachEvent_SetDisabled_1=Module["_emscripten_bind_ForEachEvent_SetDisabled_1"]=Module["asm"]["JJ"]).apply(null,arguments)};var _emscripten_bind_ForEachEvent_IsFolded_0=Module["_emscripten_bind_ForEachEvent_IsFolded_0"]=function(){return(_emscripten_bind_ForEachEvent_IsFolded_0=Module["_emscripten_bind_ForEachEvent_IsFolded_0"]=Module["asm"]["KJ"]).apply(null,arguments)};var _emscripten_bind_ForEachEvent_SetFolded_1=Module["_emscripten_bind_ForEachEvent_SetFolded_1"]=function(){return(_emscripten_bind_ForEachEvent_SetFolded_1=Module["_emscripten_bind_ForEachEvent_SetFolded_1"]=Module["asm"]["LJ"]).apply(null,arguments)};var _emscripten_bind_ForEachEvent_SerializeTo_1=Module["_emscripten_bind_ForEachEvent_SerializeTo_1"]=function(){return(_emscripten_bind_ForEachEvent_SerializeTo_1=Module["_emscripten_bind_ForEachEvent_SerializeTo_1"]=Module["asm"]["MJ"]).apply(null,arguments)};var _emscripten_bind_ForEachEvent_UnserializeFrom_2=Module["_emscripten_bind_ForEachEvent_UnserializeFrom_2"]=function(){return(_emscripten_bind_ForEachEvent_UnserializeFrom_2=Module["_emscripten_bind_ForEachEvent_UnserializeFrom_2"]=Module["asm"]["NJ"]).apply(null,arguments)};var _emscripten_bind_ForEachEvent_GetAiGeneratedEventId_0=Module["_emscripten_bind_ForEachEvent_GetAiGeneratedEventId_0"]=function(){return(_emscripten_bind_ForEachEvent_GetAiGeneratedEventId_0=Module["_emscripten_bind_ForEachEvent_GetAiGeneratedEventId_0"]=Module["asm"]["OJ"]).apply(null,arguments)};var _emscripten_bind_ForEachEvent_SetAiGeneratedEventId_1=Module["_emscripten_bind_ForEachEvent_SetAiGeneratedEventId_1"]=function(){return(_emscripten_bind_ForEachEvent_SetAiGeneratedEventId_1=Module["_emscripten_bind_ForEachEvent_SetAiGeneratedEventId_1"]=Module["asm"]["PJ"]).apply(null,arguments)};var _emscripten_bind_ForEachEvent___destroy___0=Module["_emscripten_bind_ForEachEvent___destroy___0"]=function(){return(_emscripten_bind_ForEachEvent___destroy___0=Module["_emscripten_bind_ForEachEvent___destroy___0"]=Module["asm"]["QJ"]).apply(null,arguments)};var _emscripten_bind_ForEachChildVariableEvent_ForEachChildVariableEvent_0=Module["_emscripten_bind_ForEachChildVariableEvent_ForEachChildVariableEvent_0"]=function(){return(_emscripten_bind_ForEachChildVariableEvent_ForEachChildVariableEvent_0=Module["_emscripten_bind_ForEachChildVariableEvent_ForEachChildVariableEvent_0"]=Module["asm"]["RJ"]).apply(null,arguments)};var _emscripten_bind_ForEachChildVariableEvent_GetConditions_0=Module["_emscripten_bind_ForEachChildVariableEvent_GetConditions_0"]=function(){return(_emscripten_bind_ForEachChildVariableEvent_GetConditions_0=Module["_emscripten_bind_ForEachChildVariableEvent_GetConditions_0"]=Module["asm"]["SJ"]).apply(null,arguments)};var _emscripten_bind_ForEachChildVariableEvent_GetActions_0=Module["_emscripten_bind_ForEachChildVariableEvent_GetActions_0"]=function(){return(_emscripten_bind_ForEachChildVariableEvent_GetActions_0=Module["_emscripten_bind_ForEachChildVariableEvent_GetActions_0"]=Module["asm"]["TJ"]).apply(null,arguments)};var _emscripten_bind_ForEachChildVariableEvent_GetIterableVariableName_0=Module["_emscripten_bind_ForEachChildVariableEvent_GetIterableVariableName_0"]=function(){return(_emscripten_bind_ForEachChildVariableEvent_GetIterableVariableName_0=Module["_emscripten_bind_ForEachChildVariableEvent_GetIterableVariableName_0"]=Module["asm"]["UJ"]).apply(null,arguments)};var _emscripten_bind_ForEachChildVariableEvent_GetKeyIteratorVariableName_0=Module["_emscripten_bind_ForEachChildVariableEvent_GetKeyIteratorVariableName_0"]=function(){return(_emscripten_bind_ForEachChildVariableEvent_GetKeyIteratorVariableName_0=Module["_emscripten_bind_ForEachChildVariableEvent_GetKeyIteratorVariableName_0"]=Module["asm"]["VJ"]).apply(null,arguments)};var _emscripten_bind_ForEachChildVariableEvent_GetValueIteratorVariableName_0=Module["_emscripten_bind_ForEachChildVariableEvent_GetValueIteratorVariableName_0"]=function(){return(_emscripten_bind_ForEachChildVariableEvent_GetValueIteratorVariableName_0=Module["_emscripten_bind_ForEachChildVariableEvent_GetValueIteratorVariableName_0"]=Module["asm"]["WJ"]).apply(null,arguments)};var _emscripten_bind_ForEachChildVariableEvent_SetIterableVariableName_1=Module["_emscripten_bind_ForEachChildVariableEvent_SetIterableVariableName_1"]=function(){return(_emscripten_bind_ForEachChildVariableEvent_SetIterableVariableName_1=Module["_emscripten_bind_ForEachChildVariableEvent_SetIterableVariableName_1"]=Module["asm"]["XJ"]).apply(null,arguments)};var _emscripten_bind_ForEachChildVariableEvent_SetKeyIteratorVariableName_1=Module["_emscripten_bind_ForEachChildVariableEvent_SetKeyIteratorVariableName_1"]=function(){return(_emscripten_bind_ForEachChildVariableEvent_SetKeyIteratorVariableName_1=Module["_emscripten_bind_ForEachChildVariableEvent_SetKeyIteratorVariableName_1"]=Module["asm"]["YJ"]).apply(null,arguments)};var _emscripten_bind_ForEachChildVariableEvent_SetValueIteratorVariableName_1=Module["_emscripten_bind_ForEachChildVariableEvent_SetValueIteratorVariableName_1"]=function(){return(_emscripten_bind_ForEachChildVariableEvent_SetValueIteratorVariableName_1=Module["_emscripten_bind_ForEachChildVariableEvent_SetValueIteratorVariableName_1"]=Module["asm"]["ZJ"]).apply(null,arguments)};var _emscripten_bind_ForEachChildVariableEvent_GetLoopIndexVariableName_0=Module["_emscripten_bind_ForEachChildVariableEvent_GetLoopIndexVariableName_0"]=function(){return(_emscripten_bind_ForEachChildVariableEvent_GetLoopIndexVariableName_0=Module["_emscripten_bind_ForEachChildVariableEvent_GetLoopIndexVariableName_0"]=Module["asm"]["_J"]).apply(null,arguments)};var _emscripten_bind_ForEachChildVariableEvent_SetLoopIndexVariableName_1=Module["_emscripten_bind_ForEachChildVariableEvent_SetLoopIndexVariableName_1"]=function(){return(_emscripten_bind_ForEachChildVariableEvent_SetLoopIndexVariableName_1=Module["_emscripten_bind_ForEachChildVariableEvent_SetLoopIndexVariableName_1"]=Module["asm"]["$J"]).apply(null,arguments)};var _emscripten_bind_ForEachChildVariableEvent_Clone_0=Module["_emscripten_bind_ForEachChildVariableEvent_Clone_0"]=function(){return(_emscripten_bind_ForEachChildVariableEvent_Clone_0=Module["_emscripten_bind_ForEachChildVariableEvent_Clone_0"]=Module["asm"]["aK"]).apply(null,arguments)};var _emscripten_bind_ForEachChildVariableEvent_GetType_0=Module["_emscripten_bind_ForEachChildVariableEvent_GetType_0"]=function(){return(_emscripten_bind_ForEachChildVariableEvent_GetType_0=Module["_emscripten_bind_ForEachChildVariableEvent_GetType_0"]=Module["asm"]["bK"]).apply(null,arguments)};var _emscripten_bind_ForEachChildVariableEvent_SetType_1=Module["_emscripten_bind_ForEachChildVariableEvent_SetType_1"]=function(){return(_emscripten_bind_ForEachChildVariableEvent_SetType_1=Module["_emscripten_bind_ForEachChildVariableEvent_SetType_1"]=Module["asm"]["cK"]).apply(null,arguments)};var _emscripten_bind_ForEachChildVariableEvent_IsExecutable_0=Module["_emscripten_bind_ForEachChildVariableEvent_IsExecutable_0"]=function(){return(_emscripten_bind_ForEachChildVariableEvent_IsExecutable_0=Module["_emscripten_bind_ForEachChildVariableEvent_IsExecutable_0"]=Module["asm"]["dK"]).apply(null,arguments)};var _emscripten_bind_ForEachChildVariableEvent_CanHaveSubEvents_0=Module["_emscripten_bind_ForEachChildVariableEvent_CanHaveSubEvents_0"]=function(){return(_emscripten_bind_ForEachChildVariableEvent_CanHaveSubEvents_0=Module["_emscripten_bind_ForEachChildVariableEvent_CanHaveSubEvents_0"]=Module["asm"]["eK"]).apply(null,arguments)};var _emscripten_bind_ForEachChildVariableEvent_HasSubEvents_0=Module["_emscripten_bind_ForEachChildVariableEvent_HasSubEvents_0"]=function(){return(_emscripten_bind_ForEachChildVariableEvent_HasSubEvents_0=Module["_emscripten_bind_ForEachChildVariableEvent_HasSubEvents_0"]=Module["asm"]["fK"]).apply(null,arguments)};var _emscripten_bind_ForEachChildVariableEvent_GetSubEvents_0=Module["_emscripten_bind_ForEachChildVariableEvent_GetSubEvents_0"]=function(){return(_emscripten_bind_ForEachChildVariableEvent_GetSubEvents_0=Module["_emscripten_bind_ForEachChildVariableEvent_GetSubEvents_0"]=Module["asm"]["gK"]).apply(null,arguments)};var _emscripten_bind_ForEachChildVariableEvent_CanHaveVariables_0=Module["_emscripten_bind_ForEachChildVariableEvent_CanHaveVariables_0"]=function(){return(_emscripten_bind_ForEachChildVariableEvent_CanHaveVariables_0=Module["_emscripten_bind_ForEachChildVariableEvent_CanHaveVariables_0"]=Module["asm"]["hK"]).apply(null,arguments)};var _emscripten_bind_ForEachChildVariableEvent_HasVariables_0=Module["_emscripten_bind_ForEachChildVariableEvent_HasVariables_0"]=function(){return(_emscripten_bind_ForEachChildVariableEvent_HasVariables_0=Module["_emscripten_bind_ForEachChildVariableEvent_HasVariables_0"]=Module["asm"]["iK"]).apply(null,arguments)};var _emscripten_bind_ForEachChildVariableEvent_GetVariables_0=Module["_emscripten_bind_ForEachChildVariableEvent_GetVariables_0"]=function(){return(_emscripten_bind_ForEachChildVariableEvent_GetVariables_0=Module["_emscripten_bind_ForEachChildVariableEvent_GetVariables_0"]=Module["asm"]["jK"]).apply(null,arguments)};var _emscripten_bind_ForEachChildVariableEvent_IsDisabled_0=Module["_emscripten_bind_ForEachChildVariableEvent_IsDisabled_0"]=function(){return(_emscripten_bind_ForEachChildVariableEvent_IsDisabled_0=Module["_emscripten_bind_ForEachChildVariableEvent_IsDisabled_0"]=Module["asm"]["kK"]).apply(null,arguments)};var _emscripten_bind_ForEachChildVariableEvent_SetDisabled_1=Module["_emscripten_bind_ForEachChildVariableEvent_SetDisabled_1"]=function(){return(_emscripten_bind_ForEachChildVariableEvent_SetDisabled_1=Module["_emscripten_bind_ForEachChildVariableEvent_SetDisabled_1"]=Module["asm"]["lK"]).apply(null,arguments)};var _emscripten_bind_ForEachChildVariableEvent_IsFolded_0=Module["_emscripten_bind_ForEachChildVariableEvent_IsFolded_0"]=function(){return(_emscripten_bind_ForEachChildVariableEvent_IsFolded_0=Module["_emscripten_bind_ForEachChildVariableEvent_IsFolded_0"]=Module["asm"]["mK"]).apply(null,arguments)};var _emscripten_bind_ForEachChildVariableEvent_SetFolded_1=Module["_emscripten_bind_ForEachChildVariableEvent_SetFolded_1"]=function(){return(_emscripten_bind_ForEachChildVariableEvent_SetFolded_1=Module["_emscripten_bind_ForEachChildVariableEvent_SetFolded_1"]=Module["asm"]["nK"]).apply(null,arguments)};var _emscripten_bind_ForEachChildVariableEvent_SerializeTo_1=Module["_emscripten_bind_ForEachChildVariableEvent_SerializeTo_1"]=function(){return(_emscripten_bind_ForEachChildVariableEvent_SerializeTo_1=Module["_emscripten_bind_ForEachChildVariableEvent_SerializeTo_1"]=Module["asm"]["oK"]).apply(null,arguments)};var _emscripten_bind_ForEachChildVariableEvent_UnserializeFrom_2=Module["_emscripten_bind_ForEachChildVariableEvent_UnserializeFrom_2"]=function(){return(_emscripten_bind_ForEachChildVariableEvent_UnserializeFrom_2=Module["_emscripten_bind_ForEachChildVariableEvent_UnserializeFrom_2"]=Module["asm"]["pK"]).apply(null,arguments)};var _emscripten_bind_ForEachChildVariableEvent_GetAiGeneratedEventId_0=Module["_emscripten_bind_ForEachChildVariableEvent_GetAiGeneratedEventId_0"]=function(){return(_emscripten_bind_ForEachChildVariableEvent_GetAiGeneratedEventId_0=Module["_emscripten_bind_ForEachChildVariableEvent_GetAiGeneratedEventId_0"]=Module["asm"]["qK"]).apply(null,arguments)};var _emscripten_bind_ForEachChildVariableEvent_SetAiGeneratedEventId_1=Module["_emscripten_bind_ForEachChildVariableEvent_SetAiGeneratedEventId_1"]=function(){return(_emscripten_bind_ForEachChildVariableEvent_SetAiGeneratedEventId_1=Module["_emscripten_bind_ForEachChildVariableEvent_SetAiGeneratedEventId_1"]=Module["asm"]["rK"]).apply(null,arguments)};var _emscripten_bind_ForEachChildVariableEvent___destroy___0=Module["_emscripten_bind_ForEachChildVariableEvent___destroy___0"]=function(){return(_emscripten_bind_ForEachChildVariableEvent___destroy___0=Module["_emscripten_bind_ForEachChildVariableEvent___destroy___0"]=Module["asm"]["sK"]).apply(null,arguments)};var _emscripten_bind_CommentEvent_CommentEvent_0=Module["_emscripten_bind_CommentEvent_CommentEvent_0"]=function(){return(_emscripten_bind_CommentEvent_CommentEvent_0=Module["_emscripten_bind_CommentEvent_CommentEvent_0"]=Module["asm"]["tK"]).apply(null,arguments)};var _emscripten_bind_CommentEvent_GetComment_0=Module["_emscripten_bind_CommentEvent_GetComment_0"]=function(){return(_emscripten_bind_CommentEvent_GetComment_0=Module["_emscripten_bind_CommentEvent_GetComment_0"]=Module["asm"]["uK"]).apply(null,arguments)};var _emscripten_bind_CommentEvent_SetComment_1=Module["_emscripten_bind_CommentEvent_SetComment_1"]=function(){return(_emscripten_bind_CommentEvent_SetComment_1=Module["_emscripten_bind_CommentEvent_SetComment_1"]=Module["asm"]["vK"]).apply(null,arguments)};var _emscripten_bind_CommentEvent_SetBackgroundColor_3=Module["_emscripten_bind_CommentEvent_SetBackgroundColor_3"]=function(){return(_emscripten_bind_CommentEvent_SetBackgroundColor_3=Module["_emscripten_bind_CommentEvent_SetBackgroundColor_3"]=Module["asm"]["wK"]).apply(null,arguments)};var _emscripten_bind_CommentEvent_GetBackgroundColorRed_0=Module["_emscripten_bind_CommentEvent_GetBackgroundColorRed_0"]=function(){return(_emscripten_bind_CommentEvent_GetBackgroundColorRed_0=Module["_emscripten_bind_CommentEvent_GetBackgroundColorRed_0"]=Module["asm"]["xK"]).apply(null,arguments)};var _emscripten_bind_CommentEvent_GetBackgroundColorGreen_0=Module["_emscripten_bind_CommentEvent_GetBackgroundColorGreen_0"]=function(){return(_emscripten_bind_CommentEvent_GetBackgroundColorGreen_0=Module["_emscripten_bind_CommentEvent_GetBackgroundColorGreen_0"]=Module["asm"]["yK"]).apply(null,arguments)};var _emscripten_bind_CommentEvent_GetBackgroundColorBlue_0=Module["_emscripten_bind_CommentEvent_GetBackgroundColorBlue_0"]=function(){return(_emscripten_bind_CommentEvent_GetBackgroundColorBlue_0=Module["_emscripten_bind_CommentEvent_GetBackgroundColorBlue_0"]=Module["asm"]["zK"]).apply(null,arguments)};var _emscripten_bind_CommentEvent_SetTextColor_3=Module["_emscripten_bind_CommentEvent_SetTextColor_3"]=function(){return(_emscripten_bind_CommentEvent_SetTextColor_3=Module["_emscripten_bind_CommentEvent_SetTextColor_3"]=Module["asm"]["AK"]).apply(null,arguments)};var _emscripten_bind_CommentEvent_GetTextColorRed_0=Module["_emscripten_bind_CommentEvent_GetTextColorRed_0"]=function(){return(_emscripten_bind_CommentEvent_GetTextColorRed_0=Module["_emscripten_bind_CommentEvent_GetTextColorRed_0"]=Module["asm"]["BK"]).apply(null,arguments)};var _emscripten_bind_CommentEvent_GetTextColorGreen_0=Module["_emscripten_bind_CommentEvent_GetTextColorGreen_0"]=function(){return(_emscripten_bind_CommentEvent_GetTextColorGreen_0=Module["_emscripten_bind_CommentEvent_GetTextColorGreen_0"]=Module["asm"]["CK"]).apply(null,arguments)};var _emscripten_bind_CommentEvent_GetTextColorBlue_0=Module["_emscripten_bind_CommentEvent_GetTextColorBlue_0"]=function(){return(_emscripten_bind_CommentEvent_GetTextColorBlue_0=Module["_emscripten_bind_CommentEvent_GetTextColorBlue_0"]=Module["asm"]["DK"]).apply(null,arguments)};var _emscripten_bind_CommentEvent_Clone_0=Module["_emscripten_bind_CommentEvent_Clone_0"]=function(){return(_emscripten_bind_CommentEvent_Clone_0=Module["_emscripten_bind_CommentEvent_Clone_0"]=Module["asm"]["EK"]).apply(null,arguments)};var _emscripten_bind_CommentEvent_GetType_0=Module["_emscripten_bind_CommentEvent_GetType_0"]=function(){return(_emscripten_bind_CommentEvent_GetType_0=Module["_emscripten_bind_CommentEvent_GetType_0"]=Module["asm"]["FK"]).apply(null,arguments)};var _emscripten_bind_CommentEvent_SetType_1=Module["_emscripten_bind_CommentEvent_SetType_1"]=function(){return(_emscripten_bind_CommentEvent_SetType_1=Module["_emscripten_bind_CommentEvent_SetType_1"]=Module["asm"]["GK"]).apply(null,arguments)};var _emscripten_bind_CommentEvent_IsExecutable_0=Module["_emscripten_bind_CommentEvent_IsExecutable_0"]=function(){return(_emscripten_bind_CommentEvent_IsExecutable_0=Module["_emscripten_bind_CommentEvent_IsExecutable_0"]=Module["asm"]["HK"]).apply(null,arguments)};var _emscripten_bind_CommentEvent_CanHaveSubEvents_0=Module["_emscripten_bind_CommentEvent_CanHaveSubEvents_0"]=function(){return(_emscripten_bind_CommentEvent_CanHaveSubEvents_0=Module["_emscripten_bind_CommentEvent_CanHaveSubEvents_0"]=Module["asm"]["IK"]).apply(null,arguments)};var _emscripten_bind_CommentEvent_HasSubEvents_0=Module["_emscripten_bind_CommentEvent_HasSubEvents_0"]=function(){return(_emscripten_bind_CommentEvent_HasSubEvents_0=Module["_emscripten_bind_CommentEvent_HasSubEvents_0"]=Module["asm"]["JK"]).apply(null,arguments)};var _emscripten_bind_CommentEvent_GetSubEvents_0=Module["_emscripten_bind_CommentEvent_GetSubEvents_0"]=function(){return(_emscripten_bind_CommentEvent_GetSubEvents_0=Module["_emscripten_bind_CommentEvent_GetSubEvents_0"]=Module["asm"]["KK"]).apply(null,arguments)};var _emscripten_bind_CommentEvent_CanHaveVariables_0=Module["_emscripten_bind_CommentEvent_CanHaveVariables_0"]=function(){return(_emscripten_bind_CommentEvent_CanHaveVariables_0=Module["_emscripten_bind_CommentEvent_CanHaveVariables_0"]=Module["asm"]["LK"]).apply(null,arguments)};var _emscripten_bind_CommentEvent_HasVariables_0=Module["_emscripten_bind_CommentEvent_HasVariables_0"]=function(){return(_emscripten_bind_CommentEvent_HasVariables_0=Module["_emscripten_bind_CommentEvent_HasVariables_0"]=Module["asm"]["MK"]).apply(null,arguments)};var _emscripten_bind_CommentEvent_GetVariables_0=Module["_emscripten_bind_CommentEvent_GetVariables_0"]=function(){return(_emscripten_bind_CommentEvent_GetVariables_0=Module["_emscripten_bind_CommentEvent_GetVariables_0"]=Module["asm"]["NK"]).apply(null,arguments)};var _emscripten_bind_CommentEvent_IsDisabled_0=Module["_emscripten_bind_CommentEvent_IsDisabled_0"]=function(){return(_emscripten_bind_CommentEvent_IsDisabled_0=Module["_emscripten_bind_CommentEvent_IsDisabled_0"]=Module["asm"]["OK"]).apply(null,arguments)};var _emscripten_bind_CommentEvent_SetDisabled_1=Module["_emscripten_bind_CommentEvent_SetDisabled_1"]=function(){return(_emscripten_bind_CommentEvent_SetDisabled_1=Module["_emscripten_bind_CommentEvent_SetDisabled_1"]=Module["asm"]["PK"]).apply(null,arguments)};var _emscripten_bind_CommentEvent_IsFolded_0=Module["_emscripten_bind_CommentEvent_IsFolded_0"]=function(){return(_emscripten_bind_CommentEvent_IsFolded_0=Module["_emscripten_bind_CommentEvent_IsFolded_0"]=Module["asm"]["QK"]).apply(null,arguments)};var _emscripten_bind_CommentEvent_SetFolded_1=Module["_emscripten_bind_CommentEvent_SetFolded_1"]=function(){return(_emscripten_bind_CommentEvent_SetFolded_1=Module["_emscripten_bind_CommentEvent_SetFolded_1"]=Module["asm"]["RK"]).apply(null,arguments)};var _emscripten_bind_CommentEvent_SerializeTo_1=Module["_emscripten_bind_CommentEvent_SerializeTo_1"]=function(){return(_emscripten_bind_CommentEvent_SerializeTo_1=Module["_emscripten_bind_CommentEvent_SerializeTo_1"]=Module["asm"]["SK"]).apply(null,arguments)};var _emscripten_bind_CommentEvent_UnserializeFrom_2=Module["_emscripten_bind_CommentEvent_UnserializeFrom_2"]=function(){return(_emscripten_bind_CommentEvent_UnserializeFrom_2=Module["_emscripten_bind_CommentEvent_UnserializeFrom_2"]=Module["asm"]["TK"]).apply(null,arguments)};var _emscripten_bind_CommentEvent_GetAiGeneratedEventId_0=Module["_emscripten_bind_CommentEvent_GetAiGeneratedEventId_0"]=function(){return(_emscripten_bind_CommentEvent_GetAiGeneratedEventId_0=Module["_emscripten_bind_CommentEvent_GetAiGeneratedEventId_0"]=Module["asm"]["UK"]).apply(null,arguments)};var _emscripten_bind_CommentEvent_SetAiGeneratedEventId_1=Module["_emscripten_bind_CommentEvent_SetAiGeneratedEventId_1"]=function(){return(_emscripten_bind_CommentEvent_SetAiGeneratedEventId_1=Module["_emscripten_bind_CommentEvent_SetAiGeneratedEventId_1"]=Module["asm"]["VK"]).apply(null,arguments)};var _emscripten_bind_CommentEvent___destroy___0=Module["_emscripten_bind_CommentEvent___destroy___0"]=function(){return(_emscripten_bind_CommentEvent___destroy___0=Module["_emscripten_bind_CommentEvent___destroy___0"]=Module["asm"]["WK"]).apply(null,arguments)};var _emscripten_bind_GroupEvent_GroupEvent_0=Module["_emscripten_bind_GroupEvent_GroupEvent_0"]=function(){return(_emscripten_bind_GroupEvent_GroupEvent_0=Module["_emscripten_bind_GroupEvent_GroupEvent_0"]=Module["asm"]["XK"]).apply(null,arguments)};var _emscripten_bind_GroupEvent_SetName_1=Module["_emscripten_bind_GroupEvent_SetName_1"]=function(){return(_emscripten_bind_GroupEvent_SetName_1=Module["_emscripten_bind_GroupEvent_SetName_1"]=Module["asm"]["YK"]).apply(null,arguments)};var _emscripten_bind_GroupEvent_GetName_0=Module["_emscripten_bind_GroupEvent_GetName_0"]=function(){return(_emscripten_bind_GroupEvent_GetName_0=Module["_emscripten_bind_GroupEvent_GetName_0"]=Module["asm"]["ZK"]).apply(null,arguments)};var _emscripten_bind_GroupEvent_SetBackgroundColor_3=Module["_emscripten_bind_GroupEvent_SetBackgroundColor_3"]=function(){return(_emscripten_bind_GroupEvent_SetBackgroundColor_3=Module["_emscripten_bind_GroupEvent_SetBackgroundColor_3"]=Module["asm"]["_K"]).apply(null,arguments)};var _emscripten_bind_GroupEvent_GetBackgroundColorR_0=Module["_emscripten_bind_GroupEvent_GetBackgroundColorR_0"]=function(){return(_emscripten_bind_GroupEvent_GetBackgroundColorR_0=Module["_emscripten_bind_GroupEvent_GetBackgroundColorR_0"]=Module["asm"]["$K"]).apply(null,arguments)};var _emscripten_bind_GroupEvent_GetBackgroundColorG_0=Module["_emscripten_bind_GroupEvent_GetBackgroundColorG_0"]=function(){return(_emscripten_bind_GroupEvent_GetBackgroundColorG_0=Module["_emscripten_bind_GroupEvent_GetBackgroundColorG_0"]=Module["asm"]["aL"]).apply(null,arguments)};var _emscripten_bind_GroupEvent_GetBackgroundColorB_0=Module["_emscripten_bind_GroupEvent_GetBackgroundColorB_0"]=function(){return(_emscripten_bind_GroupEvent_GetBackgroundColorB_0=Module["_emscripten_bind_GroupEvent_GetBackgroundColorB_0"]=Module["asm"]["bL"]).apply(null,arguments)};var _emscripten_bind_GroupEvent_SetSource_1=Module["_emscripten_bind_GroupEvent_SetSource_1"]=function(){return(_emscripten_bind_GroupEvent_SetSource_1=Module["_emscripten_bind_GroupEvent_SetSource_1"]=Module["asm"]["cL"]).apply(null,arguments)};var _emscripten_bind_GroupEvent_GetSource_0=Module["_emscripten_bind_GroupEvent_GetSource_0"]=function(){return(_emscripten_bind_GroupEvent_GetSource_0=Module["_emscripten_bind_GroupEvent_GetSource_0"]=Module["asm"]["dL"]).apply(null,arguments)};var _emscripten_bind_GroupEvent_GetCreationParameters_0=Module["_emscripten_bind_GroupEvent_GetCreationParameters_0"]=function(){return(_emscripten_bind_GroupEvent_GetCreationParameters_0=Module["_emscripten_bind_GroupEvent_GetCreationParameters_0"]=Module["asm"]["eL"]).apply(null,arguments)};var _emscripten_bind_GroupEvent_GetCreationTimestamp_0=Module["_emscripten_bind_GroupEvent_GetCreationTimestamp_0"]=function(){return(_emscripten_bind_GroupEvent_GetCreationTimestamp_0=Module["_emscripten_bind_GroupEvent_GetCreationTimestamp_0"]=Module["asm"]["fL"]).apply(null,arguments)};var _emscripten_bind_GroupEvent_SetCreationTimestamp_1=Module["_emscripten_bind_GroupEvent_SetCreationTimestamp_1"]=function(){return(_emscripten_bind_GroupEvent_SetCreationTimestamp_1=Module["_emscripten_bind_GroupEvent_SetCreationTimestamp_1"]=Module["asm"]["gL"]).apply(null,arguments)};var _emscripten_bind_GroupEvent_Clone_0=Module["_emscripten_bind_GroupEvent_Clone_0"]=function(){return(_emscripten_bind_GroupEvent_Clone_0=Module["_emscripten_bind_GroupEvent_Clone_0"]=Module["asm"]["hL"]).apply(null,arguments)};var _emscripten_bind_GroupEvent_GetType_0=Module["_emscripten_bind_GroupEvent_GetType_0"]=function(){return(_emscripten_bind_GroupEvent_GetType_0=Module["_emscripten_bind_GroupEvent_GetType_0"]=Module["asm"]["iL"]).apply(null,arguments)};var _emscripten_bind_GroupEvent_SetType_1=Module["_emscripten_bind_GroupEvent_SetType_1"]=function(){return(_emscripten_bind_GroupEvent_SetType_1=Module["_emscripten_bind_GroupEvent_SetType_1"]=Module["asm"]["jL"]).apply(null,arguments)};var _emscripten_bind_GroupEvent_IsExecutable_0=Module["_emscripten_bind_GroupEvent_IsExecutable_0"]=function(){return(_emscripten_bind_GroupEvent_IsExecutable_0=Module["_emscripten_bind_GroupEvent_IsExecutable_0"]=Module["asm"]["kL"]).apply(null,arguments)};var _emscripten_bind_GroupEvent_CanHaveSubEvents_0=Module["_emscripten_bind_GroupEvent_CanHaveSubEvents_0"]=function(){return(_emscripten_bind_GroupEvent_CanHaveSubEvents_0=Module["_emscripten_bind_GroupEvent_CanHaveSubEvents_0"]=Module["asm"]["lL"]).apply(null,arguments)};var _emscripten_bind_GroupEvent_HasSubEvents_0=Module["_emscripten_bind_GroupEvent_HasSubEvents_0"]=function(){return(_emscripten_bind_GroupEvent_HasSubEvents_0=Module["_emscripten_bind_GroupEvent_HasSubEvents_0"]=Module["asm"]["mL"]).apply(null,arguments)};var _emscripten_bind_GroupEvent_GetSubEvents_0=Module["_emscripten_bind_GroupEvent_GetSubEvents_0"]=function(){return(_emscripten_bind_GroupEvent_GetSubEvents_0=Module["_emscripten_bind_GroupEvent_GetSubEvents_0"]=Module["asm"]["nL"]).apply(null,arguments)};var _emscripten_bind_GroupEvent_CanHaveVariables_0=Module["_emscripten_bind_GroupEvent_CanHaveVariables_0"]=function(){return(_emscripten_bind_GroupEvent_CanHaveVariables_0=Module["_emscripten_bind_GroupEvent_CanHaveVariables_0"]=Module["asm"]["oL"]).apply(null,arguments)};var _emscripten_bind_GroupEvent_HasVariables_0=Module["_emscripten_bind_GroupEvent_HasVariables_0"]=function(){return(_emscripten_bind_GroupEvent_HasVariables_0=Module["_emscripten_bind_GroupEvent_HasVariables_0"]=Module["asm"]["pL"]).apply(null,arguments)};var _emscripten_bind_GroupEvent_GetVariables_0=Module["_emscripten_bind_GroupEvent_GetVariables_0"]=function(){return(_emscripten_bind_GroupEvent_GetVariables_0=Module["_emscripten_bind_GroupEvent_GetVariables_0"]=Module["asm"]["qL"]).apply(null,arguments)};var _emscripten_bind_GroupEvent_IsDisabled_0=Module["_emscripten_bind_GroupEvent_IsDisabled_0"]=function(){return(_emscripten_bind_GroupEvent_IsDisabled_0=Module["_emscripten_bind_GroupEvent_IsDisabled_0"]=Module["asm"]["rL"]).apply(null,arguments)};var _emscripten_bind_GroupEvent_SetDisabled_1=Module["_emscripten_bind_GroupEvent_SetDisabled_1"]=function(){return(_emscripten_bind_GroupEvent_SetDisabled_1=Module["_emscripten_bind_GroupEvent_SetDisabled_1"]=Module["asm"]["sL"]).apply(null,arguments)};var _emscripten_bind_GroupEvent_IsFolded_0=Module["_emscripten_bind_GroupEvent_IsFolded_0"]=function(){return(_emscripten_bind_GroupEvent_IsFolded_0=Module["_emscripten_bind_GroupEvent_IsFolded_0"]=Module["asm"]["tL"]).apply(null,arguments)};var _emscripten_bind_GroupEvent_SetFolded_1=Module["_emscripten_bind_GroupEvent_SetFolded_1"]=function(){return(_emscripten_bind_GroupEvent_SetFolded_1=Module["_emscripten_bind_GroupEvent_SetFolded_1"]=Module["asm"]["uL"]).apply(null,arguments)};var _emscripten_bind_GroupEvent_SerializeTo_1=Module["_emscripten_bind_GroupEvent_SerializeTo_1"]=function(){return(_emscripten_bind_GroupEvent_SerializeTo_1=Module["_emscripten_bind_GroupEvent_SerializeTo_1"]=Module["asm"]["vL"]).apply(null,arguments)};var _emscripten_bind_GroupEvent_UnserializeFrom_2=Module["_emscripten_bind_GroupEvent_UnserializeFrom_2"]=function(){return(_emscripten_bind_GroupEvent_UnserializeFrom_2=Module["_emscripten_bind_GroupEvent_UnserializeFrom_2"]=Module["asm"]["wL"]).apply(null,arguments)};var _emscripten_bind_GroupEvent_GetAiGeneratedEventId_0=Module["_emscripten_bind_GroupEvent_GetAiGeneratedEventId_0"]=function(){return(_emscripten_bind_GroupEvent_GetAiGeneratedEventId_0=Module["_emscripten_bind_GroupEvent_GetAiGeneratedEventId_0"]=Module["asm"]["xL"]).apply(null,arguments)};var _emscripten_bind_GroupEvent_SetAiGeneratedEventId_1=Module["_emscripten_bind_GroupEvent_SetAiGeneratedEventId_1"]=function(){return(_emscripten_bind_GroupEvent_SetAiGeneratedEventId_1=Module["_emscripten_bind_GroupEvent_SetAiGeneratedEventId_1"]=Module["asm"]["yL"]).apply(null,arguments)};var _emscripten_bind_GroupEvent___destroy___0=Module["_emscripten_bind_GroupEvent___destroy___0"]=function(){return(_emscripten_bind_GroupEvent___destroy___0=Module["_emscripten_bind_GroupEvent___destroy___0"]=Module["asm"]["zL"]).apply(null,arguments)};var _emscripten_bind_LinkEvent_LinkEvent_0=Module["_emscripten_bind_LinkEvent_LinkEvent_0"]=function(){return(_emscripten_bind_LinkEvent_LinkEvent_0=Module["_emscripten_bind_LinkEvent_LinkEvent_0"]=Module["asm"]["AL"]).apply(null,arguments)};var _emscripten_bind_LinkEvent_SetTarget_1=Module["_emscripten_bind_LinkEvent_SetTarget_1"]=function(){return(_emscripten_bind_LinkEvent_SetTarget_1=Module["_emscripten_bind_LinkEvent_SetTarget_1"]=Module["asm"]["BL"]).apply(null,arguments)};var _emscripten_bind_LinkEvent_GetTarget_0=Module["_emscripten_bind_LinkEvent_GetTarget_0"]=function(){return(_emscripten_bind_LinkEvent_GetTarget_0=Module["_emscripten_bind_LinkEvent_GetTarget_0"]=Module["asm"]["CL"]).apply(null,arguments)};var _emscripten_bind_LinkEvent_GetIncludeConfig_0=Module["_emscripten_bind_LinkEvent_GetIncludeConfig_0"]=function(){return(_emscripten_bind_LinkEvent_GetIncludeConfig_0=Module["_emscripten_bind_LinkEvent_GetIncludeConfig_0"]=Module["asm"]["DL"]).apply(null,arguments)};var _emscripten_bind_LinkEvent_SetIncludeAllEvents_0=Module["_emscripten_bind_LinkEvent_SetIncludeAllEvents_0"]=function(){return(_emscripten_bind_LinkEvent_SetIncludeAllEvents_0=Module["_emscripten_bind_LinkEvent_SetIncludeAllEvents_0"]=Module["asm"]["EL"]).apply(null,arguments)};var _emscripten_bind_LinkEvent_SetIncludeEventsGroup_1=Module["_emscripten_bind_LinkEvent_SetIncludeEventsGroup_1"]=function(){return(_emscripten_bind_LinkEvent_SetIncludeEventsGroup_1=Module["_emscripten_bind_LinkEvent_SetIncludeEventsGroup_1"]=Module["asm"]["FL"]).apply(null,arguments)};var _emscripten_bind_LinkEvent_GetEventsGroupName_0=Module["_emscripten_bind_LinkEvent_GetEventsGroupName_0"]=function(){return(_emscripten_bind_LinkEvent_GetEventsGroupName_0=Module["_emscripten_bind_LinkEvent_GetEventsGroupName_0"]=Module["asm"]["GL"]).apply(null,arguments)};var _emscripten_bind_LinkEvent_SetIncludeStartAndEnd_2=Module["_emscripten_bind_LinkEvent_SetIncludeStartAndEnd_2"]=function(){return(_emscripten_bind_LinkEvent_SetIncludeStartAndEnd_2=Module["_emscripten_bind_LinkEvent_SetIncludeStartAndEnd_2"]=Module["asm"]["HL"]).apply(null,arguments)};var _emscripten_bind_LinkEvent_GetIncludeStart_0=Module["_emscripten_bind_LinkEvent_GetIncludeStart_0"]=function(){return(_emscripten_bind_LinkEvent_GetIncludeStart_0=Module["_emscripten_bind_LinkEvent_GetIncludeStart_0"]=Module["asm"]["IL"]).apply(null,arguments)};var _emscripten_bind_LinkEvent_GetIncludeEnd_0=Module["_emscripten_bind_LinkEvent_GetIncludeEnd_0"]=function(){return(_emscripten_bind_LinkEvent_GetIncludeEnd_0=Module["_emscripten_bind_LinkEvent_GetIncludeEnd_0"]=Module["asm"]["JL"]).apply(null,arguments)};var _emscripten_bind_LinkEvent_Clone_0=Module["_emscripten_bind_LinkEvent_Clone_0"]=function(){return(_emscripten_bind_LinkEvent_Clone_0=Module["_emscripten_bind_LinkEvent_Clone_0"]=Module["asm"]["KL"]).apply(null,arguments)};var _emscripten_bind_LinkEvent_GetType_0=Module["_emscripten_bind_LinkEvent_GetType_0"]=function(){return(_emscripten_bind_LinkEvent_GetType_0=Module["_emscripten_bind_LinkEvent_GetType_0"]=Module["asm"]["LL"]).apply(null,arguments)};var _emscripten_bind_LinkEvent_SetType_1=Module["_emscripten_bind_LinkEvent_SetType_1"]=function(){return(_emscripten_bind_LinkEvent_SetType_1=Module["_emscripten_bind_LinkEvent_SetType_1"]=Module["asm"]["ML"]).apply(null,arguments)};var _emscripten_bind_LinkEvent_IsExecutable_0=Module["_emscripten_bind_LinkEvent_IsExecutable_0"]=function(){return(_emscripten_bind_LinkEvent_IsExecutable_0=Module["_emscripten_bind_LinkEvent_IsExecutable_0"]=Module["asm"]["NL"]).apply(null,arguments)};var _emscripten_bind_LinkEvent_CanHaveSubEvents_0=Module["_emscripten_bind_LinkEvent_CanHaveSubEvents_0"]=function(){return(_emscripten_bind_LinkEvent_CanHaveSubEvents_0=Module["_emscripten_bind_LinkEvent_CanHaveSubEvents_0"]=Module["asm"]["OL"]).apply(null,arguments)};var _emscripten_bind_LinkEvent_HasSubEvents_0=Module["_emscripten_bind_LinkEvent_HasSubEvents_0"]=function(){return(_emscripten_bind_LinkEvent_HasSubEvents_0=Module["_emscripten_bind_LinkEvent_HasSubEvents_0"]=Module["asm"]["PL"]).apply(null,arguments)};var _emscripten_bind_LinkEvent_GetSubEvents_0=Module["_emscripten_bind_LinkEvent_GetSubEvents_0"]=function(){return(_emscripten_bind_LinkEvent_GetSubEvents_0=Module["_emscripten_bind_LinkEvent_GetSubEvents_0"]=Module["asm"]["QL"]).apply(null,arguments)};var _emscripten_bind_LinkEvent_CanHaveVariables_0=Module["_emscripten_bind_LinkEvent_CanHaveVariables_0"]=function(){return(_emscripten_bind_LinkEvent_CanHaveVariables_0=Module["_emscripten_bind_LinkEvent_CanHaveVariables_0"]=Module["asm"]["RL"]).apply(null,arguments)};var _emscripten_bind_LinkEvent_HasVariables_0=Module["_emscripten_bind_LinkEvent_HasVariables_0"]=function(){return(_emscripten_bind_LinkEvent_HasVariables_0=Module["_emscripten_bind_LinkEvent_HasVariables_0"]=Module["asm"]["SL"]).apply(null,arguments)};var _emscripten_bind_LinkEvent_GetVariables_0=Module["_emscripten_bind_LinkEvent_GetVariables_0"]=function(){return(_emscripten_bind_LinkEvent_GetVariables_0=Module["_emscripten_bind_LinkEvent_GetVariables_0"]=Module["asm"]["TL"]).apply(null,arguments)};var _emscripten_bind_LinkEvent_IsDisabled_0=Module["_emscripten_bind_LinkEvent_IsDisabled_0"]=function(){return(_emscripten_bind_LinkEvent_IsDisabled_0=Module["_emscripten_bind_LinkEvent_IsDisabled_0"]=Module["asm"]["UL"]).apply(null,arguments)};var _emscripten_bind_LinkEvent_SetDisabled_1=Module["_emscripten_bind_LinkEvent_SetDisabled_1"]=function(){return(_emscripten_bind_LinkEvent_SetDisabled_1=Module["_emscripten_bind_LinkEvent_SetDisabled_1"]=Module["asm"]["VL"]).apply(null,arguments)};var _emscripten_bind_LinkEvent_IsFolded_0=Module["_emscripten_bind_LinkEvent_IsFolded_0"]=function(){return(_emscripten_bind_LinkEvent_IsFolded_0=Module["_emscripten_bind_LinkEvent_IsFolded_0"]=Module["asm"]["WL"]).apply(null,arguments)};var _emscripten_bind_LinkEvent_SetFolded_1=Module["_emscripten_bind_LinkEvent_SetFolded_1"]=function(){return(_emscripten_bind_LinkEvent_SetFolded_1=Module["_emscripten_bind_LinkEvent_SetFolded_1"]=Module["asm"]["XL"]).apply(null,arguments)};var _emscripten_bind_LinkEvent_SerializeTo_1=Module["_emscripten_bind_LinkEvent_SerializeTo_1"]=function(){return(_emscripten_bind_LinkEvent_SerializeTo_1=Module["_emscripten_bind_LinkEvent_SerializeTo_1"]=Module["asm"]["YL"]).apply(null,arguments)};var _emscripten_bind_LinkEvent_UnserializeFrom_2=Module["_emscripten_bind_LinkEvent_UnserializeFrom_2"]=function(){return(_emscripten_bind_LinkEvent_UnserializeFrom_2=Module["_emscripten_bind_LinkEvent_UnserializeFrom_2"]=Module["asm"]["ZL"]).apply(null,arguments)};var _emscripten_bind_LinkEvent_GetAiGeneratedEventId_0=Module["_emscripten_bind_LinkEvent_GetAiGeneratedEventId_0"]=function(){return(_emscripten_bind_LinkEvent_GetAiGeneratedEventId_0=Module["_emscripten_bind_LinkEvent_GetAiGeneratedEventId_0"]=Module["asm"]["_L"]).apply(null,arguments)};var _emscripten_bind_LinkEvent_SetAiGeneratedEventId_1=Module["_emscripten_bind_LinkEvent_SetAiGeneratedEventId_1"]=function(){return(_emscripten_bind_LinkEvent_SetAiGeneratedEventId_1=Module["_emscripten_bind_LinkEvent_SetAiGeneratedEventId_1"]=Module["asm"]["$L"]).apply(null,arguments)};var _emscripten_bind_LinkEvent___destroy___0=Module["_emscripten_bind_LinkEvent___destroy___0"]=function(){return(_emscripten_bind_LinkEvent___destroy___0=Module["_emscripten_bind_LinkEvent___destroy___0"]=Module["asm"]["aM"]).apply(null,arguments)};var _emscripten_bind_EventsRemover_EventsRemover_0=Module["_emscripten_bind_EventsRemover_EventsRemover_0"]=function(){return(_emscripten_bind_EventsRemover_EventsRemover_0=Module["_emscripten_bind_EventsRemover_EventsRemover_0"]=Module["asm"]["bM"]).apply(null,arguments)};var _emscripten_bind_EventsRemover_AddEventToRemove_1=Module["_emscripten_bind_EventsRemover_AddEventToRemove_1"]=function(){return(_emscripten_bind_EventsRemover_AddEventToRemove_1=Module["_emscripten_bind_EventsRemover_AddEventToRemove_1"]=Module["asm"]["cM"]).apply(null,arguments)};var _emscripten_bind_EventsRemover_AddInstructionToRemove_1=Module["_emscripten_bind_EventsRemover_AddInstructionToRemove_1"]=function(){return(_emscripten_bind_EventsRemover_AddInstructionToRemove_1=Module["_emscripten_bind_EventsRemover_AddInstructionToRemove_1"]=Module["asm"]["dM"]).apply(null,arguments)};var _emscripten_bind_EventsRemover_Launch_1=Module["_emscripten_bind_EventsRemover_Launch_1"]=function(){return(_emscripten_bind_EventsRemover_Launch_1=Module["_emscripten_bind_EventsRemover_Launch_1"]=Module["asm"]["eM"]).apply(null,arguments)};var _emscripten_bind_EventsRemover___destroy___0=Module["_emscripten_bind_EventsRemover___destroy___0"]=function(){return(_emscripten_bind_EventsRemover___destroy___0=Module["_emscripten_bind_EventsRemover___destroy___0"]=Module["asm"]["fM"]).apply(null,arguments)};var _emscripten_bind_EventsListUnfolder_STATIC_UnfoldWhenContaining_2=Module["_emscripten_bind_EventsListUnfolder_STATIC_UnfoldWhenContaining_2"]=function(){return(_emscripten_bind_EventsListUnfolder_STATIC_UnfoldWhenContaining_2=Module["_emscripten_bind_EventsListUnfolder_STATIC_UnfoldWhenContaining_2"]=Module["asm"]["gM"]).apply(null,arguments)};var _emscripten_bind_EventsListUnfolder_STATIC_FoldAll_1=Module["_emscripten_bind_EventsListUnfolder_STATIC_FoldAll_1"]=function(){return(_emscripten_bind_EventsListUnfolder_STATIC_FoldAll_1=Module["_emscripten_bind_EventsListUnfolder_STATIC_FoldAll_1"]=Module["asm"]["hM"]).apply(null,arguments)};var _emscripten_bind_EventsListUnfolder_STATIC_UnfoldToLevel_2=Module["_emscripten_bind_EventsListUnfolder_STATIC_UnfoldToLevel_2"]=function(){return(_emscripten_bind_EventsListUnfolder_STATIC_UnfoldToLevel_2=Module["_emscripten_bind_EventsListUnfolder_STATIC_UnfoldToLevel_2"]=Module["asm"]["iM"]).apply(null,arguments)};var _emscripten_bind_EventsListUnfolder_STATIC_UnfoldToLevel_3=Module["_emscripten_bind_EventsListUnfolder_STATIC_UnfoldToLevel_3"]=function(){return(_emscripten_bind_EventsListUnfolder_STATIC_UnfoldToLevel_3=Module["_emscripten_bind_EventsListUnfolder_STATIC_UnfoldToLevel_3"]=Module["asm"]["jM"]).apply(null,arguments)};var _emscripten_bind_EventsListUnfolder___destroy___0=Module["_emscripten_bind_EventsListUnfolder___destroy___0"]=function(){return(_emscripten_bind_EventsListUnfolder___destroy___0=Module["_emscripten_bind_EventsListUnfolder___destroy___0"]=Module["asm"]["kM"]).apply(null,arguments)};var _emscripten_bind_EventsSearchResult_IsEventsListValid_0=Module["_emscripten_bind_EventsSearchResult_IsEventsListValid_0"]=function(){return(_emscripten_bind_EventsSearchResult_IsEventsListValid_0=Module["_emscripten_bind_EventsSearchResult_IsEventsListValid_0"]=Module["asm"]["lM"]).apply(null,arguments)};var _emscripten_bind_EventsSearchResult_GetEventsList_0=Module["_emscripten_bind_EventsSearchResult_GetEventsList_0"]=function(){return(_emscripten_bind_EventsSearchResult_GetEventsList_0=Module["_emscripten_bind_EventsSearchResult_GetEventsList_0"]=Module["asm"]["mM"]).apply(null,arguments)};var _emscripten_bind_EventsSearchResult_GetPositionInList_0=Module["_emscripten_bind_EventsSearchResult_GetPositionInList_0"]=function(){return(_emscripten_bind_EventsSearchResult_GetPositionInList_0=Module["_emscripten_bind_EventsSearchResult_GetPositionInList_0"]=Module["asm"]["nM"]).apply(null,arguments)};var _emscripten_bind_EventsSearchResult_IsEventValid_0=Module["_emscripten_bind_EventsSearchResult_IsEventValid_0"]=function(){return(_emscripten_bind_EventsSearchResult_IsEventValid_0=Module["_emscripten_bind_EventsSearchResult_IsEventValid_0"]=Module["asm"]["oM"]).apply(null,arguments)};var _emscripten_bind_EventsSearchResult_GetEvent_0=Module["_emscripten_bind_EventsSearchResult_GetEvent_0"]=function(){return(_emscripten_bind_EventsSearchResult_GetEvent_0=Module["_emscripten_bind_EventsSearchResult_GetEvent_0"]=Module["asm"]["pM"]).apply(null,arguments)};var _emscripten_bind_EventsSearchResult___destroy___0=Module["_emscripten_bind_EventsSearchResult___destroy___0"]=function(){return(_emscripten_bind_EventsSearchResult___destroy___0=Module["_emscripten_bind_EventsSearchResult___destroy___0"]=Module["asm"]["qM"]).apply(null,arguments)};var _emscripten_bind_VectorEventsSearchResult_VectorEventsSearchResult_0=Module["_emscripten_bind_VectorEventsSearchResult_VectorEventsSearchResult_0"]=function(){return(_emscripten_bind_VectorEventsSearchResult_VectorEventsSearchResult_0=Module["_emscripten_bind_VectorEventsSearchResult_VectorEventsSearchResult_0"]=Module["asm"]["rM"]).apply(null,arguments)};var _emscripten_bind_VectorEventsSearchResult_CLONE_VectorEventsSearchResult_0=Module["_emscripten_bind_VectorEventsSearchResult_CLONE_VectorEventsSearchResult_0"]=function(){return(_emscripten_bind_VectorEventsSearchResult_CLONE_VectorEventsSearchResult_0=Module["_emscripten_bind_VectorEventsSearchResult_CLONE_VectorEventsSearchResult_0"]=Module["asm"]["sM"]).apply(null,arguments)};var _emscripten_bind_VectorEventsSearchResult_push_back_1=Module["_emscripten_bind_VectorEventsSearchResult_push_back_1"]=function(){return(_emscripten_bind_VectorEventsSearchResult_push_back_1=Module["_emscripten_bind_VectorEventsSearchResult_push_back_1"]=Module["asm"]["tM"]).apply(null,arguments)};var _emscripten_bind_VectorEventsSearchResult_resize_1=Module["_emscripten_bind_VectorEventsSearchResult_resize_1"]=function(){return(_emscripten_bind_VectorEventsSearchResult_resize_1=Module["_emscripten_bind_VectorEventsSearchResult_resize_1"]=Module["asm"]["uM"]).apply(null,arguments)};var _emscripten_bind_VectorEventsSearchResult_size_0=Module["_emscripten_bind_VectorEventsSearchResult_size_0"]=function(){return(_emscripten_bind_VectorEventsSearchResult_size_0=Module["_emscripten_bind_VectorEventsSearchResult_size_0"]=Module["asm"]["vM"]).apply(null,arguments)};var _emscripten_bind_VectorEventsSearchResult_at_1=Module["_emscripten_bind_VectorEventsSearchResult_at_1"]=function(){return(_emscripten_bind_VectorEventsSearchResult_at_1=Module["_emscripten_bind_VectorEventsSearchResult_at_1"]=Module["asm"]["wM"]).apply(null,arguments)};var _emscripten_bind_VectorEventsSearchResult_WRAPPED_set_2=Module["_emscripten_bind_VectorEventsSearchResult_WRAPPED_set_2"]=function(){return(_emscripten_bind_VectorEventsSearchResult_WRAPPED_set_2=Module["_emscripten_bind_VectorEventsSearchResult_WRAPPED_set_2"]=Module["asm"]["xM"]).apply(null,arguments)};var _emscripten_bind_VectorEventsSearchResult_clear_0=Module["_emscripten_bind_VectorEventsSearchResult_clear_0"]=function(){return(_emscripten_bind_VectorEventsSearchResult_clear_0=Module["_emscripten_bind_VectorEventsSearchResult_clear_0"]=Module["asm"]["yM"]).apply(null,arguments)};var _emscripten_bind_VectorEventsSearchResult___destroy___0=Module["_emscripten_bind_VectorEventsSearchResult___destroy___0"]=function(){return(_emscripten_bind_VectorEventsSearchResult___destroy___0=Module["_emscripten_bind_VectorEventsSearchResult___destroy___0"]=Module["asm"]["zM"]).apply(null,arguments)};var _emscripten_bind_EventsRefactorer_STATIC_RenameObjectInEvents_6=Module["_emscripten_bind_EventsRefactorer_STATIC_RenameObjectInEvents_6"]=function(){return(_emscripten_bind_EventsRefactorer_STATIC_RenameObjectInEvents_6=Module["_emscripten_bind_EventsRefactorer_STATIC_RenameObjectInEvents_6"]=Module["asm"]["AM"]).apply(null,arguments)};var _emscripten_bind_EventsRefactorer_STATIC_ReplaceStringInEvents_9=Module["_emscripten_bind_EventsRefactorer_STATIC_ReplaceStringInEvents_9"]=function(){return(_emscripten_bind_EventsRefactorer_STATIC_ReplaceStringInEvents_9=Module["_emscripten_bind_EventsRefactorer_STATIC_ReplaceStringInEvents_9"]=Module["asm"]["BM"]).apply(null,arguments)};var _emscripten_bind_EventsRefactorer_STATIC_SearchInEvents_9=Module["_emscripten_bind_EventsRefactorer_STATIC_SearchInEvents_9"]=function(){return(_emscripten_bind_EventsRefactorer_STATIC_SearchInEvents_9=Module["_emscripten_bind_EventsRefactorer_STATIC_SearchInEvents_9"]=Module["asm"]["CM"]).apply(null,arguments)};var _emscripten_bind_EventsRefactorer___destroy___0=Module["_emscripten_bind_EventsRefactorer___destroy___0"]=function(){return(_emscripten_bind_EventsRefactorer___destroy___0=Module["_emscripten_bind_EventsRefactorer___destroy___0"]=Module["asm"]["DM"]).apply(null,arguments)};var _emscripten_bind_UnfilledRequiredBehaviorPropertyProblem_GetSourceProject_0=Module["_emscripten_bind_UnfilledRequiredBehaviorPropertyProblem_GetSourceProject_0"]=function(){return(_emscripten_bind_UnfilledRequiredBehaviorPropertyProblem_GetSourceProject_0=Module["_emscripten_bind_UnfilledRequiredBehaviorPropertyProblem_GetSourceProject_0"]=Module["asm"]["EM"]).apply(null,arguments)};var _emscripten_bind_UnfilledRequiredBehaviorPropertyProblem_GetSourceObject_0=Module["_emscripten_bind_UnfilledRequiredBehaviorPropertyProblem_GetSourceObject_0"]=function(){return(_emscripten_bind_UnfilledRequiredBehaviorPropertyProblem_GetSourceObject_0=Module["_emscripten_bind_UnfilledRequiredBehaviorPropertyProblem_GetSourceObject_0"]=Module["asm"]["FM"]).apply(null,arguments)};var _emscripten_bind_UnfilledRequiredBehaviorPropertyProblem_GetSourceBehaviorContent_0=Module["_emscripten_bind_UnfilledRequiredBehaviorPropertyProblem_GetSourceBehaviorContent_0"]=function(){return(_emscripten_bind_UnfilledRequiredBehaviorPropertyProblem_GetSourceBehaviorContent_0=Module["_emscripten_bind_UnfilledRequiredBehaviorPropertyProblem_GetSourceBehaviorContent_0"]=Module["asm"]["GM"]).apply(null,arguments)};var _emscripten_bind_UnfilledRequiredBehaviorPropertyProblem_GetSourcePropertyName_0=Module["_emscripten_bind_UnfilledRequiredBehaviorPropertyProblem_GetSourcePropertyName_0"]=function(){return(_emscripten_bind_UnfilledRequiredBehaviorPropertyProblem_GetSourcePropertyName_0=Module["_emscripten_bind_UnfilledRequiredBehaviorPropertyProblem_GetSourcePropertyName_0"]=Module["asm"]["HM"]).apply(null,arguments)};var _emscripten_bind_UnfilledRequiredBehaviorPropertyProblem_GetExpectedBehaviorTypeName_0=Module["_emscripten_bind_UnfilledRequiredBehaviorPropertyProblem_GetExpectedBehaviorTypeName_0"]=function(){return(_emscripten_bind_UnfilledRequiredBehaviorPropertyProblem_GetExpectedBehaviorTypeName_0=Module["_emscripten_bind_UnfilledRequiredBehaviorPropertyProblem_GetExpectedBehaviorTypeName_0"]=Module["asm"]["IM"]).apply(null,arguments)};var _emscripten_bind_UnfilledRequiredBehaviorPropertyProblem___destroy___0=Module["_emscripten_bind_UnfilledRequiredBehaviorPropertyProblem___destroy___0"]=function(){return(_emscripten_bind_UnfilledRequiredBehaviorPropertyProblem___destroy___0=Module["_emscripten_bind_UnfilledRequiredBehaviorPropertyProblem___destroy___0"]=Module["asm"]["JM"]).apply(null,arguments)};var _emscripten_bind_VectorUnfilledRequiredBehaviorPropertyProblem_size_0=Module["_emscripten_bind_VectorUnfilledRequiredBehaviorPropertyProblem_size_0"]=function(){return(_emscripten_bind_VectorUnfilledRequiredBehaviorPropertyProblem_size_0=Module["_emscripten_bind_VectorUnfilledRequiredBehaviorPropertyProblem_size_0"]=Module["asm"]["KM"]).apply(null,arguments)};var _emscripten_bind_VectorUnfilledRequiredBehaviorPropertyProblem_at_1=Module["_emscripten_bind_VectorUnfilledRequiredBehaviorPropertyProblem_at_1"]=function(){return(_emscripten_bind_VectorUnfilledRequiredBehaviorPropertyProblem_at_1=Module["_emscripten_bind_VectorUnfilledRequiredBehaviorPropertyProblem_at_1"]=Module["asm"]["LM"]).apply(null,arguments)};var _emscripten_bind_VectorUnfilledRequiredBehaviorPropertyProblem___destroy___0=Module["_emscripten_bind_VectorUnfilledRequiredBehaviorPropertyProblem___destroy___0"]=function(){return(_emscripten_bind_VectorUnfilledRequiredBehaviorPropertyProblem___destroy___0=Module["_emscripten_bind_VectorUnfilledRequiredBehaviorPropertyProblem___destroy___0"]=Module["asm"]["MM"]).apply(null,arguments)};var _emscripten_bind_ProjectBrowserHelper_STATIC_ExposeProjectEvents_2=Module["_emscripten_bind_ProjectBrowserHelper_STATIC_ExposeProjectEvents_2"]=function(){return(_emscripten_bind_ProjectBrowserHelper_STATIC_ExposeProjectEvents_2=Module["_emscripten_bind_ProjectBrowserHelper_STATIC_ExposeProjectEvents_2"]=Module["asm"]["NM"]).apply(null,arguments)};var _emscripten_bind_ProjectBrowserHelper_STATIC_ExposeProjectEventsWithoutExtensions_2=Module["_emscripten_bind_ProjectBrowserHelper_STATIC_ExposeProjectEventsWithoutExtensions_2"]=function(){return(_emscripten_bind_ProjectBrowserHelper_STATIC_ExposeProjectEventsWithoutExtensions_2=Module["_emscripten_bind_ProjectBrowserHelper_STATIC_ExposeProjectEventsWithoutExtensions_2"]=Module["asm"]["OM"]).apply(null,arguments)};var _emscripten_bind_ProjectBrowserHelper_STATIC_ExposeProjectObjects_2=Module["_emscripten_bind_ProjectBrowserHelper_STATIC_ExposeProjectObjects_2"]=function(){return(_emscripten_bind_ProjectBrowserHelper_STATIC_ExposeProjectObjects_2=Module["_emscripten_bind_ProjectBrowserHelper_STATIC_ExposeProjectObjects_2"]=Module["asm"]["PM"]).apply(null,arguments)};var _emscripten_bind_ProjectBrowserHelper_STATIC_ExposeEventsFunctionsExtensionEvents_3=Module["_emscripten_bind_ProjectBrowserHelper_STATIC_ExposeEventsFunctionsExtensionEvents_3"]=function(){return(_emscripten_bind_ProjectBrowserHelper_STATIC_ExposeEventsFunctionsExtensionEvents_3=Module["_emscripten_bind_ProjectBrowserHelper_STATIC_ExposeEventsFunctionsExtensionEvents_3"]=Module["asm"]["QM"]).apply(null,arguments)};var _emscripten_bind_ProjectBrowserHelper___destroy___0=Module["_emscripten_bind_ProjectBrowserHelper___destroy___0"]=function(){return(_emscripten_bind_ProjectBrowserHelper___destroy___0=Module["_emscripten_bind_ProjectBrowserHelper___destroy___0"]=Module["asm"]["RM"]).apply(null,arguments)};var _emscripten_bind_ResourceExposer_STATIC_ExposeWholeProjectResources_2=Module["_emscripten_bind_ResourceExposer_STATIC_ExposeWholeProjectResources_2"]=function(){return(_emscripten_bind_ResourceExposer_STATIC_ExposeWholeProjectResources_2=Module["_emscripten_bind_ResourceExposer_STATIC_ExposeWholeProjectResources_2"]=Module["asm"]["SM"]).apply(null,arguments)};var _emscripten_bind_ResourceExposer___destroy___0=Module["_emscripten_bind_ResourceExposer___destroy___0"]=function(){return(_emscripten_bind_ResourceExposer___destroy___0=Module["_emscripten_bind_ResourceExposer___destroy___0"]=Module["asm"]["TM"]).apply(null,arguments)};var _emscripten_bind_VariablesChangeset_HasRemovedVariables_0=Module["_emscripten_bind_VariablesChangeset_HasRemovedVariables_0"]=function(){return(_emscripten_bind_VariablesChangeset_HasRemovedVariables_0=Module["_emscripten_bind_VariablesChangeset_HasRemovedVariables_0"]=Module["asm"]["UM"]).apply(null,arguments)};var _emscripten_bind_VariablesChangeset_ClearRemovedVariables_0=Module["_emscripten_bind_VariablesChangeset_ClearRemovedVariables_0"]=function(){return(_emscripten_bind_VariablesChangeset_ClearRemovedVariables_0=Module["_emscripten_bind_VariablesChangeset_ClearRemovedVariables_0"]=Module["asm"]["VM"]).apply(null,arguments)};var _emscripten_bind_VariablesChangeset___destroy___0=Module["_emscripten_bind_VariablesChangeset___destroy___0"]=function(){return(_emscripten_bind_VariablesChangeset___destroy___0=Module["_emscripten_bind_VariablesChangeset___destroy___0"]=Module["asm"]["WM"]).apply(null,arguments)};var _emscripten_bind_WholeProjectRefactorer_STATIC_ComputeChangesetForVariablesContainer_2=Module["_emscripten_bind_WholeProjectRefactorer_STATIC_ComputeChangesetForVariablesContainer_2"]=function(){return(_emscripten_bind_WholeProjectRefactorer_STATIC_ComputeChangesetForVariablesContainer_2=Module["_emscripten_bind_WholeProjectRefactorer_STATIC_ComputeChangesetForVariablesContainer_2"]=Module["asm"]["XM"]).apply(null,arguments)};var _emscripten_bind_WholeProjectRefactorer_STATIC_ApplyRefactoringForVariablesContainer_4=Module["_emscripten_bind_WholeProjectRefactorer_STATIC_ApplyRefactoringForVariablesContainer_4"]=function(){return(_emscripten_bind_WholeProjectRefactorer_STATIC_ApplyRefactoringForVariablesContainer_4=Module["_emscripten_bind_WholeProjectRefactorer_STATIC_ApplyRefactoringForVariablesContainer_4"]=Module["asm"]["YM"]).apply(null,arguments)};var _emscripten_bind_WholeProjectRefactorer_STATIC_ApplyRefactoringForObjectVariablesContainer_6=Module["_emscripten_bind_WholeProjectRefactorer_STATIC_ApplyRefactoringForObjectVariablesContainer_6"]=function(){return(_emscripten_bind_WholeProjectRefactorer_STATIC_ApplyRefactoringForObjectVariablesContainer_6=Module["_emscripten_bind_WholeProjectRefactorer_STATIC_ApplyRefactoringForObjectVariablesContainer_6"]=Module["asm"]["ZM"]).apply(null,arguments)};var _emscripten_bind_WholeProjectRefactorer_STATIC_ApplyRefactoringForGroupVariablesContainer_8=Module["_emscripten_bind_WholeProjectRefactorer_STATIC_ApplyRefactoringForGroupVariablesContainer_8"]=function(){return(_emscripten_bind_WholeProjectRefactorer_STATIC_ApplyRefactoringForGroupVariablesContainer_8=Module["_emscripten_bind_WholeProjectRefactorer_STATIC_ApplyRefactoringForGroupVariablesContainer_8"]=Module["asm"]["_M"]).apply(null,arguments)};var _emscripten_bind_WholeProjectRefactorer_STATIC_RenameEventsFunctionsExtension_4=Module["_emscripten_bind_WholeProjectRefactorer_STATIC_RenameEventsFunctionsExtension_4"]=function(){return(_emscripten_bind_WholeProjectRefactorer_STATIC_RenameEventsFunctionsExtension_4=Module["_emscripten_bind_WholeProjectRefactorer_STATIC_RenameEventsFunctionsExtension_4"]=Module["asm"]["$M"]).apply(null,arguments)};var _emscripten_bind_WholeProjectRefactorer_STATIC_UpdateExtensionNameInEventsBasedBehavior_4=Module["_emscripten_bind_WholeProjectRefactorer_STATIC_UpdateExtensionNameInEventsBasedBehavior_4"]=function(){return(_emscripten_bind_WholeProjectRefactorer_STATIC_UpdateExtensionNameInEventsBasedBehavior_4=Module["_emscripten_bind_WholeProjectRefactorer_STATIC_UpdateExtensionNameInEventsBasedBehavior_4"]=Module["asm"]["aN"]).apply(null,arguments)};var _emscripten_bind_WholeProjectRefactorer_STATIC_UpdateExtensionNameInEventsBasedObject_4=Module["_emscripten_bind_WholeProjectRefactorer_STATIC_UpdateExtensionNameInEventsBasedObject_4"]=function(){return(_emscripten_bind_WholeProjectRefactorer_STATIC_UpdateExtensionNameInEventsBasedObject_4=Module["_emscripten_bind_WholeProjectRefactorer_STATIC_UpdateExtensionNameInEventsBasedObject_4"]=Module["asm"]["bN"]).apply(null,arguments)};var _emscripten_bind_WholeProjectRefactorer_STATIC_RenameEventsFunction_4=Module["_emscripten_bind_WholeProjectRefactorer_STATIC_RenameEventsFunction_4"]=function(){return(_emscripten_bind_WholeProjectRefactorer_STATIC_RenameEventsFunction_4=Module["_emscripten_bind_WholeProjectRefactorer_STATIC_RenameEventsFunction_4"]=Module["asm"]["cN"]).apply(null,arguments)};var _emscripten_bind_WholeProjectRefactorer_STATIC_RenameBehaviorEventsFunction_5=Module["_emscripten_bind_WholeProjectRefactorer_STATIC_RenameBehaviorEventsFunction_5"]=function(){return(_emscripten_bind_WholeProjectRefactorer_STATIC_RenameBehaviorEventsFunction_5=Module["_emscripten_bind_WholeProjectRefactorer_STATIC_RenameBehaviorEventsFunction_5"]=Module["asm"]["dN"]).apply(null,arguments)};var _emscripten_bind_WholeProjectRefactorer_STATIC_RenameObjectEventsFunction_5=Module["_emscripten_bind_WholeProjectRefactorer_STATIC_RenameObjectEventsFunction_5"]=function(){return(_emscripten_bind_WholeProjectRefactorer_STATIC_RenameObjectEventsFunction_5=Module["_emscripten_bind_WholeProjectRefactorer_STATIC_RenameObjectEventsFunction_5"]=Module["asm"]["eN"]).apply(null,arguments)};var _emscripten_bind_WholeProjectRefactorer_STATIC_RenameParameter_6=Module["_emscripten_bind_WholeProjectRefactorer_STATIC_RenameParameter_6"]=function(){return(_emscripten_bind_WholeProjectRefactorer_STATIC_RenameParameter_6=Module["_emscripten_bind_WholeProjectRefactorer_STATIC_RenameParameter_6"]=Module["asm"]["fN"]).apply(null,arguments)};var _emscripten_bind_WholeProjectRefactorer_STATIC_ChangeParameterType_5=Module["_emscripten_bind_WholeProjectRefactorer_STATIC_ChangeParameterType_5"]=function(){return(_emscripten_bind_WholeProjectRefactorer_STATIC_ChangeParameterType_5=Module["_emscripten_bind_WholeProjectRefactorer_STATIC_ChangeParameterType_5"]=Module["asm"]["gN"]).apply(null,arguments)};var _emscripten_bind_WholeProjectRefactorer_STATIC_MoveEventsFunctionParameter_5=Module["_emscripten_bind_WholeProjectRefactorer_STATIC_MoveEventsFunctionParameter_5"]=function(){return(_emscripten_bind_WholeProjectRefactorer_STATIC_MoveEventsFunctionParameter_5=Module["_emscripten_bind_WholeProjectRefactorer_STATIC_MoveEventsFunctionParameter_5"]=Module["asm"]["hN"]).apply(null,arguments)};var _emscripten_bind_WholeProjectRefactorer_STATIC_MoveBehaviorEventsFunctionParameter_6=Module["_emscripten_bind_WholeProjectRefactorer_STATIC_MoveBehaviorEventsFunctionParameter_6"]=function(){return(_emscripten_bind_WholeProjectRefactorer_STATIC_MoveBehaviorEventsFunctionParameter_6=Module["_emscripten_bind_WholeProjectRefactorer_STATIC_MoveBehaviorEventsFunctionParameter_6"]=Module["asm"]["iN"]).apply(null,arguments)};var _emscripten_bind_WholeProjectRefactorer_STATIC_MoveObjectEventsFunctionParameter_6=Module["_emscripten_bind_WholeProjectRefactorer_STATIC_MoveObjectEventsFunctionParameter_6"]=function(){return(_emscripten_bind_WholeProjectRefactorer_STATIC_MoveObjectEventsFunctionParameter_6=Module["_emscripten_bind_WholeProjectRefactorer_STATIC_MoveObjectEventsFunctionParameter_6"]=Module["asm"]["jN"]).apply(null,arguments)};var _emscripten_bind_WholeProjectRefactorer_STATIC_RenameEventsBasedBehaviorProperty_5=Module["_emscripten_bind_WholeProjectRefactorer_STATIC_RenameEventsBasedBehaviorProperty_5"]=function(){return(_emscripten_bind_WholeProjectRefactorer_STATIC_RenameEventsBasedBehaviorProperty_5=Module["_emscripten_bind_WholeProjectRefactorer_STATIC_RenameEventsBasedBehaviorProperty_5"]=Module["asm"]["kN"]).apply(null,arguments)};var _emscripten_bind_WholeProjectRefactorer_STATIC_RenameEventsBasedBehaviorSharedProperty_5=Module["_emscripten_bind_WholeProjectRefactorer_STATIC_RenameEventsBasedBehaviorSharedProperty_5"]=function(){return(_emscripten_bind_WholeProjectRefactorer_STATIC_RenameEventsBasedBehaviorSharedProperty_5=Module["_emscripten_bind_WholeProjectRefactorer_STATIC_RenameEventsBasedBehaviorSharedProperty_5"]=Module["asm"]["lN"]).apply(null,arguments)};var _emscripten_bind_WholeProjectRefactorer_STATIC_ChangeEventsBasedBehaviorPropertyType_4=Module["_emscripten_bind_WholeProjectRefactorer_STATIC_ChangeEventsBasedBehaviorPropertyType_4"]=function(){return(_emscripten_bind_WholeProjectRefactorer_STATIC_ChangeEventsBasedBehaviorPropertyType_4=Module["_emscripten_bind_WholeProjectRefactorer_STATIC_ChangeEventsBasedBehaviorPropertyType_4"]=Module["asm"]["mN"]).apply(null,arguments)};var _emscripten_bind_WholeProjectRefactorer_STATIC_RenameEventsBasedObjectProperty_5=Module["_emscripten_bind_WholeProjectRefactorer_STATIC_RenameEventsBasedObjectProperty_5"]=function(){return(_emscripten_bind_WholeProjectRefactorer_STATIC_RenameEventsBasedObjectProperty_5=Module["_emscripten_bind_WholeProjectRefactorer_STATIC_RenameEventsBasedObjectProperty_5"]=Module["asm"]["nN"]).apply(null,arguments)};var _emscripten_bind_WholeProjectRefactorer_STATIC_ChangeEventsBasedObjectPropertyType_4=Module["_emscripten_bind_WholeProjectRefactorer_STATIC_ChangeEventsBasedObjectPropertyType_4"]=function(){return(_emscripten_bind_WholeProjectRefactorer_STATIC_ChangeEventsBasedObjectPropertyType_4=Module["_emscripten_bind_WholeProjectRefactorer_STATIC_ChangeEventsBasedObjectPropertyType_4"]=Module["asm"]["oN"]).apply(null,arguments)};var _emscripten_bind_WholeProjectRefactorer_STATIC_RenameEventsBasedBehavior_4=Module["_emscripten_bind_WholeProjectRefactorer_STATIC_RenameEventsBasedBehavior_4"]=function(){return(_emscripten_bind_WholeProjectRefactorer_STATIC_RenameEventsBasedBehavior_4=Module["_emscripten_bind_WholeProjectRefactorer_STATIC_RenameEventsBasedBehavior_4"]=Module["asm"]["pN"]).apply(null,arguments)};var _emscripten_bind_WholeProjectRefactorer_STATIC_UpdateBehaviorNameInEventsBasedBehavior_4=Module["_emscripten_bind_WholeProjectRefactorer_STATIC_UpdateBehaviorNameInEventsBasedBehavior_4"]=function(){return(_emscripten_bind_WholeProjectRefactorer_STATIC_UpdateBehaviorNameInEventsBasedBehavior_4=Module["_emscripten_bind_WholeProjectRefactorer_STATIC_UpdateBehaviorNameInEventsBasedBehavior_4"]=Module["asm"]["qN"]).apply(null,arguments)};var _emscripten_bind_WholeProjectRefactorer_STATIC_RenameEventsBasedObject_4=Module["_emscripten_bind_WholeProjectRefactorer_STATIC_RenameEventsBasedObject_4"]=function(){return(_emscripten_bind_WholeProjectRefactorer_STATIC_RenameEventsBasedObject_4=Module["_emscripten_bind_WholeProjectRefactorer_STATIC_RenameEventsBasedObject_4"]=Module["asm"]["rN"]).apply(null,arguments)};var _emscripten_bind_WholeProjectRefactorer_STATIC_UpdateObjectNameInEventsBasedObject_4=Module["_emscripten_bind_WholeProjectRefactorer_STATIC_UpdateObjectNameInEventsBasedObject_4"]=function(){return(_emscripten_bind_WholeProjectRefactorer_STATIC_UpdateObjectNameInEventsBasedObject_4=Module["_emscripten_bind_WholeProjectRefactorer_STATIC_UpdateObjectNameInEventsBasedObject_4"]=Module["asm"]["sN"]).apply(null,arguments)};var _emscripten_bind_WholeProjectRefactorer_STATIC_RenameLayout_3=Module["_emscripten_bind_WholeProjectRefactorer_STATIC_RenameLayout_3"]=function(){return(_emscripten_bind_WholeProjectRefactorer_STATIC_RenameLayout_3=Module["_emscripten_bind_WholeProjectRefactorer_STATIC_RenameLayout_3"]=Module["asm"]["tN"]).apply(null,arguments)};var _emscripten_bind_WholeProjectRefactorer_STATIC_RenameExternalLayout_3=Module["_emscripten_bind_WholeProjectRefactorer_STATIC_RenameExternalLayout_3"]=function(){return(_emscripten_bind_WholeProjectRefactorer_STATIC_RenameExternalLayout_3=Module["_emscripten_bind_WholeProjectRefactorer_STATIC_RenameExternalLayout_3"]=Module["asm"]["uN"]).apply(null,arguments)};var _emscripten_bind_WholeProjectRefactorer_STATIC_RenameExternalEvents_3=Module["_emscripten_bind_WholeProjectRefactorer_STATIC_RenameExternalEvents_3"]=function(){return(_emscripten_bind_WholeProjectRefactorer_STATIC_RenameExternalEvents_3=Module["_emscripten_bind_WholeProjectRefactorer_STATIC_RenameExternalEvents_3"]=Module["asm"]["vN"]).apply(null,arguments)};var _emscripten_bind_WholeProjectRefactorer_STATIC_RenameLayerInScene_4=Module["_emscripten_bind_WholeProjectRefactorer_STATIC_RenameLayerInScene_4"]=function(){return(_emscripten_bind_WholeProjectRefactorer_STATIC_RenameLayerInScene_4=Module["_emscripten_bind_WholeProjectRefactorer_STATIC_RenameLayerInScene_4"]=Module["asm"]["wN"]).apply(null,arguments)};var _emscripten_bind_WholeProjectRefactorer_STATIC_RenameLayerInEventsBasedObject_5=Module["_emscripten_bind_WholeProjectRefactorer_STATIC_RenameLayerInEventsBasedObject_5"]=function(){return(_emscripten_bind_WholeProjectRefactorer_STATIC_RenameLayerInEventsBasedObject_5=Module["_emscripten_bind_WholeProjectRefactorer_STATIC_RenameLayerInEventsBasedObject_5"]=Module["asm"]["xN"]).apply(null,arguments)};var _emscripten_bind_WholeProjectRefactorer_STATIC_RenameLayerEffectInScene_5=Module["_emscripten_bind_WholeProjectRefactorer_STATIC_RenameLayerEffectInScene_5"]=function(){return(_emscripten_bind_WholeProjectRefactorer_STATIC_RenameLayerEffectInScene_5=Module["_emscripten_bind_WholeProjectRefactorer_STATIC_RenameLayerEffectInScene_5"]=Module["asm"]["yN"]).apply(null,arguments)};var _emscripten_bind_WholeProjectRefactorer_STATIC_RenameLayerEffectInEventsBasedObject_6=Module["_emscripten_bind_WholeProjectRefactorer_STATIC_RenameLayerEffectInEventsBasedObject_6"]=function(){return(_emscripten_bind_WholeProjectRefactorer_STATIC_RenameLayerEffectInEventsBasedObject_6=Module["_emscripten_bind_WholeProjectRefactorer_STATIC_RenameLayerEffectInEventsBasedObject_6"]=Module["asm"]["zN"]).apply(null,arguments)};var _emscripten_bind_WholeProjectRefactorer_STATIC_RenameObjectAnimationInScene_5=Module["_emscripten_bind_WholeProjectRefactorer_STATIC_RenameObjectAnimationInScene_5"]=function(){return(_emscripten_bind_WholeProjectRefactorer_STATIC_RenameObjectAnimationInScene_5=Module["_emscripten_bind_WholeProjectRefactorer_STATIC_RenameObjectAnimationInScene_5"]=Module["asm"]["AN"]).apply(null,arguments)};var _emscripten_bind_WholeProjectRefactorer_STATIC_RenameObjectAnimationInEventsBasedObject_6=Module["_emscripten_bind_WholeProjectRefactorer_STATIC_RenameObjectAnimationInEventsBasedObject_6"]=function(){return(_emscripten_bind_WholeProjectRefactorer_STATIC_RenameObjectAnimationInEventsBasedObject_6=Module["_emscripten_bind_WholeProjectRefactorer_STATIC_RenameObjectAnimationInEventsBasedObject_6"]=Module["asm"]["BN"]).apply(null,arguments)};var _emscripten_bind_WholeProjectRefactorer_STATIC_RenameObjectPointInScene_5=Module["_emscripten_bind_WholeProjectRefactorer_STATIC_RenameObjectPointInScene_5"]=function(){return(_emscripten_bind_WholeProjectRefactorer_STATIC_RenameObjectPointInScene_5=Module["_emscripten_bind_WholeProjectRefactorer_STATIC_RenameObjectPointInScene_5"]=Module["asm"]["CN"]).apply(null,arguments)};var _emscripten_bind_WholeProjectRefactorer_STATIC_RenameObjectPointInEventsBasedObject_6=Module["_emscripten_bind_WholeProjectRefactorer_STATIC_RenameObjectPointInEventsBasedObject_6"]=function(){return(_emscripten_bind_WholeProjectRefactorer_STATIC_RenameObjectPointInEventsBasedObject_6=Module["_emscripten_bind_WholeProjectRefactorer_STATIC_RenameObjectPointInEventsBasedObject_6"]=Module["asm"]["DN"]).apply(null,arguments)};var _emscripten_bind_WholeProjectRefactorer_STATIC_RenameObjectEffectInScene_5=Module["_emscripten_bind_WholeProjectRefactorer_STATIC_RenameObjectEffectInScene_5"]=function(){return(_emscripten_bind_WholeProjectRefactorer_STATIC_RenameObjectEffectInScene_5=Module["_emscripten_bind_WholeProjectRefactorer_STATIC_RenameObjectEffectInScene_5"]=Module["asm"]["EN"]).apply(null,arguments)};var _emscripten_bind_WholeProjectRefactorer_STATIC_RenameObjectEffectInEventsBasedObject_6=Module["_emscripten_bind_WholeProjectRefactorer_STATIC_RenameObjectEffectInEventsBasedObject_6"]=function(){return(_emscripten_bind_WholeProjectRefactorer_STATIC_RenameObjectEffectInEventsBasedObject_6=Module["_emscripten_bind_WholeProjectRefactorer_STATIC_RenameObjectEffectInEventsBasedObject_6"]=Module["asm"]["FN"]).apply(null,arguments)};var _emscripten_bind_WholeProjectRefactorer_STATIC_ObjectOrGroupRenamedInScene_5=Module["_emscripten_bind_WholeProjectRefactorer_STATIC_ObjectOrGroupRenamedInScene_5"]=function(){return(_emscripten_bind_WholeProjectRefactorer_STATIC_ObjectOrGroupRenamedInScene_5=Module["_emscripten_bind_WholeProjectRefactorer_STATIC_ObjectOrGroupRenamedInScene_5"]=Module["asm"]["GN"]).apply(null,arguments)};var _emscripten_bind_WholeProjectRefactorer_STATIC_ObjectRemovedInScene_3=Module["_emscripten_bind_WholeProjectRefactorer_STATIC_ObjectRemovedInScene_3"]=function(){return(_emscripten_bind_WholeProjectRefactorer_STATIC_ObjectRemovedInScene_3=Module["_emscripten_bind_WholeProjectRefactorer_STATIC_ObjectRemovedInScene_3"]=Module["asm"]["HN"]).apply(null,arguments)};var _emscripten_bind_WholeProjectRefactorer_STATIC_BehaviorsAddedToObjectInScene_3=Module["_emscripten_bind_WholeProjectRefactorer_STATIC_BehaviorsAddedToObjectInScene_3"]=function(){return(_emscripten_bind_WholeProjectRefactorer_STATIC_BehaviorsAddedToObjectInScene_3=Module["_emscripten_bind_WholeProjectRefactorer_STATIC_BehaviorsAddedToObjectInScene_3"]=Module["asm"]["IN"]).apply(null,arguments)};var _emscripten_bind_WholeProjectRefactorer_STATIC_ObjectOrGroupRenamedInEventsFunction_7=Module["_emscripten_bind_WholeProjectRefactorer_STATIC_ObjectOrGroupRenamedInEventsFunction_7"]=function(){return(_emscripten_bind_WholeProjectRefactorer_STATIC_ObjectOrGroupRenamedInEventsFunction_7=Module["_emscripten_bind_WholeProjectRefactorer_STATIC_ObjectOrGroupRenamedInEventsFunction_7"]=Module["asm"]["JN"]).apply(null,arguments)};var _emscripten_bind_WholeProjectRefactorer_STATIC_ObjectRemovedInEventsFunction_3=Module["_emscripten_bind_WholeProjectRefactorer_STATIC_ObjectRemovedInEventsFunction_3"]=function(){return(_emscripten_bind_WholeProjectRefactorer_STATIC_ObjectRemovedInEventsFunction_3=Module["_emscripten_bind_WholeProjectRefactorer_STATIC_ObjectRemovedInEventsFunction_3"]=Module["asm"]["KN"]).apply(null,arguments)};var _emscripten_bind_WholeProjectRefactorer_STATIC_ObjectOrGroupRenamedInEventsBasedObject_6=Module["_emscripten_bind_WholeProjectRefactorer_STATIC_ObjectOrGroupRenamedInEventsBasedObject_6"]=function(){return(_emscripten_bind_WholeProjectRefactorer_STATIC_ObjectOrGroupRenamedInEventsBasedObject_6=Module["_emscripten_bind_WholeProjectRefactorer_STATIC_ObjectOrGroupRenamedInEventsBasedObject_6"]=Module["asm"]["LN"]).apply(null,arguments)};var _emscripten_bind_WholeProjectRefactorer_STATIC_ObjectRemovedInEventsBasedObject_3=Module["_emscripten_bind_WholeProjectRefactorer_STATIC_ObjectRemovedInEventsBasedObject_3"]=function(){return(_emscripten_bind_WholeProjectRefactorer_STATIC_ObjectRemovedInEventsBasedObject_3=Module["_emscripten_bind_WholeProjectRefactorer_STATIC_ObjectRemovedInEventsBasedObject_3"]=Module["asm"]["MN"]).apply(null,arguments)};var _emscripten_bind_WholeProjectRefactorer_STATIC_GlobalObjectOrGroupRenamed_4=Module["_emscripten_bind_WholeProjectRefactorer_STATIC_GlobalObjectOrGroupRenamed_4"]=function(){return(_emscripten_bind_WholeProjectRefactorer_STATIC_GlobalObjectOrGroupRenamed_4=Module["_emscripten_bind_WholeProjectRefactorer_STATIC_GlobalObjectOrGroupRenamed_4"]=Module["asm"]["NN"]).apply(null,arguments)};var _emscripten_bind_WholeProjectRefactorer_STATIC_GlobalObjectRemoved_2=Module["_emscripten_bind_WholeProjectRefactorer_STATIC_GlobalObjectRemoved_2"]=function(){return(_emscripten_bind_WholeProjectRefactorer_STATIC_GlobalObjectRemoved_2=Module["_emscripten_bind_WholeProjectRefactorer_STATIC_GlobalObjectRemoved_2"]=Module["asm"]["ON"]).apply(null,arguments)};var _emscripten_bind_WholeProjectRefactorer_STATIC_BehaviorsAddedToGlobalObject_2=Module["_emscripten_bind_WholeProjectRefactorer_STATIC_BehaviorsAddedToGlobalObject_2"]=function(){return(_emscripten_bind_WholeProjectRefactorer_STATIC_BehaviorsAddedToGlobalObject_2=Module["_emscripten_bind_WholeProjectRefactorer_STATIC_BehaviorsAddedToGlobalObject_2"]=Module["asm"]["PN"]).apply(null,arguments)};var _emscripten_bind_WholeProjectRefactorer_STATIC_GetAllObjectTypesUsingEventsBasedBehavior_3=Module["_emscripten_bind_WholeProjectRefactorer_STATIC_GetAllObjectTypesUsingEventsBasedBehavior_3"]=function(){return(_emscripten_bind_WholeProjectRefactorer_STATIC_GetAllObjectTypesUsingEventsBasedBehavior_3=Module["_emscripten_bind_WholeProjectRefactorer_STATIC_GetAllObjectTypesUsingEventsBasedBehavior_3"]=Module["asm"]["QN"]).apply(null,arguments)};var _emscripten_bind_WholeProjectRefactorer_STATIC_EnsureBehaviorEventsFunctionsProperParameters_2=Module["_emscripten_bind_WholeProjectRefactorer_STATIC_EnsureBehaviorEventsFunctionsProperParameters_2"]=function(){return(_emscripten_bind_WholeProjectRefactorer_STATIC_EnsureBehaviorEventsFunctionsProperParameters_2=Module["_emscripten_bind_WholeProjectRefactorer_STATIC_EnsureBehaviorEventsFunctionsProperParameters_2"]=Module["asm"]["RN"]).apply(null,arguments)};var _emscripten_bind_WholeProjectRefactorer_STATIC_EnsureObjectEventsFunctionsProperParameters_2=Module["_emscripten_bind_WholeProjectRefactorer_STATIC_EnsureObjectEventsFunctionsProperParameters_2"]=function(){return(_emscripten_bind_WholeProjectRefactorer_STATIC_EnsureObjectEventsFunctionsProperParameters_2=Module["_emscripten_bind_WholeProjectRefactorer_STATIC_EnsureObjectEventsFunctionsProperParameters_2"]=Module["asm"]["SN"]).apply(null,arguments)};var _emscripten_bind_WholeProjectRefactorer_STATIC_AddBehaviorAndRequiredBehaviors_4=Module["_emscripten_bind_WholeProjectRefactorer_STATIC_AddBehaviorAndRequiredBehaviors_4"]=function(){return(_emscripten_bind_WholeProjectRefactorer_STATIC_AddBehaviorAndRequiredBehaviors_4=Module["_emscripten_bind_WholeProjectRefactorer_STATIC_AddBehaviorAndRequiredBehaviors_4"]=Module["asm"]["TN"]).apply(null,arguments)};var _emscripten_bind_WholeProjectRefactorer_STATIC_AddRequiredBehaviorsFor_3=Module["_emscripten_bind_WholeProjectRefactorer_STATIC_AddRequiredBehaviorsFor_3"]=function(){return(_emscripten_bind_WholeProjectRefactorer_STATIC_AddRequiredBehaviorsFor_3=Module["_emscripten_bind_WholeProjectRefactorer_STATIC_AddRequiredBehaviorsFor_3"]=Module["asm"]["UN"]).apply(null,arguments)};var _emscripten_bind_WholeProjectRefactorer_STATIC_FindDependentBehaviorNames_3=Module["_emscripten_bind_WholeProjectRefactorer_STATIC_FindDependentBehaviorNames_3"]=function(){return(_emscripten_bind_WholeProjectRefactorer_STATIC_FindDependentBehaviorNames_3=Module["_emscripten_bind_WholeProjectRefactorer_STATIC_FindDependentBehaviorNames_3"]=Module["asm"]["VN"]).apply(null,arguments)};var _emscripten_bind_WholeProjectRefactorer_STATIC_FindInvalidRequiredBehaviorProperties_1=Module["_emscripten_bind_WholeProjectRefactorer_STATIC_FindInvalidRequiredBehaviorProperties_1"]=function(){return(_emscripten_bind_WholeProjectRefactorer_STATIC_FindInvalidRequiredBehaviorProperties_1=Module["_emscripten_bind_WholeProjectRefactorer_STATIC_FindInvalidRequiredBehaviorProperties_1"]=Module["asm"]["WN"]).apply(null,arguments)};var _emscripten_bind_WholeProjectRefactorer_STATIC_GetBehaviorsWithType_2=Module["_emscripten_bind_WholeProjectRefactorer_STATIC_GetBehaviorsWithType_2"]=function(){return(_emscripten_bind_WholeProjectRefactorer_STATIC_GetBehaviorsWithType_2=Module["_emscripten_bind_WholeProjectRefactorer_STATIC_GetBehaviorsWithType_2"]=Module["asm"]["XN"]).apply(null,arguments)};var _emscripten_bind_WholeProjectRefactorer_STATIC_FixInvalidRequiredBehaviorProperties_1=Module["_emscripten_bind_WholeProjectRefactorer_STATIC_FixInvalidRequiredBehaviorProperties_1"]=function(){return(_emscripten_bind_WholeProjectRefactorer_STATIC_FixInvalidRequiredBehaviorProperties_1=Module["_emscripten_bind_WholeProjectRefactorer_STATIC_FixInvalidRequiredBehaviorProperties_1"]=Module["asm"]["YN"]).apply(null,arguments)};var _emscripten_bind_WholeProjectRefactorer_STATIC_RemoveLayerInScene_3=Module["_emscripten_bind_WholeProjectRefactorer_STATIC_RemoveLayerInScene_3"]=function(){return(_emscripten_bind_WholeProjectRefactorer_STATIC_RemoveLayerInScene_3=Module["_emscripten_bind_WholeProjectRefactorer_STATIC_RemoveLayerInScene_3"]=Module["asm"]["ZN"]).apply(null,arguments)};var _emscripten_bind_WholeProjectRefactorer_STATIC_MergeLayersInScene_4=Module["_emscripten_bind_WholeProjectRefactorer_STATIC_MergeLayersInScene_4"]=function(){return(_emscripten_bind_WholeProjectRefactorer_STATIC_MergeLayersInScene_4=Module["_emscripten_bind_WholeProjectRefactorer_STATIC_MergeLayersInScene_4"]=Module["asm"]["_N"]).apply(null,arguments)};var _emscripten_bind_WholeProjectRefactorer_STATIC_RemoveLayerInEventsBasedObject_2=Module["_emscripten_bind_WholeProjectRefactorer_STATIC_RemoveLayerInEventsBasedObject_2"]=function(){return(_emscripten_bind_WholeProjectRefactorer_STATIC_RemoveLayerInEventsBasedObject_2=Module["_emscripten_bind_WholeProjectRefactorer_STATIC_RemoveLayerInEventsBasedObject_2"]=Module["asm"]["$N"]).apply(null,arguments)};var _emscripten_bind_WholeProjectRefactorer_STATIC_MergeLayersInEventsBasedObject_3=Module["_emscripten_bind_WholeProjectRefactorer_STATIC_MergeLayersInEventsBasedObject_3"]=function(){return(_emscripten_bind_WholeProjectRefactorer_STATIC_MergeLayersInEventsBasedObject_3=Module["_emscripten_bind_WholeProjectRefactorer_STATIC_MergeLayersInEventsBasedObject_3"]=Module["asm"]["aO"]).apply(null,arguments)};var _emscripten_bind_WholeProjectRefactorer_STATIC_GetLayoutAndExternalLayoutLayerInstancesCount_3=Module["_emscripten_bind_WholeProjectRefactorer_STATIC_GetLayoutAndExternalLayoutLayerInstancesCount_3"]=function(){return(_emscripten_bind_WholeProjectRefactorer_STATIC_GetLayoutAndExternalLayoutLayerInstancesCount_3=Module["_emscripten_bind_WholeProjectRefactorer_STATIC_GetLayoutAndExternalLayoutLayerInstancesCount_3"]=Module["asm"]["bO"]).apply(null,arguments)};var _emscripten_bind_WholeProjectRefactorer_STATIC_RenameLeaderboards_2=Module["_emscripten_bind_WholeProjectRefactorer_STATIC_RenameLeaderboards_2"]=function(){return(_emscripten_bind_WholeProjectRefactorer_STATIC_RenameLeaderboards_2=Module["_emscripten_bind_WholeProjectRefactorer_STATIC_RenameLeaderboards_2"]=Module["asm"]["cO"]).apply(null,arguments)};var _emscripten_bind_WholeProjectRefactorer_STATIC_FindAllLeaderboardIds_1=Module["_emscripten_bind_WholeProjectRefactorer_STATIC_FindAllLeaderboardIds_1"]=function(){return(_emscripten_bind_WholeProjectRefactorer_STATIC_FindAllLeaderboardIds_1=Module["_emscripten_bind_WholeProjectRefactorer_STATIC_FindAllLeaderboardIds_1"]=Module["asm"]["dO"]).apply(null,arguments)};var _emscripten_bind_WholeProjectRefactorer_STATIC_UpdateBehaviorsSharedData_1=Module["_emscripten_bind_WholeProjectRefactorer_STATIC_UpdateBehaviorsSharedData_1"]=function(){return(_emscripten_bind_WholeProjectRefactorer_STATIC_UpdateBehaviorsSharedData_1=Module["_emscripten_bind_WholeProjectRefactorer_STATIC_UpdateBehaviorsSharedData_1"]=Module["asm"]["eO"]).apply(null,arguments)};var _emscripten_bind_WholeProjectRefactorer___destroy___0=Module["_emscripten_bind_WholeProjectRefactorer___destroy___0"]=function(){return(_emscripten_bind_WholeProjectRefactorer___destroy___0=Module["_emscripten_bind_WholeProjectRefactorer___destroy___0"]=Module["asm"]["fO"]).apply(null,arguments)};var _emscripten_bind_BehaviorParameterFiller_STATIC_FillBehaviorParameters_4=Module["_emscripten_bind_BehaviorParameterFiller_STATIC_FillBehaviorParameters_4"]=function(){return(_emscripten_bind_BehaviorParameterFiller_STATIC_FillBehaviorParameters_4=Module["_emscripten_bind_BehaviorParameterFiller_STATIC_FillBehaviorParameters_4"]=Module["asm"]["gO"]).apply(null,arguments)};var _emscripten_bind_BehaviorParameterFiller___destroy___0=Module["_emscripten_bind_BehaviorParameterFiller___destroy___0"]=function(){return(_emscripten_bind_BehaviorParameterFiller___destroy___0=Module["_emscripten_bind_BehaviorParameterFiller___destroy___0"]=Module["asm"]["hO"]).apply(null,arguments)};var _emscripten_bind_ParameterValidationResult_IsValid_0=Module["_emscripten_bind_ParameterValidationResult_IsValid_0"]=function(){return(_emscripten_bind_ParameterValidationResult_IsValid_0=Module["_emscripten_bind_ParameterValidationResult_IsValid_0"]=Module["asm"]["iO"]).apply(null,arguments)};var _emscripten_bind_ParameterValidationResult_HasDeprecationWarning_0=Module["_emscripten_bind_ParameterValidationResult_HasDeprecationWarning_0"]=function(){return(_emscripten_bind_ParameterValidationResult_HasDeprecationWarning_0=Module["_emscripten_bind_ParameterValidationResult_HasDeprecationWarning_0"]=Module["asm"]["jO"]).apply(null,arguments)};var _emscripten_bind_ParameterValidationResult___destroy___0=Module["_emscripten_bind_ParameterValidationResult___destroy___0"]=function(){return(_emscripten_bind_ParameterValidationResult___destroy___0=Module["_emscripten_bind_ParameterValidationResult___destroy___0"]=Module["asm"]["kO"]).apply(null,arguments)};var _emscripten_bind_InstructionValidator_STATIC_ValidateParameter_6=Module["_emscripten_bind_InstructionValidator_STATIC_ValidateParameter_6"]=function(){return(_emscripten_bind_InstructionValidator_STATIC_ValidateParameter_6=Module["_emscripten_bind_InstructionValidator_STATIC_ValidateParameter_6"]=Module["asm"]["lO"]).apply(null,arguments)};var _emscripten_bind_InstructionValidator_STATIC_IsParameterValid_6=Module["_emscripten_bind_InstructionValidator_STATIC_IsParameterValid_6"]=function(){return(_emscripten_bind_InstructionValidator_STATIC_IsParameterValid_6=Module["_emscripten_bind_InstructionValidator_STATIC_IsParameterValid_6"]=Module["asm"]["mO"]).apply(null,arguments)};var _emscripten_bind_InstructionValidator_STATIC_HasDeprecationWarnings_6=Module["_emscripten_bind_InstructionValidator_STATIC_HasDeprecationWarnings_6"]=function(){return(_emscripten_bind_InstructionValidator_STATIC_HasDeprecationWarnings_6=Module["_emscripten_bind_InstructionValidator_STATIC_HasDeprecationWarnings_6"]=Module["asm"]["nO"]).apply(null,arguments)};var _emscripten_bind_InstructionValidator___destroy___0=Module["_emscripten_bind_InstructionValidator___destroy___0"]=function(){return(_emscripten_bind_InstructionValidator___destroy___0=Module["_emscripten_bind_InstructionValidator___destroy___0"]=Module["asm"]["oO"]).apply(null,arguments)};var _emscripten_bind_ObjectTools_STATIC_IsBehaviorCompatibleWithObject_3=Module["_emscripten_bind_ObjectTools_STATIC_IsBehaviorCompatibleWithObject_3"]=function(){return(_emscripten_bind_ObjectTools_STATIC_IsBehaviorCompatibleWithObject_3=Module["_emscripten_bind_ObjectTools_STATIC_IsBehaviorCompatibleWithObject_3"]=Module["asm"]["pO"]).apply(null,arguments)};var _emscripten_bind_ObjectTools___destroy___0=Module["_emscripten_bind_ObjectTools___destroy___0"]=function(){return(_emscripten_bind_ObjectTools___destroy___0=Module["_emscripten_bind_ObjectTools___destroy___0"]=Module["asm"]["qO"]).apply(null,arguments)};var _emscripten_bind_EventsBasedObjectDependencyFinder_STATIC_IsDependentFromEventsBasedObject_3=Module["_emscripten_bind_EventsBasedObjectDependencyFinder_STATIC_IsDependentFromEventsBasedObject_3"]=function(){return(_emscripten_bind_EventsBasedObjectDependencyFinder_STATIC_IsDependentFromEventsBasedObject_3=Module["_emscripten_bind_EventsBasedObjectDependencyFinder_STATIC_IsDependentFromEventsBasedObject_3"]=Module["asm"]["rO"]).apply(null,arguments)};var _emscripten_bind_EventsBasedObjectDependencyFinder___destroy___0=Module["_emscripten_bind_EventsBasedObjectDependencyFinder___destroy___0"]=function(){return(_emscripten_bind_EventsBasedObjectDependencyFinder___destroy___0=Module["_emscripten_bind_EventsBasedObjectDependencyFinder___destroy___0"]=Module["asm"]["sO"]).apply(null,arguments)};var _emscripten_bind_PropertyFunctionGenerator_STATIC_GenerateBehaviorGetterAndSetter_5=Module["_emscripten_bind_PropertyFunctionGenerator_STATIC_GenerateBehaviorGetterAndSetter_5"]=function(){return(_emscripten_bind_PropertyFunctionGenerator_STATIC_GenerateBehaviorGetterAndSetter_5=Module["_emscripten_bind_PropertyFunctionGenerator_STATIC_GenerateBehaviorGetterAndSetter_5"]=Module["asm"]["tO"]).apply(null,arguments)};var _emscripten_bind_PropertyFunctionGenerator_STATIC_GenerateObjectGetterAndSetter_4=Module["_emscripten_bind_PropertyFunctionGenerator_STATIC_GenerateObjectGetterAndSetter_4"]=function(){return(_emscripten_bind_PropertyFunctionGenerator_STATIC_GenerateObjectGetterAndSetter_4=Module["_emscripten_bind_PropertyFunctionGenerator_STATIC_GenerateObjectGetterAndSetter_4"]=Module["asm"]["uO"]).apply(null,arguments)};var _emscripten_bind_PropertyFunctionGenerator_STATIC_CanGenerateGetterAndSetter_2=Module["_emscripten_bind_PropertyFunctionGenerator_STATIC_CanGenerateGetterAndSetter_2"]=function(){return(_emscripten_bind_PropertyFunctionGenerator_STATIC_CanGenerateGetterAndSetter_2=Module["_emscripten_bind_PropertyFunctionGenerator_STATIC_CanGenerateGetterAndSetter_2"]=Module["asm"]["vO"]).apply(null,arguments)};var _emscripten_bind_PropertyFunctionGenerator_STATIC_GenerateConditionSkeleton_2=Module["_emscripten_bind_PropertyFunctionGenerator_STATIC_GenerateConditionSkeleton_2"]=function(){return(_emscripten_bind_PropertyFunctionGenerator_STATIC_GenerateConditionSkeleton_2=Module["_emscripten_bind_PropertyFunctionGenerator_STATIC_GenerateConditionSkeleton_2"]=Module["asm"]["wO"]).apply(null,arguments)};var _emscripten_bind_PropertyFunctionGenerator___destroy___0=Module["_emscripten_bind_PropertyFunctionGenerator___destroy___0"]=function(){return(_emscripten_bind_PropertyFunctionGenerator___destroy___0=Module["_emscripten_bind_PropertyFunctionGenerator___destroy___0"]=Module["asm"]["xO"]).apply(null,arguments)};var _emscripten_bind_UsedExtensionsResult_GetUsedExtensions_0=Module["_emscripten_bind_UsedExtensionsResult_GetUsedExtensions_0"]=function(){return(_emscripten_bind_UsedExtensionsResult_GetUsedExtensions_0=Module["_emscripten_bind_UsedExtensionsResult_GetUsedExtensions_0"]=Module["asm"]["yO"]).apply(null,arguments)};var _emscripten_bind_UsedExtensionsResult___destroy___0=Module["_emscripten_bind_UsedExtensionsResult___destroy___0"]=function(){return(_emscripten_bind_UsedExtensionsResult___destroy___0=Module["_emscripten_bind_UsedExtensionsResult___destroy___0"]=Module["asm"]["zO"]).apply(null,arguments)};var _emscripten_bind_UsedExtensionsFinder_STATIC_ScanProject_1=Module["_emscripten_bind_UsedExtensionsFinder_STATIC_ScanProject_1"]=function(){return(_emscripten_bind_UsedExtensionsFinder_STATIC_ScanProject_1=Module["_emscripten_bind_UsedExtensionsFinder_STATIC_ScanProject_1"]=Module["asm"]["AO"]).apply(null,arguments)};var _emscripten_bind_UsedExtensionsFinder_STATIC_ScanEventsFunctionsExtension_2=Module["_emscripten_bind_UsedExtensionsFinder_STATIC_ScanEventsFunctionsExtension_2"]=function(){return(_emscripten_bind_UsedExtensionsFinder_STATIC_ScanEventsFunctionsExtension_2=Module["_emscripten_bind_UsedExtensionsFinder_STATIC_ScanEventsFunctionsExtension_2"]=Module["asm"]["BO"]).apply(null,arguments)};var _emscripten_bind_UsedExtensionsFinder_STATIC_FindExtensionsDependentOn_2=Module["_emscripten_bind_UsedExtensionsFinder_STATIC_FindExtensionsDependentOn_2"]=function(){return(_emscripten_bind_UsedExtensionsFinder_STATIC_FindExtensionsDependentOn_2=Module["_emscripten_bind_UsedExtensionsFinder_STATIC_FindExtensionsDependentOn_2"]=Module["asm"]["CO"]).apply(null,arguments)};var _emscripten_bind_UsedExtensionsFinder___destroy___0=Module["_emscripten_bind_UsedExtensionsFinder___destroy___0"]=function(){return(_emscripten_bind_UsedExtensionsFinder___destroy___0=Module["_emscripten_bind_UsedExtensionsFinder___destroy___0"]=Module["asm"]["DO"]).apply(null,arguments)};var _emscripten_bind_UsedObjectTypeFinder_STATIC_ScanProject_2=Module["_emscripten_bind_UsedObjectTypeFinder_STATIC_ScanProject_2"]=function(){return(_emscripten_bind_UsedObjectTypeFinder_STATIC_ScanProject_2=Module["_emscripten_bind_UsedObjectTypeFinder_STATIC_ScanProject_2"]=Module["asm"]["EO"]).apply(null,arguments)};var _emscripten_bind_UsedObjectTypeFinder___destroy___0=Module["_emscripten_bind_UsedObjectTypeFinder___destroy___0"]=function(){return(_emscripten_bind_UsedObjectTypeFinder___destroy___0=Module["_emscripten_bind_UsedObjectTypeFinder___destroy___0"]=Module["asm"]["FO"]).apply(null,arguments)};var _emscripten_bind_ExampleExtensionUsagesFinder_STATIC_GetUsedExtensions_1=Module["_emscripten_bind_ExampleExtensionUsagesFinder_STATIC_GetUsedExtensions_1"]=function(){return(_emscripten_bind_ExampleExtensionUsagesFinder_STATIC_GetUsedExtensions_1=Module["_emscripten_bind_ExampleExtensionUsagesFinder_STATIC_GetUsedExtensions_1"]=Module["asm"]["GO"]).apply(null,arguments)};var _emscripten_bind_ExampleExtensionUsagesFinder___destroy___0=Module["_emscripten_bind_ExampleExtensionUsagesFinder___destroy___0"]=function(){return(_emscripten_bind_ExampleExtensionUsagesFinder___destroy___0=Module["_emscripten_bind_ExampleExtensionUsagesFinder___destroy___0"]=Module["asm"]["HO"]).apply(null,arguments)};var _emscripten_bind_InstructionsCountEvaluator_STATIC_ScanProject_1=Module["_emscripten_bind_InstructionsCountEvaluator_STATIC_ScanProject_1"]=function(){return(_emscripten_bind_InstructionsCountEvaluator_STATIC_ScanProject_1=Module["_emscripten_bind_InstructionsCountEvaluator_STATIC_ScanProject_1"]=Module["asm"]["IO"]).apply(null,arguments)};var _emscripten_bind_InstructionsCountEvaluator___destroy___0=Module["_emscripten_bind_InstructionsCountEvaluator___destroy___0"]=function(){return(_emscripten_bind_InstructionsCountEvaluator___destroy___0=Module["_emscripten_bind_InstructionsCountEvaluator___destroy___0"]=Module["asm"]["JO"]).apply(null,arguments)};var _emscripten_bind_ExtensionAndBehaviorMetadata_GetExtension_0=Module["_emscripten_bind_ExtensionAndBehaviorMetadata_GetExtension_0"]=function(){return(_emscripten_bind_ExtensionAndBehaviorMetadata_GetExtension_0=Module["_emscripten_bind_ExtensionAndBehaviorMetadata_GetExtension_0"]=Module["asm"]["KO"]).apply(null,arguments)};var _emscripten_bind_ExtensionAndBehaviorMetadata_GetMetadata_0=Module["_emscripten_bind_ExtensionAndBehaviorMetadata_GetMetadata_0"]=function(){return(_emscripten_bind_ExtensionAndBehaviorMetadata_GetMetadata_0=Module["_emscripten_bind_ExtensionAndBehaviorMetadata_GetMetadata_0"]=Module["asm"]["LO"]).apply(null,arguments)};var _emscripten_bind_ExtensionAndBehaviorMetadata___destroy___0=Module["_emscripten_bind_ExtensionAndBehaviorMetadata___destroy___0"]=function(){return(_emscripten_bind_ExtensionAndBehaviorMetadata___destroy___0=Module["_emscripten_bind_ExtensionAndBehaviorMetadata___destroy___0"]=Module["asm"]["MO"]).apply(null,arguments)};var _emscripten_bind_ExtensionAndObjectMetadata_GetExtension_0=Module["_emscripten_bind_ExtensionAndObjectMetadata_GetExtension_0"]=function(){return(_emscripten_bind_ExtensionAndObjectMetadata_GetExtension_0=Module["_emscripten_bind_ExtensionAndObjectMetadata_GetExtension_0"]=Module["asm"]["NO"]).apply(null,arguments)};var _emscripten_bind_ExtensionAndObjectMetadata_GetMetadata_0=Module["_emscripten_bind_ExtensionAndObjectMetadata_GetMetadata_0"]=function(){return(_emscripten_bind_ExtensionAndObjectMetadata_GetMetadata_0=Module["_emscripten_bind_ExtensionAndObjectMetadata_GetMetadata_0"]=Module["asm"]["OO"]).apply(null,arguments)};var _emscripten_bind_ExtensionAndObjectMetadata___destroy___0=Module["_emscripten_bind_ExtensionAndObjectMetadata___destroy___0"]=function(){return(_emscripten_bind_ExtensionAndObjectMetadata___destroy___0=Module["_emscripten_bind_ExtensionAndObjectMetadata___destroy___0"]=Module["asm"]["PO"]).apply(null,arguments)};var _emscripten_bind_ExtensionAndEffectMetadata_GetExtension_0=Module["_emscripten_bind_ExtensionAndEffectMetadata_GetExtension_0"]=function(){return(_emscripten_bind_ExtensionAndEffectMetadata_GetExtension_0=Module["_emscripten_bind_ExtensionAndEffectMetadata_GetExtension_0"]=Module["asm"]["QO"]).apply(null,arguments)};var _emscripten_bind_ExtensionAndEffectMetadata_GetMetadata_0=Module["_emscripten_bind_ExtensionAndEffectMetadata_GetMetadata_0"]=function(){return(_emscripten_bind_ExtensionAndEffectMetadata_GetMetadata_0=Module["_emscripten_bind_ExtensionAndEffectMetadata_GetMetadata_0"]=Module["asm"]["RO"]).apply(null,arguments)};var _emscripten_bind_ExtensionAndEffectMetadata___destroy___0=Module["_emscripten_bind_ExtensionAndEffectMetadata___destroy___0"]=function(){return(_emscripten_bind_ExtensionAndEffectMetadata___destroy___0=Module["_emscripten_bind_ExtensionAndEffectMetadata___destroy___0"]=Module["asm"]["SO"]).apply(null,arguments)};var _emscripten_bind_ExtensionAndInstructionMetadata_GetExtension_0=Module["_emscripten_bind_ExtensionAndInstructionMetadata_GetExtension_0"]=function(){return(_emscripten_bind_ExtensionAndInstructionMetadata_GetExtension_0=Module["_emscripten_bind_ExtensionAndInstructionMetadata_GetExtension_0"]=Module["asm"]["TO"]).apply(null,arguments)};var _emscripten_bind_ExtensionAndInstructionMetadata_GetMetadata_0=Module["_emscripten_bind_ExtensionAndInstructionMetadata_GetMetadata_0"]=function(){return(_emscripten_bind_ExtensionAndInstructionMetadata_GetMetadata_0=Module["_emscripten_bind_ExtensionAndInstructionMetadata_GetMetadata_0"]=Module["asm"]["UO"]).apply(null,arguments)};var _emscripten_bind_ExtensionAndInstructionMetadata___destroy___0=Module["_emscripten_bind_ExtensionAndInstructionMetadata___destroy___0"]=function(){return(_emscripten_bind_ExtensionAndInstructionMetadata___destroy___0=Module["_emscripten_bind_ExtensionAndInstructionMetadata___destroy___0"]=Module["asm"]["VO"]).apply(null,arguments)};var _emscripten_bind_ExtensionAndExpressionMetadata_GetExtension_0=Module["_emscripten_bind_ExtensionAndExpressionMetadata_GetExtension_0"]=function(){return(_emscripten_bind_ExtensionAndExpressionMetadata_GetExtension_0=Module["_emscripten_bind_ExtensionAndExpressionMetadata_GetExtension_0"]=Module["asm"]["WO"]).apply(null,arguments)};var _emscripten_bind_ExtensionAndExpressionMetadata_GetMetadata_0=Module["_emscripten_bind_ExtensionAndExpressionMetadata_GetMetadata_0"]=function(){return(_emscripten_bind_ExtensionAndExpressionMetadata_GetMetadata_0=Module["_emscripten_bind_ExtensionAndExpressionMetadata_GetMetadata_0"]=Module["asm"]["XO"]).apply(null,arguments)};var _emscripten_bind_ExtensionAndExpressionMetadata___destroy___0=Module["_emscripten_bind_ExtensionAndExpressionMetadata___destroy___0"]=function(){return(_emscripten_bind_ExtensionAndExpressionMetadata___destroy___0=Module["_emscripten_bind_ExtensionAndExpressionMetadata___destroy___0"]=Module["asm"]["YO"]).apply(null,arguments)};var _emscripten_bind_MetadataProvider_STATIC_GetExtensionAndBehaviorMetadata_2=Module["_emscripten_bind_MetadataProvider_STATIC_GetExtensionAndBehaviorMetadata_2"]=function(){return(_emscripten_bind_MetadataProvider_STATIC_GetExtensionAndBehaviorMetadata_2=Module["_emscripten_bind_MetadataProvider_STATIC_GetExtensionAndBehaviorMetadata_2"]=Module["asm"]["ZO"]).apply(null,arguments)};var _emscripten_bind_MetadataProvider_STATIC_GetExtensionAndObjectMetadata_2=Module["_emscripten_bind_MetadataProvider_STATIC_GetExtensionAndObjectMetadata_2"]=function(){return(_emscripten_bind_MetadataProvider_STATIC_GetExtensionAndObjectMetadata_2=Module["_emscripten_bind_MetadataProvider_STATIC_GetExtensionAndObjectMetadata_2"]=Module["asm"]["_O"]).apply(null,arguments)};var _emscripten_bind_MetadataProvider_STATIC_GetExtensionAndEffectMetadata_2=Module["_emscripten_bind_MetadataProvider_STATIC_GetExtensionAndEffectMetadata_2"]=function(){return(_emscripten_bind_MetadataProvider_STATIC_GetExtensionAndEffectMetadata_2=Module["_emscripten_bind_MetadataProvider_STATIC_GetExtensionAndEffectMetadata_2"]=Module["asm"]["$O"]).apply(null,arguments)};var _emscripten_bind_MetadataProvider_STATIC_GetExtensionAndActionMetadata_2=Module["_emscripten_bind_MetadataProvider_STATIC_GetExtensionAndActionMetadata_2"]=function(){return(_emscripten_bind_MetadataProvider_STATIC_GetExtensionAndActionMetadata_2=Module["_emscripten_bind_MetadataProvider_STATIC_GetExtensionAndActionMetadata_2"]=Module["asm"]["aP"]).apply(null,arguments)};var _emscripten_bind_MetadataProvider_STATIC_GetExtensionAndConditionMetadata_2=Module["_emscripten_bind_MetadataProvider_STATIC_GetExtensionAndConditionMetadata_2"]=function(){return(_emscripten_bind_MetadataProvider_STATIC_GetExtensionAndConditionMetadata_2=Module["_emscripten_bind_MetadataProvider_STATIC_GetExtensionAndConditionMetadata_2"]=Module["asm"]["bP"]).apply(null,arguments)};var _emscripten_bind_MetadataProvider_STATIC_GetExtensionAndExpressionMetadata_2=Module["_emscripten_bind_MetadataProvider_STATIC_GetExtensionAndExpressionMetadata_2"]=function(){return(_emscripten_bind_MetadataProvider_STATIC_GetExtensionAndExpressionMetadata_2=Module["_emscripten_bind_MetadataProvider_STATIC_GetExtensionAndExpressionMetadata_2"]=Module["asm"]["cP"]).apply(null,arguments)};var _emscripten_bind_MetadataProvider_STATIC_GetExtensionAndObjectExpressionMetadata_3=Module["_emscripten_bind_MetadataProvider_STATIC_GetExtensionAndObjectExpressionMetadata_3"]=function(){return(_emscripten_bind_MetadataProvider_STATIC_GetExtensionAndObjectExpressionMetadata_3=Module["_emscripten_bind_MetadataProvider_STATIC_GetExtensionAndObjectExpressionMetadata_3"]=Module["asm"]["dP"]).apply(null,arguments)};var _emscripten_bind_MetadataProvider_STATIC_GetExtensionAndBehaviorExpressionMetadata_3=Module["_emscripten_bind_MetadataProvider_STATIC_GetExtensionAndBehaviorExpressionMetadata_3"]=function(){return(_emscripten_bind_MetadataProvider_STATIC_GetExtensionAndBehaviorExpressionMetadata_3=Module["_emscripten_bind_MetadataProvider_STATIC_GetExtensionAndBehaviorExpressionMetadata_3"]=Module["asm"]["eP"]).apply(null,arguments)};var _emscripten_bind_MetadataProvider_STATIC_GetExtensionAndStrExpressionMetadata_2=Module["_emscripten_bind_MetadataProvider_STATIC_GetExtensionAndStrExpressionMetadata_2"]=function(){return(_emscripten_bind_MetadataProvider_STATIC_GetExtensionAndStrExpressionMetadata_2=Module["_emscripten_bind_MetadataProvider_STATIC_GetExtensionAndStrExpressionMetadata_2"]=Module["asm"]["fP"]).apply(null,arguments)};var _emscripten_bind_MetadataProvider_STATIC_GetExtensionAndObjectStrExpressionMetadata_3=Module["_emscripten_bind_MetadataProvider_STATIC_GetExtensionAndObjectStrExpressionMetadata_3"]=function(){return(_emscripten_bind_MetadataProvider_STATIC_GetExtensionAndObjectStrExpressionMetadata_3=Module["_emscripten_bind_MetadataProvider_STATIC_GetExtensionAndObjectStrExpressionMetadata_3"]=Module["asm"]["gP"]).apply(null,arguments)};var _emscripten_bind_MetadataProvider_STATIC_GetExtensionAndBehaviorStrExpressionMetadata_3=Module["_emscripten_bind_MetadataProvider_STATIC_GetExtensionAndBehaviorStrExpressionMetadata_3"]=function(){return(_emscripten_bind_MetadataProvider_STATIC_GetExtensionAndBehaviorStrExpressionMetadata_3=Module["_emscripten_bind_MetadataProvider_STATIC_GetExtensionAndBehaviorStrExpressionMetadata_3"]=Module["asm"]["hP"]).apply(null,arguments)};var _emscripten_bind_MetadataProvider_STATIC_GetBehaviorMetadata_2=Module["_emscripten_bind_MetadataProvider_STATIC_GetBehaviorMetadata_2"]=function(){return(_emscripten_bind_MetadataProvider_STATIC_GetBehaviorMetadata_2=Module["_emscripten_bind_MetadataProvider_STATIC_GetBehaviorMetadata_2"]=Module["asm"]["iP"]).apply(null,arguments)};var _emscripten_bind_MetadataProvider_STATIC_GetObjectMetadata_2=Module["_emscripten_bind_MetadataProvider_STATIC_GetObjectMetadata_2"]=function(){return(_emscripten_bind_MetadataProvider_STATIC_GetObjectMetadata_2=Module["_emscripten_bind_MetadataProvider_STATIC_GetObjectMetadata_2"]=Module["asm"]["jP"]).apply(null,arguments)};var _emscripten_bind_MetadataProvider_STATIC_GetEffectMetadata_2=Module["_emscripten_bind_MetadataProvider_STATIC_GetEffectMetadata_2"]=function(){return(_emscripten_bind_MetadataProvider_STATIC_GetEffectMetadata_2=Module["_emscripten_bind_MetadataProvider_STATIC_GetEffectMetadata_2"]=Module["asm"]["kP"]).apply(null,arguments)};var _emscripten_bind_MetadataProvider_STATIC_GetActionMetadata_2=Module["_emscripten_bind_MetadataProvider_STATIC_GetActionMetadata_2"]=function(){return(_emscripten_bind_MetadataProvider_STATIC_GetActionMetadata_2=Module["_emscripten_bind_MetadataProvider_STATIC_GetActionMetadata_2"]=Module["asm"]["lP"]).apply(null,arguments)};var _emscripten_bind_MetadataProvider_STATIC_GetConditionMetadata_2=Module["_emscripten_bind_MetadataProvider_STATIC_GetConditionMetadata_2"]=function(){return(_emscripten_bind_MetadataProvider_STATIC_GetConditionMetadata_2=Module["_emscripten_bind_MetadataProvider_STATIC_GetConditionMetadata_2"]=Module["asm"]["mP"]).apply(null,arguments)};var _emscripten_bind_MetadataProvider_STATIC_GetExpressionMetadata_2=Module["_emscripten_bind_MetadataProvider_STATIC_GetExpressionMetadata_2"]=function(){return(_emscripten_bind_MetadataProvider_STATIC_GetExpressionMetadata_2=Module["_emscripten_bind_MetadataProvider_STATIC_GetExpressionMetadata_2"]=Module["asm"]["nP"]).apply(null,arguments)};var _emscripten_bind_MetadataProvider_STATIC_GetObjectExpressionMetadata_3=Module["_emscripten_bind_MetadataProvider_STATIC_GetObjectExpressionMetadata_3"]=function(){return(_emscripten_bind_MetadataProvider_STATIC_GetObjectExpressionMetadata_3=Module["_emscripten_bind_MetadataProvider_STATIC_GetObjectExpressionMetadata_3"]=Module["asm"]["oP"]).apply(null,arguments)};var _emscripten_bind_MetadataProvider_STATIC_GetBehaviorExpressionMetadata_3=Module["_emscripten_bind_MetadataProvider_STATIC_GetBehaviorExpressionMetadata_3"]=function(){return(_emscripten_bind_MetadataProvider_STATIC_GetBehaviorExpressionMetadata_3=Module["_emscripten_bind_MetadataProvider_STATIC_GetBehaviorExpressionMetadata_3"]=Module["asm"]["pP"]).apply(null,arguments)};var _emscripten_bind_MetadataProvider_STATIC_GetStrExpressionMetadata_2=Module["_emscripten_bind_MetadataProvider_STATIC_GetStrExpressionMetadata_2"]=function(){return(_emscripten_bind_MetadataProvider_STATIC_GetStrExpressionMetadata_2=Module["_emscripten_bind_MetadataProvider_STATIC_GetStrExpressionMetadata_2"]=Module["asm"]["qP"]).apply(null,arguments)};var _emscripten_bind_MetadataProvider_STATIC_GetObjectStrExpressionMetadata_3=Module["_emscripten_bind_MetadataProvider_STATIC_GetObjectStrExpressionMetadata_3"]=function(){return(_emscripten_bind_MetadataProvider_STATIC_GetObjectStrExpressionMetadata_3=Module["_emscripten_bind_MetadataProvider_STATIC_GetObjectStrExpressionMetadata_3"]=Module["asm"]["rP"]).apply(null,arguments)};var _emscripten_bind_MetadataProvider_STATIC_GetBehaviorStrExpressionMetadata_3=Module["_emscripten_bind_MetadataProvider_STATIC_GetBehaviorStrExpressionMetadata_3"]=function(){return(_emscripten_bind_MetadataProvider_STATIC_GetBehaviorStrExpressionMetadata_3=Module["_emscripten_bind_MetadataProvider_STATIC_GetBehaviorStrExpressionMetadata_3"]=Module["asm"]["sP"]).apply(null,arguments)};var _emscripten_bind_MetadataProvider_STATIC_IsBadExpressionMetadata_1=Module["_emscripten_bind_MetadataProvider_STATIC_IsBadExpressionMetadata_1"]=function(){return(_emscripten_bind_MetadataProvider_STATIC_IsBadExpressionMetadata_1=Module["_emscripten_bind_MetadataProvider_STATIC_IsBadExpressionMetadata_1"]=Module["asm"]["tP"]).apply(null,arguments)};var _emscripten_bind_MetadataProvider_STATIC_IsBadInstructionMetadata_1=Module["_emscripten_bind_MetadataProvider_STATIC_IsBadInstructionMetadata_1"]=function(){return(_emscripten_bind_MetadataProvider_STATIC_IsBadInstructionMetadata_1=Module["_emscripten_bind_MetadataProvider_STATIC_IsBadInstructionMetadata_1"]=Module["asm"]["uP"]).apply(null,arguments)};var _emscripten_bind_MetadataProvider_STATIC_IsBadBehaviorMetadata_1=Module["_emscripten_bind_MetadataProvider_STATIC_IsBadBehaviorMetadata_1"]=function(){return(_emscripten_bind_MetadataProvider_STATIC_IsBadBehaviorMetadata_1=Module["_emscripten_bind_MetadataProvider_STATIC_IsBadBehaviorMetadata_1"]=Module["asm"]["vP"]).apply(null,arguments)};var _emscripten_bind_MetadataProvider_STATIC_IsBadObjectMetadata_1=Module["_emscripten_bind_MetadataProvider_STATIC_IsBadObjectMetadata_1"]=function(){return(_emscripten_bind_MetadataProvider_STATIC_IsBadObjectMetadata_1=Module["_emscripten_bind_MetadataProvider_STATIC_IsBadObjectMetadata_1"]=Module["asm"]["wP"]).apply(null,arguments)};var _emscripten_bind_MetadataProvider_STATIC_IsBadEffectMetadata_1=Module["_emscripten_bind_MetadataProvider_STATIC_IsBadEffectMetadata_1"]=function(){return(_emscripten_bind_MetadataProvider_STATIC_IsBadEffectMetadata_1=Module["_emscripten_bind_MetadataProvider_STATIC_IsBadEffectMetadata_1"]=Module["asm"]["xP"]).apply(null,arguments)};var _emscripten_bind_MetadataProvider___destroy___0=Module["_emscripten_bind_MetadataProvider___destroy___0"]=function(){return(_emscripten_bind_MetadataProvider___destroy___0=Module["_emscripten_bind_MetadataProvider___destroy___0"]=Module["asm"]["yP"]).apply(null,arguments)};var _emscripten_bind_ProjectDiagnostic_GetType_0=Module["_emscripten_bind_ProjectDiagnostic_GetType_0"]=function(){return(_emscripten_bind_ProjectDiagnostic_GetType_0=Module["_emscripten_bind_ProjectDiagnostic_GetType_0"]=Module["asm"]["zP"]).apply(null,arguments)};var _emscripten_bind_ProjectDiagnostic_GetMessage_0=Module["_emscripten_bind_ProjectDiagnostic_GetMessage_0"]=function(){return(_emscripten_bind_ProjectDiagnostic_GetMessage_0=Module["_emscripten_bind_ProjectDiagnostic_GetMessage_0"]=Module["asm"]["AP"]).apply(null,arguments)};var _emscripten_bind_ProjectDiagnostic_GetActualValue_0=Module["_emscripten_bind_ProjectDiagnostic_GetActualValue_0"]=function(){return(_emscripten_bind_ProjectDiagnostic_GetActualValue_0=Module["_emscripten_bind_ProjectDiagnostic_GetActualValue_0"]=Module["asm"]["BP"]).apply(null,arguments)};var _emscripten_bind_ProjectDiagnostic_GetExpectedValue_0=Module["_emscripten_bind_ProjectDiagnostic_GetExpectedValue_0"]=function(){return(_emscripten_bind_ProjectDiagnostic_GetExpectedValue_0=Module["_emscripten_bind_ProjectDiagnostic_GetExpectedValue_0"]=Module["asm"]["CP"]).apply(null,arguments)};var _emscripten_bind_ProjectDiagnostic_GetObjectName_0=Module["_emscripten_bind_ProjectDiagnostic_GetObjectName_0"]=function(){return(_emscripten_bind_ProjectDiagnostic_GetObjectName_0=Module["_emscripten_bind_ProjectDiagnostic_GetObjectName_0"]=Module["asm"]["DP"]).apply(null,arguments)};var _emscripten_bind_ProjectDiagnostic___destroy___0=Module["_emscripten_bind_ProjectDiagnostic___destroy___0"]=function(){return(_emscripten_bind_ProjectDiagnostic___destroy___0=Module["_emscripten_bind_ProjectDiagnostic___destroy___0"]=Module["asm"]["EP"]).apply(null,arguments)};var _emscripten_bind_DiagnosticReport_DiagnosticReport_0=Module["_emscripten_bind_DiagnosticReport_DiagnosticReport_0"]=function(){return(_emscripten_bind_DiagnosticReport_DiagnosticReport_0=Module["_emscripten_bind_DiagnosticReport_DiagnosticReport_0"]=Module["asm"]["FP"]).apply(null,arguments)};var _emscripten_bind_DiagnosticReport_Get_1=Module["_emscripten_bind_DiagnosticReport_Get_1"]=function(){return(_emscripten_bind_DiagnosticReport_Get_1=Module["_emscripten_bind_DiagnosticReport_Get_1"]=Module["asm"]["GP"]).apply(null,arguments)};var _emscripten_bind_DiagnosticReport_Count_0=Module["_emscripten_bind_DiagnosticReport_Count_0"]=function(){return(_emscripten_bind_DiagnosticReport_Count_0=Module["_emscripten_bind_DiagnosticReport_Count_0"]=Module["asm"]["HP"]).apply(null,arguments)};var _emscripten_bind_DiagnosticReport_GetSceneName_0=Module["_emscripten_bind_DiagnosticReport_GetSceneName_0"]=function(){return(_emscripten_bind_DiagnosticReport_GetSceneName_0=Module["_emscripten_bind_DiagnosticReport_GetSceneName_0"]=Module["asm"]["IP"]).apply(null,arguments)};var _emscripten_bind_DiagnosticReport___destroy___0=Module["_emscripten_bind_DiagnosticReport___destroy___0"]=function(){return(_emscripten_bind_DiagnosticReport___destroy___0=Module["_emscripten_bind_DiagnosticReport___destroy___0"]=Module["asm"]["JP"]).apply(null,arguments)};var _emscripten_bind_WholeProjectDiagnosticReport_Get_1=Module["_emscripten_bind_WholeProjectDiagnosticReport_Get_1"]=function(){return(_emscripten_bind_WholeProjectDiagnosticReport_Get_1=Module["_emscripten_bind_WholeProjectDiagnosticReport_Get_1"]=Module["asm"]["KP"]).apply(null,arguments)};var _emscripten_bind_WholeProjectDiagnosticReport_Count_0=Module["_emscripten_bind_WholeProjectDiagnosticReport_Count_0"]=function(){return(_emscripten_bind_WholeProjectDiagnosticReport_Count_0=Module["_emscripten_bind_WholeProjectDiagnosticReport_Count_0"]=Module["asm"]["LP"]).apply(null,arguments)};var _emscripten_bind_WholeProjectDiagnosticReport_HasAnyIssue_0=Module["_emscripten_bind_WholeProjectDiagnosticReport_HasAnyIssue_0"]=function(){return(_emscripten_bind_WholeProjectDiagnosticReport_HasAnyIssue_0=Module["_emscripten_bind_WholeProjectDiagnosticReport_HasAnyIssue_0"]=Module["asm"]["MP"]).apply(null,arguments)};var _emscripten_bind_WholeProjectDiagnosticReport___destroy___0=Module["_emscripten_bind_WholeProjectDiagnosticReport___destroy___0"]=function(){return(_emscripten_bind_WholeProjectDiagnosticReport___destroy___0=Module["_emscripten_bind_WholeProjectDiagnosticReport___destroy___0"]=Module["asm"]["NP"]).apply(null,arguments)};var _emscripten_bind_ExpressionParserError_GetType_0=Module["_emscripten_bind_ExpressionParserError_GetType_0"]=function(){return(_emscripten_bind_ExpressionParserError_GetType_0=Module["_emscripten_bind_ExpressionParserError_GetType_0"]=Module["asm"]["OP"]).apply(null,arguments)};var _emscripten_bind_ExpressionParserError_GetMessage_0=Module["_emscripten_bind_ExpressionParserError_GetMessage_0"]=function(){return(_emscripten_bind_ExpressionParserError_GetMessage_0=Module["_emscripten_bind_ExpressionParserError_GetMessage_0"]=Module["asm"]["PP"]).apply(null,arguments)};var _emscripten_bind_ExpressionParserError_GetStartPosition_0=Module["_emscripten_bind_ExpressionParserError_GetStartPosition_0"]=function(){return(_emscripten_bind_ExpressionParserError_GetStartPosition_0=Module["_emscripten_bind_ExpressionParserError_GetStartPosition_0"]=Module["asm"]["QP"]).apply(null,arguments)};var _emscripten_bind_ExpressionParserError_GetEndPosition_0=Module["_emscripten_bind_ExpressionParserError_GetEndPosition_0"]=function(){return(_emscripten_bind_ExpressionParserError_GetEndPosition_0=Module["_emscripten_bind_ExpressionParserError_GetEndPosition_0"]=Module["asm"]["RP"]).apply(null,arguments)};var _emscripten_bind_ExpressionParserError___destroy___0=Module["_emscripten_bind_ExpressionParserError___destroy___0"]=function(){return(_emscripten_bind_ExpressionParserError___destroy___0=Module["_emscripten_bind_ExpressionParserError___destroy___0"]=Module["asm"]["SP"]).apply(null,arguments)};var _emscripten_bind_VectorExpressionParserError_size_0=Module["_emscripten_bind_VectorExpressionParserError_size_0"]=function(){return(_emscripten_bind_VectorExpressionParserError_size_0=Module["_emscripten_bind_VectorExpressionParserError_size_0"]=Module["asm"]["TP"]).apply(null,arguments)};var _emscripten_bind_VectorExpressionParserError_at_1=Module["_emscripten_bind_VectorExpressionParserError_at_1"]=function(){return(_emscripten_bind_VectorExpressionParserError_at_1=Module["_emscripten_bind_VectorExpressionParserError_at_1"]=Module["asm"]["UP"]).apply(null,arguments)};var _emscripten_bind_VectorExpressionParserError___destroy___0=Module["_emscripten_bind_VectorExpressionParserError___destroy___0"]=function(){return(_emscripten_bind_VectorExpressionParserError___destroy___0=Module["_emscripten_bind_VectorExpressionParserError___destroy___0"]=Module["asm"]["VP"]).apply(null,arguments)};var _emscripten_bind_ExpressionParser2NodeWorker___destroy___0=Module["_emscripten_bind_ExpressionParser2NodeWorker___destroy___0"]=function(){return(_emscripten_bind_ExpressionParser2NodeWorker___destroy___0=Module["_emscripten_bind_ExpressionParser2NodeWorker___destroy___0"]=Module["asm"]["WP"]).apply(null,arguments)};var _emscripten_bind_ExpressionValidator_ExpressionValidator_4=Module["_emscripten_bind_ExpressionValidator_ExpressionValidator_4"]=function(){return(_emscripten_bind_ExpressionValidator_ExpressionValidator_4=Module["_emscripten_bind_ExpressionValidator_ExpressionValidator_4"]=Module["asm"]["XP"]).apply(null,arguments)};var _emscripten_bind_ExpressionValidator_GetAllErrors_0=Module["_emscripten_bind_ExpressionValidator_GetAllErrors_0"]=function(){return(_emscripten_bind_ExpressionValidator_GetAllErrors_0=Module["_emscripten_bind_ExpressionValidator_GetAllErrors_0"]=Module["asm"]["YP"]).apply(null,arguments)};var _emscripten_bind_ExpressionValidator_GetFatalErrors_0=Module["_emscripten_bind_ExpressionValidator_GetFatalErrors_0"]=function(){return(_emscripten_bind_ExpressionValidator_GetFatalErrors_0=Module["_emscripten_bind_ExpressionValidator_GetFatalErrors_0"]=Module["asm"]["ZP"]).apply(null,arguments)};var _emscripten_bind_ExpressionValidator_GetDeprecationWarnings_0=Module["_emscripten_bind_ExpressionValidator_GetDeprecationWarnings_0"]=function(){return(_emscripten_bind_ExpressionValidator_GetDeprecationWarnings_0=Module["_emscripten_bind_ExpressionValidator_GetDeprecationWarnings_0"]=Module["asm"]["_P"]).apply(null,arguments)};var _emscripten_bind_ExpressionValidator___destroy___0=Module["_emscripten_bind_ExpressionValidator___destroy___0"]=function(){return(_emscripten_bind_ExpressionValidator___destroy___0=Module["_emscripten_bind_ExpressionValidator___destroy___0"]=Module["asm"]["$P"]).apply(null,arguments)};var _emscripten_bind_ExpressionCompletionDescription_GetCompletionKind_0=Module["_emscripten_bind_ExpressionCompletionDescription_GetCompletionKind_0"]=function(){return(_emscripten_bind_ExpressionCompletionDescription_GetCompletionKind_0=Module["_emscripten_bind_ExpressionCompletionDescription_GetCompletionKind_0"]=Module["asm"]["aQ"]).apply(null,arguments)};var _emscripten_bind_ExpressionCompletionDescription_GetType_0=Module["_emscripten_bind_ExpressionCompletionDescription_GetType_0"]=function(){return(_emscripten_bind_ExpressionCompletionDescription_GetType_0=Module["_emscripten_bind_ExpressionCompletionDescription_GetType_0"]=Module["asm"]["bQ"]).apply(null,arguments)};var _emscripten_bind_ExpressionCompletionDescription_GetVariableType_0=Module["_emscripten_bind_ExpressionCompletionDescription_GetVariableType_0"]=function(){return(_emscripten_bind_ExpressionCompletionDescription_GetVariableType_0=Module["_emscripten_bind_ExpressionCompletionDescription_GetVariableType_0"]=Module["asm"]["cQ"]).apply(null,arguments)};var _emscripten_bind_ExpressionCompletionDescription_GetVariableScope_0=Module["_emscripten_bind_ExpressionCompletionDescription_GetVariableScope_0"]=function(){return(_emscripten_bind_ExpressionCompletionDescription_GetVariableScope_0=Module["_emscripten_bind_ExpressionCompletionDescription_GetVariableScope_0"]=Module["asm"]["dQ"]).apply(null,arguments)};var _emscripten_bind_ExpressionCompletionDescription_GetPrefix_0=Module["_emscripten_bind_ExpressionCompletionDescription_GetPrefix_0"]=function(){return(_emscripten_bind_ExpressionCompletionDescription_GetPrefix_0=Module["_emscripten_bind_ExpressionCompletionDescription_GetPrefix_0"]=Module["asm"]["eQ"]).apply(null,arguments)};var _emscripten_bind_ExpressionCompletionDescription_GetCompletion_0=Module["_emscripten_bind_ExpressionCompletionDescription_GetCompletion_0"]=function(){return(_emscripten_bind_ExpressionCompletionDescription_GetCompletion_0=Module["_emscripten_bind_ExpressionCompletionDescription_GetCompletion_0"]=Module["asm"]["fQ"]).apply(null,arguments)};var _emscripten_bind_ExpressionCompletionDescription_GetObjectName_0=Module["_emscripten_bind_ExpressionCompletionDescription_GetObjectName_0"]=function(){return(_emscripten_bind_ExpressionCompletionDescription_GetObjectName_0=Module["_emscripten_bind_ExpressionCompletionDescription_GetObjectName_0"]=Module["asm"]["gQ"]).apply(null,arguments)};var _emscripten_bind_ExpressionCompletionDescription_GetBehaviorName_0=Module["_emscripten_bind_ExpressionCompletionDescription_GetBehaviorName_0"]=function(){return(_emscripten_bind_ExpressionCompletionDescription_GetBehaviorName_0=Module["_emscripten_bind_ExpressionCompletionDescription_GetBehaviorName_0"]=Module["asm"]["hQ"]).apply(null,arguments)};var _emscripten_bind_ExpressionCompletionDescription_IsExact_0=Module["_emscripten_bind_ExpressionCompletionDescription_IsExact_0"]=function(){return(_emscripten_bind_ExpressionCompletionDescription_IsExact_0=Module["_emscripten_bind_ExpressionCompletionDescription_IsExact_0"]=Module["asm"]["iQ"]).apply(null,arguments)};var _emscripten_bind_ExpressionCompletionDescription_IsLastParameter_0=Module["_emscripten_bind_ExpressionCompletionDescription_IsLastParameter_0"]=function(){return(_emscripten_bind_ExpressionCompletionDescription_IsLastParameter_0=Module["_emscripten_bind_ExpressionCompletionDescription_IsLastParameter_0"]=Module["asm"]["jQ"]).apply(null,arguments)};var _emscripten_bind_ExpressionCompletionDescription_GetReplacementStartPosition_0=Module["_emscripten_bind_ExpressionCompletionDescription_GetReplacementStartPosition_0"]=function(){return(_emscripten_bind_ExpressionCompletionDescription_GetReplacementStartPosition_0=Module["_emscripten_bind_ExpressionCompletionDescription_GetReplacementStartPosition_0"]=Module["asm"]["kQ"]).apply(null,arguments)};var _emscripten_bind_ExpressionCompletionDescription_GetReplacementEndPosition_0=Module["_emscripten_bind_ExpressionCompletionDescription_GetReplacementEndPosition_0"]=function(){return(_emscripten_bind_ExpressionCompletionDescription_GetReplacementEndPosition_0=Module["_emscripten_bind_ExpressionCompletionDescription_GetReplacementEndPosition_0"]=Module["asm"]["lQ"]).apply(null,arguments)};var _emscripten_bind_ExpressionCompletionDescription_GetParameterMetadata_0=Module["_emscripten_bind_ExpressionCompletionDescription_GetParameterMetadata_0"]=function(){return(_emscripten_bind_ExpressionCompletionDescription_GetParameterMetadata_0=Module["_emscripten_bind_ExpressionCompletionDescription_GetParameterMetadata_0"]=Module["asm"]["mQ"]).apply(null,arguments)};var _emscripten_bind_ExpressionCompletionDescription_HasObjectConfiguration_0=Module["_emscripten_bind_ExpressionCompletionDescription_HasObjectConfiguration_0"]=function(){return(_emscripten_bind_ExpressionCompletionDescription_HasObjectConfiguration_0=Module["_emscripten_bind_ExpressionCompletionDescription_HasObjectConfiguration_0"]=Module["asm"]["nQ"]).apply(null,arguments)};var _emscripten_bind_ExpressionCompletionDescription_GetObjectConfiguration_0=Module["_emscripten_bind_ExpressionCompletionDescription_GetObjectConfiguration_0"]=function(){return(_emscripten_bind_ExpressionCompletionDescription_GetObjectConfiguration_0=Module["_emscripten_bind_ExpressionCompletionDescription_GetObjectConfiguration_0"]=Module["asm"]["oQ"]).apply(null,arguments)};var _emscripten_bind_ExpressionCompletionDescription_ToString_0=Module["_emscripten_bind_ExpressionCompletionDescription_ToString_0"]=function(){return(_emscripten_bind_ExpressionCompletionDescription_ToString_0=Module["_emscripten_bind_ExpressionCompletionDescription_ToString_0"]=Module["asm"]["pQ"]).apply(null,arguments)};var _emscripten_bind_ExpressionCompletionDescription___destroy___0=Module["_emscripten_bind_ExpressionCompletionDescription___destroy___0"]=function(){return(_emscripten_bind_ExpressionCompletionDescription___destroy___0=Module["_emscripten_bind_ExpressionCompletionDescription___destroy___0"]=Module["asm"]["qQ"]).apply(null,arguments)};var _emscripten_bind_VectorExpressionCompletionDescription_size_0=Module["_emscripten_bind_VectorExpressionCompletionDescription_size_0"]=function(){return(_emscripten_bind_VectorExpressionCompletionDescription_size_0=Module["_emscripten_bind_VectorExpressionCompletionDescription_size_0"]=Module["asm"]["rQ"]).apply(null,arguments)};var _emscripten_bind_VectorExpressionCompletionDescription_at_1=Module["_emscripten_bind_VectorExpressionCompletionDescription_at_1"]=function(){return(_emscripten_bind_VectorExpressionCompletionDescription_at_1=Module["_emscripten_bind_VectorExpressionCompletionDescription_at_1"]=Module["asm"]["sQ"]).apply(null,arguments)};var _emscripten_bind_VectorExpressionCompletionDescription___destroy___0=Module["_emscripten_bind_VectorExpressionCompletionDescription___destroy___0"]=function(){return(_emscripten_bind_VectorExpressionCompletionDescription___destroy___0=Module["_emscripten_bind_VectorExpressionCompletionDescription___destroy___0"]=Module["asm"]["tQ"]).apply(null,arguments)};var _emscripten_bind_ExpressionCompletionFinder_STATIC_GetCompletionDescriptionsFor_5=Module["_emscripten_bind_ExpressionCompletionFinder_STATIC_GetCompletionDescriptionsFor_5"]=function(){return(_emscripten_bind_ExpressionCompletionFinder_STATIC_GetCompletionDescriptionsFor_5=Module["_emscripten_bind_ExpressionCompletionFinder_STATIC_GetCompletionDescriptionsFor_5"]=Module["asm"]["uQ"]).apply(null,arguments)};var _emscripten_bind_ExpressionCompletionFinder_GetCompletionDescriptions_0=Module["_emscripten_bind_ExpressionCompletionFinder_GetCompletionDescriptions_0"]=function(){return(_emscripten_bind_ExpressionCompletionFinder_GetCompletionDescriptions_0=Module["_emscripten_bind_ExpressionCompletionFinder_GetCompletionDescriptions_0"]=Module["asm"]["vQ"]).apply(null,arguments)};var _emscripten_bind_ExpressionCompletionFinder___destroy___0=Module["_emscripten_bind_ExpressionCompletionFinder___destroy___0"]=function(){return(_emscripten_bind_ExpressionCompletionFinder___destroy___0=Module["_emscripten_bind_ExpressionCompletionFinder___destroy___0"]=Module["asm"]["wQ"]).apply(null,arguments)};var _emscripten_bind_ExpressionNodeLocationFinder_STATIC_GetNodeAtPosition_2=Module["_emscripten_bind_ExpressionNodeLocationFinder_STATIC_GetNodeAtPosition_2"]=function(){return(_emscripten_bind_ExpressionNodeLocationFinder_STATIC_GetNodeAtPosition_2=Module["_emscripten_bind_ExpressionNodeLocationFinder_STATIC_GetNodeAtPosition_2"]=Module["asm"]["xQ"]).apply(null,arguments)};var _emscripten_bind_ExpressionNodeLocationFinder___destroy___0=Module["_emscripten_bind_ExpressionNodeLocationFinder___destroy___0"]=function(){return(_emscripten_bind_ExpressionNodeLocationFinder___destroy___0=Module["_emscripten_bind_ExpressionNodeLocationFinder___destroy___0"]=Module["asm"]["yQ"]).apply(null,arguments)};var _emscripten_bind_ExpressionTypeFinder_STATIC_GetType_4=Module["_emscripten_bind_ExpressionTypeFinder_STATIC_GetType_4"]=function(){return(_emscripten_bind_ExpressionTypeFinder_STATIC_GetType_4=Module["_emscripten_bind_ExpressionTypeFinder_STATIC_GetType_4"]=Module["asm"]["zQ"]).apply(null,arguments)};var _emscripten_bind_ExpressionTypeFinder___destroy___0=Module["_emscripten_bind_ExpressionTypeFinder___destroy___0"]=function(){return(_emscripten_bind_ExpressionTypeFinder___destroy___0=Module["_emscripten_bind_ExpressionTypeFinder___destroy___0"]=Module["asm"]["AQ"]).apply(null,arguments)};var _emscripten_bind_ExpressionNode_Visit_1=Module["_emscripten_bind_ExpressionNode_Visit_1"]=function(){return(_emscripten_bind_ExpressionNode_Visit_1=Module["_emscripten_bind_ExpressionNode_Visit_1"]=Module["asm"]["BQ"]).apply(null,arguments)};var _emscripten_bind_ExpressionNode___destroy___0=Module["_emscripten_bind_ExpressionNode___destroy___0"]=function(){return(_emscripten_bind_ExpressionNode___destroy___0=Module["_emscripten_bind_ExpressionNode___destroy___0"]=Module["asm"]["CQ"]).apply(null,arguments)};var _emscripten_bind_UniquePtrExpressionNode_get_0=Module["_emscripten_bind_UniquePtrExpressionNode_get_0"]=function(){return(_emscripten_bind_UniquePtrExpressionNode_get_0=Module["_emscripten_bind_UniquePtrExpressionNode_get_0"]=Module["asm"]["DQ"]).apply(null,arguments)};var _emscripten_bind_UniquePtrExpressionNode___destroy___0=Module["_emscripten_bind_UniquePtrExpressionNode___destroy___0"]=function(){return(_emscripten_bind_UniquePtrExpressionNode___destroy___0=Module["_emscripten_bind_UniquePtrExpressionNode___destroy___0"]=Module["asm"]["EQ"]).apply(null,arguments)};var _emscripten_bind_ExpressionParser2_ExpressionParser2_0=Module["_emscripten_bind_ExpressionParser2_ExpressionParser2_0"]=function(){return(_emscripten_bind_ExpressionParser2_ExpressionParser2_0=Module["_emscripten_bind_ExpressionParser2_ExpressionParser2_0"]=Module["asm"]["FQ"]).apply(null,arguments)};var _emscripten_bind_ExpressionParser2_ParseExpression_1=Module["_emscripten_bind_ExpressionParser2_ParseExpression_1"]=function(){return(_emscripten_bind_ExpressionParser2_ParseExpression_1=Module["_emscripten_bind_ExpressionParser2_ParseExpression_1"]=Module["asm"]["GQ"]).apply(null,arguments)};var _emscripten_bind_ExpressionParser2___destroy___0=Module["_emscripten_bind_ExpressionParser2___destroy___0"]=function(){return(_emscripten_bind_ExpressionParser2___destroy___0=Module["_emscripten_bind_ExpressionParser2___destroy___0"]=Module["asm"]["HQ"]).apply(null,arguments)};var _emscripten_bind_EventsFunction_EventsFunction_0=Module["_emscripten_bind_EventsFunction_EventsFunction_0"]=function(){return(_emscripten_bind_EventsFunction_EventsFunction_0=Module["_emscripten_bind_EventsFunction_EventsFunction_0"]=Module["asm"]["IQ"]).apply(null,arguments)};var _emscripten_bind_EventsFunction_Clone_0=Module["_emscripten_bind_EventsFunction_Clone_0"]=function(){return(_emscripten_bind_EventsFunction_Clone_0=Module["_emscripten_bind_EventsFunction_Clone_0"]=Module["asm"]["JQ"]).apply(null,arguments)};var _emscripten_bind_EventsFunction_SetDescription_1=Module["_emscripten_bind_EventsFunction_SetDescription_1"]=function(){return(_emscripten_bind_EventsFunction_SetDescription_1=Module["_emscripten_bind_EventsFunction_SetDescription_1"]=Module["asm"]["KQ"]).apply(null,arguments)};var _emscripten_bind_EventsFunction_GetDescription_0=Module["_emscripten_bind_EventsFunction_GetDescription_0"]=function(){return(_emscripten_bind_EventsFunction_GetDescription_0=Module["_emscripten_bind_EventsFunction_GetDescription_0"]=Module["asm"]["LQ"]).apply(null,arguments)};var _emscripten_bind_EventsFunction_SetName_1=Module["_emscripten_bind_EventsFunction_SetName_1"]=function(){return(_emscripten_bind_EventsFunction_SetName_1=Module["_emscripten_bind_EventsFunction_SetName_1"]=Module["asm"]["MQ"]).apply(null,arguments)};var _emscripten_bind_EventsFunction_GetName_0=Module["_emscripten_bind_EventsFunction_GetName_0"]=function(){return(_emscripten_bind_EventsFunction_GetName_0=Module["_emscripten_bind_EventsFunction_GetName_0"]=Module["asm"]["NQ"]).apply(null,arguments)};var _emscripten_bind_EventsFunction_SetFullName_1=Module["_emscripten_bind_EventsFunction_SetFullName_1"]=function(){return(_emscripten_bind_EventsFunction_SetFullName_1=Module["_emscripten_bind_EventsFunction_SetFullName_1"]=Module["asm"]["OQ"]).apply(null,arguments)};var _emscripten_bind_EventsFunction_GetFullName_0=Module["_emscripten_bind_EventsFunction_GetFullName_0"]=function(){return(_emscripten_bind_EventsFunction_GetFullName_0=Module["_emscripten_bind_EventsFunction_GetFullName_0"]=Module["asm"]["PQ"]).apply(null,arguments)};var _emscripten_bind_EventsFunction_SetSentence_1=Module["_emscripten_bind_EventsFunction_SetSentence_1"]=function(){return(_emscripten_bind_EventsFunction_SetSentence_1=Module["_emscripten_bind_EventsFunction_SetSentence_1"]=Module["asm"]["QQ"]).apply(null,arguments)};var _emscripten_bind_EventsFunction_GetSentence_0=Module["_emscripten_bind_EventsFunction_GetSentence_0"]=function(){return(_emscripten_bind_EventsFunction_GetSentence_0=Module["_emscripten_bind_EventsFunction_GetSentence_0"]=Module["asm"]["RQ"]).apply(null,arguments)};var _emscripten_bind_EventsFunction_SetGroup_1=Module["_emscripten_bind_EventsFunction_SetGroup_1"]=function(){return(_emscripten_bind_EventsFunction_SetGroup_1=Module["_emscripten_bind_EventsFunction_SetGroup_1"]=Module["asm"]["SQ"]).apply(null,arguments)};var _emscripten_bind_EventsFunction_GetGroup_0=Module["_emscripten_bind_EventsFunction_GetGroup_0"]=function(){return(_emscripten_bind_EventsFunction_GetGroup_0=Module["_emscripten_bind_EventsFunction_GetGroup_0"]=Module["asm"]["TQ"]).apply(null,arguments)};var _emscripten_bind_EventsFunction_SetGetterName_1=Module["_emscripten_bind_EventsFunction_SetGetterName_1"]=function(){return(_emscripten_bind_EventsFunction_SetGetterName_1=Module["_emscripten_bind_EventsFunction_SetGetterName_1"]=Module["asm"]["UQ"]).apply(null,arguments)};var _emscripten_bind_EventsFunction_GetGetterName_0=Module["_emscripten_bind_EventsFunction_GetGetterName_0"]=function(){return(_emscripten_bind_EventsFunction_GetGetterName_0=Module["_emscripten_bind_EventsFunction_GetGetterName_0"]=Module["asm"]["VQ"]).apply(null,arguments)};var _emscripten_bind_EventsFunction_SetExpressionType_1=Module["_emscripten_bind_EventsFunction_SetExpressionType_1"]=function(){return(_emscripten_bind_EventsFunction_SetExpressionType_1=Module["_emscripten_bind_EventsFunction_SetExpressionType_1"]=Module["asm"]["WQ"]).apply(null,arguments)};var _emscripten_bind_EventsFunction_GetExpressionType_0=Module["_emscripten_bind_EventsFunction_GetExpressionType_0"]=function(){return(_emscripten_bind_EventsFunction_GetExpressionType_0=Module["_emscripten_bind_EventsFunction_GetExpressionType_0"]=Module["asm"]["XQ"]).apply(null,arguments)};var _emscripten_bind_EventsFunction_SetPrivate_1=Module["_emscripten_bind_EventsFunction_SetPrivate_1"]=function(){return(_emscripten_bind_EventsFunction_SetPrivate_1=Module["_emscripten_bind_EventsFunction_SetPrivate_1"]=Module["asm"]["YQ"]).apply(null,arguments)};var _emscripten_bind_EventsFunction_IsPrivate_0=Module["_emscripten_bind_EventsFunction_IsPrivate_0"]=function(){return(_emscripten_bind_EventsFunction_IsPrivate_0=Module["_emscripten_bind_EventsFunction_IsPrivate_0"]=Module["asm"]["ZQ"]).apply(null,arguments)};var _emscripten_bind_EventsFunction_SetAsync_1=Module["_emscripten_bind_EventsFunction_SetAsync_1"]=function(){return(_emscripten_bind_EventsFunction_SetAsync_1=Module["_emscripten_bind_EventsFunction_SetAsync_1"]=Module["asm"]["_Q"]).apply(null,arguments)};var _emscripten_bind_EventsFunction_IsAsync_0=Module["_emscripten_bind_EventsFunction_IsAsync_0"]=function(){return(_emscripten_bind_EventsFunction_IsAsync_0=Module["_emscripten_bind_EventsFunction_IsAsync_0"]=Module["asm"]["$Q"]).apply(null,arguments)};var _emscripten_bind_EventsFunction_SetHelpUrl_1=Module["_emscripten_bind_EventsFunction_SetHelpUrl_1"]=function(){return(_emscripten_bind_EventsFunction_SetHelpUrl_1=Module["_emscripten_bind_EventsFunction_SetHelpUrl_1"]=Module["asm"]["aR"]).apply(null,arguments)};var _emscripten_bind_EventsFunction_GetHelpUrl_0=Module["_emscripten_bind_EventsFunction_GetHelpUrl_0"]=function(){return(_emscripten_bind_EventsFunction_GetHelpUrl_0=Module["_emscripten_bind_EventsFunction_GetHelpUrl_0"]=Module["asm"]["bR"]).apply(null,arguments)};var _emscripten_bind_EventsFunction_SetDeprecated_1=Module["_emscripten_bind_EventsFunction_SetDeprecated_1"]=function(){return(_emscripten_bind_EventsFunction_SetDeprecated_1=Module["_emscripten_bind_EventsFunction_SetDeprecated_1"]=Module["asm"]["cR"]).apply(null,arguments)};var _emscripten_bind_EventsFunction_IsDeprecated_0=Module["_emscripten_bind_EventsFunction_IsDeprecated_0"]=function(){return(_emscripten_bind_EventsFunction_IsDeprecated_0=Module["_emscripten_bind_EventsFunction_IsDeprecated_0"]=Module["asm"]["dR"]).apply(null,arguments)};var _emscripten_bind_EventsFunction_SetDeprecationMessage_1=Module["_emscripten_bind_EventsFunction_SetDeprecationMessage_1"]=function(){return(_emscripten_bind_EventsFunction_SetDeprecationMessage_1=Module["_emscripten_bind_EventsFunction_SetDeprecationMessage_1"]=Module["asm"]["eR"]).apply(null,arguments)};var _emscripten_bind_EventsFunction_GetDeprecationMessage_0=Module["_emscripten_bind_EventsFunction_GetDeprecationMessage_0"]=function(){return(_emscripten_bind_EventsFunction_GetDeprecationMessage_0=Module["_emscripten_bind_EventsFunction_GetDeprecationMessage_0"]=Module["asm"]["fR"]).apply(null,arguments)};var _emscripten_bind_EventsFunction_IsAction_0=Module["_emscripten_bind_EventsFunction_IsAction_0"]=function(){return(_emscripten_bind_EventsFunction_IsAction_0=Module["_emscripten_bind_EventsFunction_IsAction_0"]=Module["asm"]["gR"]).apply(null,arguments)};var _emscripten_bind_EventsFunction_IsExpression_0=Module["_emscripten_bind_EventsFunction_IsExpression_0"]=function(){return(_emscripten_bind_EventsFunction_IsExpression_0=Module["_emscripten_bind_EventsFunction_IsExpression_0"]=Module["asm"]["hR"]).apply(null,arguments)};var _emscripten_bind_EventsFunction_IsCondition_0=Module["_emscripten_bind_EventsFunction_IsCondition_0"]=function(){return(_emscripten_bind_EventsFunction_IsCondition_0=Module["_emscripten_bind_EventsFunction_IsCondition_0"]=Module["asm"]["iR"]).apply(null,arguments)};var _emscripten_bind_EventsFunction_SetFunctionType_1=Module["_emscripten_bind_EventsFunction_SetFunctionType_1"]=function(){return(_emscripten_bind_EventsFunction_SetFunctionType_1=Module["_emscripten_bind_EventsFunction_SetFunctionType_1"]=Module["asm"]["jR"]).apply(null,arguments)};var _emscripten_bind_EventsFunction_GetFunctionType_0=Module["_emscripten_bind_EventsFunction_GetFunctionType_0"]=function(){return(_emscripten_bind_EventsFunction_GetFunctionType_0=Module["_emscripten_bind_EventsFunction_GetFunctionType_0"]=Module["asm"]["kR"]).apply(null,arguments)};var _emscripten_bind_EventsFunction_GetEvents_0=Module["_emscripten_bind_EventsFunction_GetEvents_0"]=function(){return(_emscripten_bind_EventsFunction_GetEvents_0=Module["_emscripten_bind_EventsFunction_GetEvents_0"]=Module["asm"]["lR"]).apply(null,arguments)};var _emscripten_bind_EventsFunction_GetParameters_0=Module["_emscripten_bind_EventsFunction_GetParameters_0"]=function(){return(_emscripten_bind_EventsFunction_GetParameters_0=Module["_emscripten_bind_EventsFunction_GetParameters_0"]=Module["asm"]["mR"]).apply(null,arguments)};var _emscripten_bind_EventsFunction_GetParametersForEvents_1=Module["_emscripten_bind_EventsFunction_GetParametersForEvents_1"]=function(){return(_emscripten_bind_EventsFunction_GetParametersForEvents_1=Module["_emscripten_bind_EventsFunction_GetParametersForEvents_1"]=Module["asm"]["nR"]).apply(null,arguments)};var _emscripten_bind_EventsFunction_GetObjectGroups_0=Module["_emscripten_bind_EventsFunction_GetObjectGroups_0"]=function(){return(_emscripten_bind_EventsFunction_GetObjectGroups_0=Module["_emscripten_bind_EventsFunction_GetObjectGroups_0"]=Module["asm"]["oR"]).apply(null,arguments)};var _emscripten_bind_EventsFunction_SerializeTo_1=Module["_emscripten_bind_EventsFunction_SerializeTo_1"]=function(){return(_emscripten_bind_EventsFunction_SerializeTo_1=Module["_emscripten_bind_EventsFunction_SerializeTo_1"]=Module["asm"]["pR"]).apply(null,arguments)};var _emscripten_bind_EventsFunction_UnserializeFrom_2=Module["_emscripten_bind_EventsFunction_UnserializeFrom_2"]=function(){return(_emscripten_bind_EventsFunction_UnserializeFrom_2=Module["_emscripten_bind_EventsFunction_UnserializeFrom_2"]=Module["asm"]["qR"]).apply(null,arguments)};var _emscripten_bind_EventsFunction___destroy___0=Module["_emscripten_bind_EventsFunction___destroy___0"]=function(){return(_emscripten_bind_EventsFunction___destroy___0=Module["_emscripten_bind_EventsFunction___destroy___0"]=Module["asm"]["rR"]).apply(null,arguments)};var _emscripten_bind_FunctionFolderOrFunction_FunctionFolderOrFunction_0=Module["_emscripten_bind_FunctionFolderOrFunction_FunctionFolderOrFunction_0"]=function(){return(_emscripten_bind_FunctionFolderOrFunction_FunctionFolderOrFunction_0=Module["_emscripten_bind_FunctionFolderOrFunction_FunctionFolderOrFunction_0"]=Module["asm"]["sR"]).apply(null,arguments)};var _emscripten_bind_FunctionFolderOrFunction_IsFolder_0=Module["_emscripten_bind_FunctionFolderOrFunction_IsFolder_0"]=function(){return(_emscripten_bind_FunctionFolderOrFunction_IsFolder_0=Module["_emscripten_bind_FunctionFolderOrFunction_IsFolder_0"]=Module["asm"]["tR"]).apply(null,arguments)};var _emscripten_bind_FunctionFolderOrFunction_IsRootFolder_0=Module["_emscripten_bind_FunctionFolderOrFunction_IsRootFolder_0"]=function(){return(_emscripten_bind_FunctionFolderOrFunction_IsRootFolder_0=Module["_emscripten_bind_FunctionFolderOrFunction_IsRootFolder_0"]=Module["asm"]["uR"]).apply(null,arguments)};var _emscripten_bind_FunctionFolderOrFunction_GetFunction_0=Module["_emscripten_bind_FunctionFolderOrFunction_GetFunction_0"]=function(){return(_emscripten_bind_FunctionFolderOrFunction_GetFunction_0=Module["_emscripten_bind_FunctionFolderOrFunction_GetFunction_0"]=Module["asm"]["vR"]).apply(null,arguments)};var _emscripten_bind_FunctionFolderOrFunction_GetFolderName_0=Module["_emscripten_bind_FunctionFolderOrFunction_GetFolderName_0"]=function(){return(_emscripten_bind_FunctionFolderOrFunction_GetFolderName_0=Module["_emscripten_bind_FunctionFolderOrFunction_GetFolderName_0"]=Module["asm"]["wR"]).apply(null,arguments)};var _emscripten_bind_FunctionFolderOrFunction_SetFolderName_1=Module["_emscripten_bind_FunctionFolderOrFunction_SetFolderName_1"]=function(){return(_emscripten_bind_FunctionFolderOrFunction_SetFolderName_1=Module["_emscripten_bind_FunctionFolderOrFunction_SetFolderName_1"]=Module["asm"]["xR"]).apply(null,arguments)};var _emscripten_bind_FunctionFolderOrFunction_HasFunctionNamed_1=Module["_emscripten_bind_FunctionFolderOrFunction_HasFunctionNamed_1"]=function(){return(_emscripten_bind_FunctionFolderOrFunction_HasFunctionNamed_1=Module["_emscripten_bind_FunctionFolderOrFunction_HasFunctionNamed_1"]=Module["asm"]["yR"]).apply(null,arguments)};var _emscripten_bind_FunctionFolderOrFunction_GetFunctionNamed_1=Module["_emscripten_bind_FunctionFolderOrFunction_GetFunctionNamed_1"]=function(){return(_emscripten_bind_FunctionFolderOrFunction_GetFunctionNamed_1=Module["_emscripten_bind_FunctionFolderOrFunction_GetFunctionNamed_1"]=Module["asm"]["zR"]).apply(null,arguments)};var _emscripten_bind_FunctionFolderOrFunction_GetChildrenCount_0=Module["_emscripten_bind_FunctionFolderOrFunction_GetChildrenCount_0"]=function(){return(_emscripten_bind_FunctionFolderOrFunction_GetChildrenCount_0=Module["_emscripten_bind_FunctionFolderOrFunction_GetChildrenCount_0"]=Module["asm"]["AR"]).apply(null,arguments)};var _emscripten_bind_FunctionFolderOrFunction_GetChildAt_1=Module["_emscripten_bind_FunctionFolderOrFunction_GetChildAt_1"]=function(){return(_emscripten_bind_FunctionFolderOrFunction_GetChildAt_1=Module["_emscripten_bind_FunctionFolderOrFunction_GetChildAt_1"]=Module["asm"]["BR"]).apply(null,arguments)};var _emscripten_bind_FunctionFolderOrFunction_GetFunctionChild_1=Module["_emscripten_bind_FunctionFolderOrFunction_GetFunctionChild_1"]=function(){return(_emscripten_bind_FunctionFolderOrFunction_GetFunctionChild_1=Module["_emscripten_bind_FunctionFolderOrFunction_GetFunctionChild_1"]=Module["asm"]["CR"]).apply(null,arguments)};var _emscripten_bind_FunctionFolderOrFunction_GetOrCreateChildFolder_1=Module["_emscripten_bind_FunctionFolderOrFunction_GetOrCreateChildFolder_1"]=function(){return(_emscripten_bind_FunctionFolderOrFunction_GetOrCreateChildFolder_1=Module["_emscripten_bind_FunctionFolderOrFunction_GetOrCreateChildFolder_1"]=Module["asm"]["DR"]).apply(null,arguments)};var _emscripten_bind_FunctionFolderOrFunction_GetChildPosition_1=Module["_emscripten_bind_FunctionFolderOrFunction_GetChildPosition_1"]=function(){return(_emscripten_bind_FunctionFolderOrFunction_GetChildPosition_1=Module["_emscripten_bind_FunctionFolderOrFunction_GetChildPosition_1"]=Module["asm"]["ER"]).apply(null,arguments)};var _emscripten_bind_FunctionFolderOrFunction_GetParent_0=Module["_emscripten_bind_FunctionFolderOrFunction_GetParent_0"]=function(){return(_emscripten_bind_FunctionFolderOrFunction_GetParent_0=Module["_emscripten_bind_FunctionFolderOrFunction_GetParent_0"]=Module["asm"]["FR"]).apply(null,arguments)};var _emscripten_bind_FunctionFolderOrFunction_InsertNewFolder_2=Module["_emscripten_bind_FunctionFolderOrFunction_InsertNewFolder_2"]=function(){return(_emscripten_bind_FunctionFolderOrFunction_InsertNewFolder_2=Module["_emscripten_bind_FunctionFolderOrFunction_InsertNewFolder_2"]=Module["asm"]["GR"]).apply(null,arguments)};var _emscripten_bind_FunctionFolderOrFunction_MoveFunctionFolderOrFunctionToAnotherFolder_3=Module["_emscripten_bind_FunctionFolderOrFunction_MoveFunctionFolderOrFunctionToAnotherFolder_3"]=function(){return(_emscripten_bind_FunctionFolderOrFunction_MoveFunctionFolderOrFunctionToAnotherFolder_3=Module["_emscripten_bind_FunctionFolderOrFunction_MoveFunctionFolderOrFunctionToAnotherFolder_3"]=Module["asm"]["HR"]).apply(null,arguments)};var _emscripten_bind_FunctionFolderOrFunction_MoveChild_2=Module["_emscripten_bind_FunctionFolderOrFunction_MoveChild_2"]=function(){return(_emscripten_bind_FunctionFolderOrFunction_MoveChild_2=Module["_emscripten_bind_FunctionFolderOrFunction_MoveChild_2"]=Module["asm"]["IR"]).apply(null,arguments)};var _emscripten_bind_FunctionFolderOrFunction_RemoveFolderChild_1=Module["_emscripten_bind_FunctionFolderOrFunction_RemoveFolderChild_1"]=function(){return(_emscripten_bind_FunctionFolderOrFunction_RemoveFolderChild_1=Module["_emscripten_bind_FunctionFolderOrFunction_RemoveFolderChild_1"]=Module["asm"]["JR"]).apply(null,arguments)};var _emscripten_bind_FunctionFolderOrFunction_IsADescendantOf_1=Module["_emscripten_bind_FunctionFolderOrFunction_IsADescendantOf_1"]=function(){return(_emscripten_bind_FunctionFolderOrFunction_IsADescendantOf_1=Module["_emscripten_bind_FunctionFolderOrFunction_IsADescendantOf_1"]=Module["asm"]["KR"]).apply(null,arguments)};var _emscripten_bind_FunctionFolderOrFunction___destroy___0=Module["_emscripten_bind_FunctionFolderOrFunction___destroy___0"]=function(){return(_emscripten_bind_FunctionFolderOrFunction___destroy___0=Module["_emscripten_bind_FunctionFolderOrFunction___destroy___0"]=Module["asm"]["LR"]).apply(null,arguments)};var _emscripten_bind_EventsFunctionsContainer_InsertNewEventsFunction_2=Module["_emscripten_bind_EventsFunctionsContainer_InsertNewEventsFunction_2"]=function(){return(_emscripten_bind_EventsFunctionsContainer_InsertNewEventsFunction_2=Module["_emscripten_bind_EventsFunctionsContainer_InsertNewEventsFunction_2"]=Module["asm"]["MR"]).apply(null,arguments)};var _emscripten_bind_EventsFunctionsContainer_InsertEventsFunction_2=Module["_emscripten_bind_EventsFunctionsContainer_InsertEventsFunction_2"]=function(){return(_emscripten_bind_EventsFunctionsContainer_InsertEventsFunction_2=Module["_emscripten_bind_EventsFunctionsContainer_InsertEventsFunction_2"]=Module["asm"]["NR"]).apply(null,arguments)};var _emscripten_bind_EventsFunctionsContainer_HasEventsFunctionNamed_1=Module["_emscripten_bind_EventsFunctionsContainer_HasEventsFunctionNamed_1"]=function(){return(_emscripten_bind_EventsFunctionsContainer_HasEventsFunctionNamed_1=Module["_emscripten_bind_EventsFunctionsContainer_HasEventsFunctionNamed_1"]=Module["asm"]["OR"]).apply(null,arguments)};var _emscripten_bind_EventsFunctionsContainer_GetEventsFunction_1=Module["_emscripten_bind_EventsFunctionsContainer_GetEventsFunction_1"]=function(){return(_emscripten_bind_EventsFunctionsContainer_GetEventsFunction_1=Module["_emscripten_bind_EventsFunctionsContainer_GetEventsFunction_1"]=Module["asm"]["PR"]).apply(null,arguments)};var _emscripten_bind_EventsFunctionsContainer_GetEventsFunctionAt_1=Module["_emscripten_bind_EventsFunctionsContainer_GetEventsFunctionAt_1"]=function(){return(_emscripten_bind_EventsFunctionsContainer_GetEventsFunctionAt_1=Module["_emscripten_bind_EventsFunctionsContainer_GetEventsFunctionAt_1"]=Module["asm"]["QR"]).apply(null,arguments)};var _emscripten_bind_EventsFunctionsContainer_RemoveEventsFunction_1=Module["_emscripten_bind_EventsFunctionsContainer_RemoveEventsFunction_1"]=function(){return(_emscripten_bind_EventsFunctionsContainer_RemoveEventsFunction_1=Module["_emscripten_bind_EventsFunctionsContainer_RemoveEventsFunction_1"]=Module["asm"]["RR"]).apply(null,arguments)};var _emscripten_bind_EventsFunctionsContainer_MoveEventsFunction_2=Module["_emscripten_bind_EventsFunctionsContainer_MoveEventsFunction_2"]=function(){return(_emscripten_bind_EventsFunctionsContainer_MoveEventsFunction_2=Module["_emscripten_bind_EventsFunctionsContainer_MoveEventsFunction_2"]=Module["asm"]["SR"]).apply(null,arguments)};var _emscripten_bind_EventsFunctionsContainer_GetEventsFunctionsCount_0=Module["_emscripten_bind_EventsFunctionsContainer_GetEventsFunctionsCount_0"]=function(){return(_emscripten_bind_EventsFunctionsContainer_GetEventsFunctionsCount_0=Module["_emscripten_bind_EventsFunctionsContainer_GetEventsFunctionsCount_0"]=Module["asm"]["TR"]).apply(null,arguments)};var _emscripten_bind_EventsFunctionsContainer_GetEventsFunctionPosition_1=Module["_emscripten_bind_EventsFunctionsContainer_GetEventsFunctionPosition_1"]=function(){return(_emscripten_bind_EventsFunctionsContainer_GetEventsFunctionPosition_1=Module["_emscripten_bind_EventsFunctionsContainer_GetEventsFunctionPosition_1"]=Module["asm"]["UR"]).apply(null,arguments)};var _emscripten_bind_EventsFunctionsContainer_InsertNewEventsFunctionInFolder_3=Module["_emscripten_bind_EventsFunctionsContainer_InsertNewEventsFunctionInFolder_3"]=function(){return(_emscripten_bind_EventsFunctionsContainer_InsertNewEventsFunctionInFolder_3=Module["_emscripten_bind_EventsFunctionsContainer_InsertNewEventsFunctionInFolder_3"]=Module["asm"]["VR"]).apply(null,arguments)};var _emscripten_bind_EventsFunctionsContainer_GetRootFolder_0=Module["_emscripten_bind_EventsFunctionsContainer_GetRootFolder_0"]=function(){return(_emscripten_bind_EventsFunctionsContainer_GetRootFolder_0=Module["_emscripten_bind_EventsFunctionsContainer_GetRootFolder_0"]=Module["asm"]["WR"]).apply(null,arguments)};var _emscripten_bind_EventsFunctionsContainer_GetAllFunctionFolderOrFunction_0=Module["_emscripten_bind_EventsFunctionsContainer_GetAllFunctionFolderOrFunction_0"]=function(){return(_emscripten_bind_EventsFunctionsContainer_GetAllFunctionFolderOrFunction_0=Module["_emscripten_bind_EventsFunctionsContainer_GetAllFunctionFolderOrFunction_0"]=Module["asm"]["XR"]).apply(null,arguments)};var _emscripten_bind_EventsFunctionsContainer_AddMissingFunctionsInRootFolder_0=Module["_emscripten_bind_EventsFunctionsContainer_AddMissingFunctionsInRootFolder_0"]=function(){return(_emscripten_bind_EventsFunctionsContainer_AddMissingFunctionsInRootFolder_0=Module["_emscripten_bind_EventsFunctionsContainer_AddMissingFunctionsInRootFolder_0"]=Module["asm"]["YR"]).apply(null,arguments)};var _emscripten_bind_EventsFunctionsContainer___destroy___0=Module["_emscripten_bind_EventsFunctionsContainer___destroy___0"]=function(){return(_emscripten_bind_EventsFunctionsContainer___destroy___0=Module["_emscripten_bind_EventsFunctionsContainer___destroy___0"]=Module["asm"]["ZR"]).apply(null,arguments)};var _emscripten_bind_EventsBasedBehavior_EventsBasedBehavior_0=Module["_emscripten_bind_EventsBasedBehavior_EventsBasedBehavior_0"]=function(){return(_emscripten_bind_EventsBasedBehavior_EventsBasedBehavior_0=Module["_emscripten_bind_EventsBasedBehavior_EventsBasedBehavior_0"]=Module["asm"]["_R"]).apply(null,arguments)};var _emscripten_bind_EventsBasedBehavior_SetName_1=Module["_emscripten_bind_EventsBasedBehavior_SetName_1"]=function(){return(_emscripten_bind_EventsBasedBehavior_SetName_1=Module["_emscripten_bind_EventsBasedBehavior_SetName_1"]=Module["asm"]["$R"]).apply(null,arguments)};var _emscripten_bind_EventsBasedBehavior_SetFullName_1=Module["_emscripten_bind_EventsBasedBehavior_SetFullName_1"]=function(){return(_emscripten_bind_EventsBasedBehavior_SetFullName_1=Module["_emscripten_bind_EventsBasedBehavior_SetFullName_1"]=Module["asm"]["aS"]).apply(null,arguments)};var _emscripten_bind_EventsBasedBehavior_SetDescription_1=Module["_emscripten_bind_EventsBasedBehavior_SetDescription_1"]=function(){return(_emscripten_bind_EventsBasedBehavior_SetDescription_1=Module["_emscripten_bind_EventsBasedBehavior_SetDescription_1"]=Module["asm"]["bS"]).apply(null,arguments)};var _emscripten_bind_EventsBasedBehavior_SetPrivate_1=Module["_emscripten_bind_EventsBasedBehavior_SetPrivate_1"]=function(){return(_emscripten_bind_EventsBasedBehavior_SetPrivate_1=Module["_emscripten_bind_EventsBasedBehavior_SetPrivate_1"]=Module["asm"]["cS"]).apply(null,arguments)};var _emscripten_bind_EventsBasedBehavior_SetPreviewIconUrl_1=Module["_emscripten_bind_EventsBasedBehavior_SetPreviewIconUrl_1"]=function(){return(_emscripten_bind_EventsBasedBehavior_SetPreviewIconUrl_1=Module["_emscripten_bind_EventsBasedBehavior_SetPreviewIconUrl_1"]=Module["asm"]["dS"]).apply(null,arguments)};var _emscripten_bind_EventsBasedBehavior_SetIconUrl_1=Module["_emscripten_bind_EventsBasedBehavior_SetIconUrl_1"]=function(){return(_emscripten_bind_EventsBasedBehavior_SetIconUrl_1=Module["_emscripten_bind_EventsBasedBehavior_SetIconUrl_1"]=Module["asm"]["eS"]).apply(null,arguments)};var _emscripten_bind_EventsBasedBehavior_SetHelpPath_1=Module["_emscripten_bind_EventsBasedBehavior_SetHelpPath_1"]=function(){return(_emscripten_bind_EventsBasedBehavior_SetHelpPath_1=Module["_emscripten_bind_EventsBasedBehavior_SetHelpPath_1"]=Module["asm"]["fS"]).apply(null,arguments)};var _emscripten_bind_EventsBasedBehavior_SetObjectType_1=Module["_emscripten_bind_EventsBasedBehavior_SetObjectType_1"]=function(){return(_emscripten_bind_EventsBasedBehavior_SetObjectType_1=Module["_emscripten_bind_EventsBasedBehavior_SetObjectType_1"]=Module["asm"]["gS"]).apply(null,arguments)};var _emscripten_bind_EventsBasedBehavior_GetObjectType_0=Module["_emscripten_bind_EventsBasedBehavior_GetObjectType_0"]=function(){return(_emscripten_bind_EventsBasedBehavior_GetObjectType_0=Module["_emscripten_bind_EventsBasedBehavior_GetObjectType_0"]=Module["asm"]["hS"]).apply(null,arguments)};var _emscripten_bind_EventsBasedBehavior_SetQuickCustomizationVisibility_1=Module["_emscripten_bind_EventsBasedBehavior_SetQuickCustomizationVisibility_1"]=function(){return(_emscripten_bind_EventsBasedBehavior_SetQuickCustomizationVisibility_1=Module["_emscripten_bind_EventsBasedBehavior_SetQuickCustomizationVisibility_1"]=Module["asm"]["iS"]).apply(null,arguments)};var _emscripten_bind_EventsBasedBehavior_GetQuickCustomizationVisibility_0=Module["_emscripten_bind_EventsBasedBehavior_GetQuickCustomizationVisibility_0"]=function(){return(_emscripten_bind_EventsBasedBehavior_GetQuickCustomizationVisibility_0=Module["_emscripten_bind_EventsBasedBehavior_GetQuickCustomizationVisibility_0"]=Module["asm"]["jS"]).apply(null,arguments)};var _emscripten_bind_EventsBasedBehavior_GetSharedPropertyDescriptors_0=Module["_emscripten_bind_EventsBasedBehavior_GetSharedPropertyDescriptors_0"]=function(){return(_emscripten_bind_EventsBasedBehavior_GetSharedPropertyDescriptors_0=Module["_emscripten_bind_EventsBasedBehavior_GetSharedPropertyDescriptors_0"]=Module["asm"]["kS"]).apply(null,arguments)};var _emscripten_bind_EventsBasedBehavior_STATIC_GetPropertyActionName_1=Module["_emscripten_bind_EventsBasedBehavior_STATIC_GetPropertyActionName_1"]=function(){return(_emscripten_bind_EventsBasedBehavior_STATIC_GetPropertyActionName_1=Module["_emscripten_bind_EventsBasedBehavior_STATIC_GetPropertyActionName_1"]=Module["asm"]["lS"]).apply(null,arguments)};var _emscripten_bind_EventsBasedBehavior_STATIC_GetPropertyConditionName_1=Module["_emscripten_bind_EventsBasedBehavior_STATIC_GetPropertyConditionName_1"]=function(){return(_emscripten_bind_EventsBasedBehavior_STATIC_GetPropertyConditionName_1=Module["_emscripten_bind_EventsBasedBehavior_STATIC_GetPropertyConditionName_1"]=Module["asm"]["mS"]).apply(null,arguments)};var _emscripten_bind_EventsBasedBehavior_STATIC_GetPropertyExpressionName_1=Module["_emscripten_bind_EventsBasedBehavior_STATIC_GetPropertyExpressionName_1"]=function(){return(_emscripten_bind_EventsBasedBehavior_STATIC_GetPropertyExpressionName_1=Module["_emscripten_bind_EventsBasedBehavior_STATIC_GetPropertyExpressionName_1"]=Module["asm"]["nS"]).apply(null,arguments)};var _emscripten_bind_EventsBasedBehavior_STATIC_GetPropertyToggleActionName_1=Module["_emscripten_bind_EventsBasedBehavior_STATIC_GetPropertyToggleActionName_1"]=function(){return(_emscripten_bind_EventsBasedBehavior_STATIC_GetPropertyToggleActionName_1=Module["_emscripten_bind_EventsBasedBehavior_STATIC_GetPropertyToggleActionName_1"]=Module["asm"]["oS"]).apply(null,arguments)};var _emscripten_bind_EventsBasedBehavior_STATIC_GetSharedPropertyActionName_1=Module["_emscripten_bind_EventsBasedBehavior_STATIC_GetSharedPropertyActionName_1"]=function(){return(_emscripten_bind_EventsBasedBehavior_STATIC_GetSharedPropertyActionName_1=Module["_emscripten_bind_EventsBasedBehavior_STATIC_GetSharedPropertyActionName_1"]=Module["asm"]["pS"]).apply(null,arguments)};var _emscripten_bind_EventsBasedBehavior_STATIC_GetSharedPropertyConditionName_1=Module["_emscripten_bind_EventsBasedBehavior_STATIC_GetSharedPropertyConditionName_1"]=function(){return(_emscripten_bind_EventsBasedBehavior_STATIC_GetSharedPropertyConditionName_1=Module["_emscripten_bind_EventsBasedBehavior_STATIC_GetSharedPropertyConditionName_1"]=Module["asm"]["qS"]).apply(null,arguments)};var _emscripten_bind_EventsBasedBehavior_STATIC_GetSharedPropertyExpressionName_1=Module["_emscripten_bind_EventsBasedBehavior_STATIC_GetSharedPropertyExpressionName_1"]=function(){return(_emscripten_bind_EventsBasedBehavior_STATIC_GetSharedPropertyExpressionName_1=Module["_emscripten_bind_EventsBasedBehavior_STATIC_GetSharedPropertyExpressionName_1"]=Module["asm"]["rS"]).apply(null,arguments)};var _emscripten_bind_EventsBasedBehavior_STATIC_GetSharedPropertyToggleActionName_1=Module["_emscripten_bind_EventsBasedBehavior_STATIC_GetSharedPropertyToggleActionName_1"]=function(){return(_emscripten_bind_EventsBasedBehavior_STATIC_GetSharedPropertyToggleActionName_1=Module["_emscripten_bind_EventsBasedBehavior_STATIC_GetSharedPropertyToggleActionName_1"]=Module["asm"]["sS"]).apply(null,arguments)};var _emscripten_bind_EventsBasedBehavior_GetEventsFunctions_0=Module["_emscripten_bind_EventsBasedBehavior_GetEventsFunctions_0"]=function(){return(_emscripten_bind_EventsBasedBehavior_GetEventsFunctions_0=Module["_emscripten_bind_EventsBasedBehavior_GetEventsFunctions_0"]=Module["asm"]["tS"]).apply(null,arguments)};var _emscripten_bind_EventsBasedBehavior_GetPropertyDescriptors_0=Module["_emscripten_bind_EventsBasedBehavior_GetPropertyDescriptors_0"]=function(){return(_emscripten_bind_EventsBasedBehavior_GetPropertyDescriptors_0=Module["_emscripten_bind_EventsBasedBehavior_GetPropertyDescriptors_0"]=Module["asm"]["uS"]).apply(null,arguments)};var _emscripten_bind_EventsBasedBehavior_GetName_0=Module["_emscripten_bind_EventsBasedBehavior_GetName_0"]=function(){return(_emscripten_bind_EventsBasedBehavior_GetName_0=Module["_emscripten_bind_EventsBasedBehavior_GetName_0"]=Module["asm"]["vS"]).apply(null,arguments)};var _emscripten_bind_EventsBasedBehavior_GetFullName_0=Module["_emscripten_bind_EventsBasedBehavior_GetFullName_0"]=function(){return(_emscripten_bind_EventsBasedBehavior_GetFullName_0=Module["_emscripten_bind_EventsBasedBehavior_GetFullName_0"]=Module["asm"]["wS"]).apply(null,arguments)};var _emscripten_bind_EventsBasedBehavior_GetDescription_0=Module["_emscripten_bind_EventsBasedBehavior_GetDescription_0"]=function(){return(_emscripten_bind_EventsBasedBehavior_GetDescription_0=Module["_emscripten_bind_EventsBasedBehavior_GetDescription_0"]=Module["asm"]["xS"]).apply(null,arguments)};var _emscripten_bind_EventsBasedBehavior_IsPrivate_0=Module["_emscripten_bind_EventsBasedBehavior_IsPrivate_0"]=function(){return(_emscripten_bind_EventsBasedBehavior_IsPrivate_0=Module["_emscripten_bind_EventsBasedBehavior_IsPrivate_0"]=Module["asm"]["yS"]).apply(null,arguments)};var _emscripten_bind_EventsBasedBehavior_GetPreviewIconUrl_0=Module["_emscripten_bind_EventsBasedBehavior_GetPreviewIconUrl_0"]=function(){return(_emscripten_bind_EventsBasedBehavior_GetPreviewIconUrl_0=Module["_emscripten_bind_EventsBasedBehavior_GetPreviewIconUrl_0"]=Module["asm"]["zS"]).apply(null,arguments)};var _emscripten_bind_EventsBasedBehavior_GetIconUrl_0=Module["_emscripten_bind_EventsBasedBehavior_GetIconUrl_0"]=function(){return(_emscripten_bind_EventsBasedBehavior_GetIconUrl_0=Module["_emscripten_bind_EventsBasedBehavior_GetIconUrl_0"]=Module["asm"]["AS"]).apply(null,arguments)};var _emscripten_bind_EventsBasedBehavior_GetHelpPath_0=Module["_emscripten_bind_EventsBasedBehavior_GetHelpPath_0"]=function(){return(_emscripten_bind_EventsBasedBehavior_GetHelpPath_0=Module["_emscripten_bind_EventsBasedBehavior_GetHelpPath_0"]=Module["asm"]["BS"]).apply(null,arguments)};var _emscripten_bind_EventsBasedBehavior_SerializeTo_1=Module["_emscripten_bind_EventsBasedBehavior_SerializeTo_1"]=function(){return(_emscripten_bind_EventsBasedBehavior_SerializeTo_1=Module["_emscripten_bind_EventsBasedBehavior_SerializeTo_1"]=Module["asm"]["CS"]).apply(null,arguments)};var _emscripten_bind_EventsBasedBehavior_UnserializeFrom_2=Module["_emscripten_bind_EventsBasedBehavior_UnserializeFrom_2"]=function(){return(_emscripten_bind_EventsBasedBehavior_UnserializeFrom_2=Module["_emscripten_bind_EventsBasedBehavior_UnserializeFrom_2"]=Module["asm"]["DS"]).apply(null,arguments)};var _emscripten_bind_EventsBasedBehavior___destroy___0=Module["_emscripten_bind_EventsBasedBehavior___destroy___0"]=function(){return(_emscripten_bind_EventsBasedBehavior___destroy___0=Module["_emscripten_bind_EventsBasedBehavior___destroy___0"]=Module["asm"]["ES"]).apply(null,arguments)};var _emscripten_bind_EventsBasedBehaviorsList_InsertNew_2=Module["_emscripten_bind_EventsBasedBehaviorsList_InsertNew_2"]=function(){return(_emscripten_bind_EventsBasedBehaviorsList_InsertNew_2=Module["_emscripten_bind_EventsBasedBehaviorsList_InsertNew_2"]=Module["asm"]["FS"]).apply(null,arguments)};var _emscripten_bind_EventsBasedBehaviorsList_Insert_2=Module["_emscripten_bind_EventsBasedBehaviorsList_Insert_2"]=function(){return(_emscripten_bind_EventsBasedBehaviorsList_Insert_2=Module["_emscripten_bind_EventsBasedBehaviorsList_Insert_2"]=Module["asm"]["GS"]).apply(null,arguments)};var _emscripten_bind_EventsBasedBehaviorsList_Has_1=Module["_emscripten_bind_EventsBasedBehaviorsList_Has_1"]=function(){return(_emscripten_bind_EventsBasedBehaviorsList_Has_1=Module["_emscripten_bind_EventsBasedBehaviorsList_Has_1"]=Module["asm"]["HS"]).apply(null,arguments)};var _emscripten_bind_EventsBasedBehaviorsList_Get_1=Module["_emscripten_bind_EventsBasedBehaviorsList_Get_1"]=function(){return(_emscripten_bind_EventsBasedBehaviorsList_Get_1=Module["_emscripten_bind_EventsBasedBehaviorsList_Get_1"]=Module["asm"]["IS"]).apply(null,arguments)};var _emscripten_bind_EventsBasedBehaviorsList_GetAt_1=Module["_emscripten_bind_EventsBasedBehaviorsList_GetAt_1"]=function(){return(_emscripten_bind_EventsBasedBehaviorsList_GetAt_1=Module["_emscripten_bind_EventsBasedBehaviorsList_GetAt_1"]=Module["asm"]["JS"]).apply(null,arguments)};var _emscripten_bind_EventsBasedBehaviorsList_Remove_1=Module["_emscripten_bind_EventsBasedBehaviorsList_Remove_1"]=function(){return(_emscripten_bind_EventsBasedBehaviorsList_Remove_1=Module["_emscripten_bind_EventsBasedBehaviorsList_Remove_1"]=Module["asm"]["KS"]).apply(null,arguments)};var _emscripten_bind_EventsBasedBehaviorsList_Move_2=Module["_emscripten_bind_EventsBasedBehaviorsList_Move_2"]=function(){return(_emscripten_bind_EventsBasedBehaviorsList_Move_2=Module["_emscripten_bind_EventsBasedBehaviorsList_Move_2"]=Module["asm"]["LS"]).apply(null,arguments)};var _emscripten_bind_EventsBasedBehaviorsList_GetCount_0=Module["_emscripten_bind_EventsBasedBehaviorsList_GetCount_0"]=function(){return(_emscripten_bind_EventsBasedBehaviorsList_GetCount_0=Module["_emscripten_bind_EventsBasedBehaviorsList_GetCount_0"]=Module["asm"]["MS"]).apply(null,arguments)};var _emscripten_bind_EventsBasedBehaviorsList_GetPosition_1=Module["_emscripten_bind_EventsBasedBehaviorsList_GetPosition_1"]=function(){return(_emscripten_bind_EventsBasedBehaviorsList_GetPosition_1=Module["_emscripten_bind_EventsBasedBehaviorsList_GetPosition_1"]=Module["asm"]["NS"]).apply(null,arguments)};var _emscripten_bind_EventsBasedBehaviorsList_size_0=Module["_emscripten_bind_EventsBasedBehaviorsList_size_0"]=function(){return(_emscripten_bind_EventsBasedBehaviorsList_size_0=Module["_emscripten_bind_EventsBasedBehaviorsList_size_0"]=Module["asm"]["OS"]).apply(null,arguments)};var _emscripten_bind_EventsBasedBehaviorsList_at_1=Module["_emscripten_bind_EventsBasedBehaviorsList_at_1"]=function(){return(_emscripten_bind_EventsBasedBehaviorsList_at_1=Module["_emscripten_bind_EventsBasedBehaviorsList_at_1"]=Module["asm"]["PS"]).apply(null,arguments)};var _emscripten_bind_EventsBasedBehaviorsList___destroy___0=Module["_emscripten_bind_EventsBasedBehaviorsList___destroy___0"]=function(){return(_emscripten_bind_EventsBasedBehaviorsList___destroy___0=Module["_emscripten_bind_EventsBasedBehaviorsList___destroy___0"]=Module["asm"]["QS"]).apply(null,arguments)};var _emscripten_bind_EventsBasedObject_EventsBasedObject_0=Module["_emscripten_bind_EventsBasedObject_EventsBasedObject_0"]=function(){return(_emscripten_bind_EventsBasedObject_EventsBasedObject_0=Module["_emscripten_bind_EventsBasedObject_EventsBasedObject_0"]=Module["asm"]["RS"]).apply(null,arguments)};var _emscripten_bind_EventsBasedObject_SetName_1=Module["_emscripten_bind_EventsBasedObject_SetName_1"]=function(){return(_emscripten_bind_EventsBasedObject_SetName_1=Module["_emscripten_bind_EventsBasedObject_SetName_1"]=Module["asm"]["SS"]).apply(null,arguments)};var _emscripten_bind_EventsBasedObject_SetFullName_1=Module["_emscripten_bind_EventsBasedObject_SetFullName_1"]=function(){return(_emscripten_bind_EventsBasedObject_SetFullName_1=Module["_emscripten_bind_EventsBasedObject_SetFullName_1"]=Module["asm"]["TS"]).apply(null,arguments)};var _emscripten_bind_EventsBasedObject_SetDescription_1=Module["_emscripten_bind_EventsBasedObject_SetDescription_1"]=function(){return(_emscripten_bind_EventsBasedObject_SetDescription_1=Module["_emscripten_bind_EventsBasedObject_SetDescription_1"]=Module["asm"]["US"]).apply(null,arguments)};var _emscripten_bind_EventsBasedObject_SetPrivate_1=Module["_emscripten_bind_EventsBasedObject_SetPrivate_1"]=function(){return(_emscripten_bind_EventsBasedObject_SetPrivate_1=Module["_emscripten_bind_EventsBasedObject_SetPrivate_1"]=Module["asm"]["VS"]).apply(null,arguments)};var _emscripten_bind_EventsBasedObject_SetPreviewIconUrl_1=Module["_emscripten_bind_EventsBasedObject_SetPreviewIconUrl_1"]=function(){return(_emscripten_bind_EventsBasedObject_SetPreviewIconUrl_1=Module["_emscripten_bind_EventsBasedObject_SetPreviewIconUrl_1"]=Module["asm"]["WS"]).apply(null,arguments)};var _emscripten_bind_EventsBasedObject_SetIconUrl_1=Module["_emscripten_bind_EventsBasedObject_SetIconUrl_1"]=function(){return(_emscripten_bind_EventsBasedObject_SetIconUrl_1=Module["_emscripten_bind_EventsBasedObject_SetIconUrl_1"]=Module["asm"]["XS"]).apply(null,arguments)};var _emscripten_bind_EventsBasedObject_SetHelpPath_1=Module["_emscripten_bind_EventsBasedObject_SetHelpPath_1"]=function(){return(_emscripten_bind_EventsBasedObject_SetHelpPath_1=Module["_emscripten_bind_EventsBasedObject_SetHelpPath_1"]=Module["asm"]["YS"]).apply(null,arguments)};var _emscripten_bind_EventsBasedObject_SetDefaultName_1=Module["_emscripten_bind_EventsBasedObject_SetDefaultName_1"]=function(){return(_emscripten_bind_EventsBasedObject_SetDefaultName_1=Module["_emscripten_bind_EventsBasedObject_SetDefaultName_1"]=Module["asm"]["ZS"]).apply(null,arguments)};var _emscripten_bind_EventsBasedObject_SetAssetStoreTag_1=Module["_emscripten_bind_EventsBasedObject_SetAssetStoreTag_1"]=function(){return(_emscripten_bind_EventsBasedObject_SetAssetStoreTag_1=Module["_emscripten_bind_EventsBasedObject_SetAssetStoreTag_1"]=Module["asm"]["_S"]).apply(null,arguments)};var _emscripten_bind_EventsBasedObject_GetDefaultName_0=Module["_emscripten_bind_EventsBasedObject_GetDefaultName_0"]=function(){return(_emscripten_bind_EventsBasedObject_GetDefaultName_0=Module["_emscripten_bind_EventsBasedObject_GetDefaultName_0"]=Module["asm"]["$S"]).apply(null,arguments)};var _emscripten_bind_EventsBasedObject_GetAssetStoreTag_0=Module["_emscripten_bind_EventsBasedObject_GetAssetStoreTag_0"]=function(){return(_emscripten_bind_EventsBasedObject_GetAssetStoreTag_0=Module["_emscripten_bind_EventsBasedObject_GetAssetStoreTag_0"]=Module["asm"]["aT"]).apply(null,arguments)};var _emscripten_bind_EventsBasedObject_MarkAsRenderedIn3D_1=Module["_emscripten_bind_EventsBasedObject_MarkAsRenderedIn3D_1"]=function(){return(_emscripten_bind_EventsBasedObject_MarkAsRenderedIn3D_1=Module["_emscripten_bind_EventsBasedObject_MarkAsRenderedIn3D_1"]=Module["asm"]["bT"]).apply(null,arguments)};var _emscripten_bind_EventsBasedObject_IsRenderedIn3D_0=Module["_emscripten_bind_EventsBasedObject_IsRenderedIn3D_0"]=function(){return(_emscripten_bind_EventsBasedObject_IsRenderedIn3D_0=Module["_emscripten_bind_EventsBasedObject_IsRenderedIn3D_0"]=Module["asm"]["cT"]).apply(null,arguments)};var _emscripten_bind_EventsBasedObject_MarkAsAnimatable_1=Module["_emscripten_bind_EventsBasedObject_MarkAsAnimatable_1"]=function(){return(_emscripten_bind_EventsBasedObject_MarkAsAnimatable_1=Module["_emscripten_bind_EventsBasedObject_MarkAsAnimatable_1"]=Module["asm"]["dT"]).apply(null,arguments)};var _emscripten_bind_EventsBasedObject_IsAnimatable_0=Module["_emscripten_bind_EventsBasedObject_IsAnimatable_0"]=function(){return(_emscripten_bind_EventsBasedObject_IsAnimatable_0=Module["_emscripten_bind_EventsBasedObject_IsAnimatable_0"]=Module["asm"]["eT"]).apply(null,arguments)};var _emscripten_bind_EventsBasedObject_MarkAsTextContainer_1=Module["_emscripten_bind_EventsBasedObject_MarkAsTextContainer_1"]=function(){return(_emscripten_bind_EventsBasedObject_MarkAsTextContainer_1=Module["_emscripten_bind_EventsBasedObject_MarkAsTextContainer_1"]=Module["asm"]["fT"]).apply(null,arguments)};var _emscripten_bind_EventsBasedObject_IsTextContainer_0=Module["_emscripten_bind_EventsBasedObject_IsTextContainer_0"]=function(){return(_emscripten_bind_EventsBasedObject_IsTextContainer_0=Module["_emscripten_bind_EventsBasedObject_IsTextContainer_0"]=Module["asm"]["gT"]).apply(null,arguments)};var _emscripten_bind_EventsBasedObject_MarkAsInnerAreaFollowingParentSize_1=Module["_emscripten_bind_EventsBasedObject_MarkAsInnerAreaFollowingParentSize_1"]=function(){return(_emscripten_bind_EventsBasedObject_MarkAsInnerAreaFollowingParentSize_1=Module["_emscripten_bind_EventsBasedObject_MarkAsInnerAreaFollowingParentSize_1"]=Module["asm"]["hT"]).apply(null,arguments)};var _emscripten_bind_EventsBasedObject_IsInnerAreaFollowingParentSize_0=Module["_emscripten_bind_EventsBasedObject_IsInnerAreaFollowingParentSize_0"]=function(){return(_emscripten_bind_EventsBasedObject_IsInnerAreaFollowingParentSize_0=Module["_emscripten_bind_EventsBasedObject_IsInnerAreaFollowingParentSize_0"]=Module["asm"]["iT"]).apply(null,arguments)};var _emscripten_bind_EventsBasedObject_MakAsUsingLegacyInstancesRenderer_1=Module["_emscripten_bind_EventsBasedObject_MakAsUsingLegacyInstancesRenderer_1"]=function(){return(_emscripten_bind_EventsBasedObject_MakAsUsingLegacyInstancesRenderer_1=Module["_emscripten_bind_EventsBasedObject_MakAsUsingLegacyInstancesRenderer_1"]=Module["asm"]["jT"]).apply(null,arguments)};var _emscripten_bind_EventsBasedObject_IsUsingLegacyInstancesRenderer_0=Module["_emscripten_bind_EventsBasedObject_IsUsingLegacyInstancesRenderer_0"]=function(){return(_emscripten_bind_EventsBasedObject_IsUsingLegacyInstancesRenderer_0=Module["_emscripten_bind_EventsBasedObject_IsUsingLegacyInstancesRenderer_0"]=Module["asm"]["kT"]).apply(null,arguments)};var _emscripten_bind_EventsBasedObject_GetDefaultVariant_0=Module["_emscripten_bind_EventsBasedObject_GetDefaultVariant_0"]=function(){return(_emscripten_bind_EventsBasedObject_GetDefaultVariant_0=Module["_emscripten_bind_EventsBasedObject_GetDefaultVariant_0"]=Module["asm"]["lT"]).apply(null,arguments)};var _emscripten_bind_EventsBasedObject_GetVariants_0=Module["_emscripten_bind_EventsBasedObject_GetVariants_0"]=function(){return(_emscripten_bind_EventsBasedObject_GetVariants_0=Module["_emscripten_bind_EventsBasedObject_GetVariants_0"]=Module["asm"]["mT"]).apply(null,arguments)};var _emscripten_bind_EventsBasedObject_GetInitialInstances_0=Module["_emscripten_bind_EventsBasedObject_GetInitialInstances_0"]=function(){return(_emscripten_bind_EventsBasedObject_GetInitialInstances_0=Module["_emscripten_bind_EventsBasedObject_GetInitialInstances_0"]=Module["asm"]["nT"]).apply(null,arguments)};var _emscripten_bind_EventsBasedObject_GetLayers_0=Module["_emscripten_bind_EventsBasedObject_GetLayers_0"]=function(){return(_emscripten_bind_EventsBasedObject_GetLayers_0=Module["_emscripten_bind_EventsBasedObject_GetLayers_0"]=Module["asm"]["oT"]).apply(null,arguments)};var _emscripten_bind_EventsBasedObject_GetObjects_0=Module["_emscripten_bind_EventsBasedObject_GetObjects_0"]=function(){return(_emscripten_bind_EventsBasedObject_GetObjects_0=Module["_emscripten_bind_EventsBasedObject_GetObjects_0"]=Module["asm"]["pT"]).apply(null,arguments)};var _emscripten_bind_EventsBasedObject_GetAreaMinX_0=Module["_emscripten_bind_EventsBasedObject_GetAreaMinX_0"]=function(){return(_emscripten_bind_EventsBasedObject_GetAreaMinX_0=Module["_emscripten_bind_EventsBasedObject_GetAreaMinX_0"]=Module["asm"]["qT"]).apply(null,arguments)};var _emscripten_bind_EventsBasedObject_GetAreaMinY_0=Module["_emscripten_bind_EventsBasedObject_GetAreaMinY_0"]=function(){return(_emscripten_bind_EventsBasedObject_GetAreaMinY_0=Module["_emscripten_bind_EventsBasedObject_GetAreaMinY_0"]=Module["asm"]["rT"]).apply(null,arguments)};var _emscripten_bind_EventsBasedObject_GetAreaMinZ_0=Module["_emscripten_bind_EventsBasedObject_GetAreaMinZ_0"]=function(){return(_emscripten_bind_EventsBasedObject_GetAreaMinZ_0=Module["_emscripten_bind_EventsBasedObject_GetAreaMinZ_0"]=Module["asm"]["sT"]).apply(null,arguments)};var _emscripten_bind_EventsBasedObject_GetAreaMaxX_0=Module["_emscripten_bind_EventsBasedObject_GetAreaMaxX_0"]=function(){return(_emscripten_bind_EventsBasedObject_GetAreaMaxX_0=Module["_emscripten_bind_EventsBasedObject_GetAreaMaxX_0"]=Module["asm"]["tT"]).apply(null,arguments)};var _emscripten_bind_EventsBasedObject_GetAreaMaxY_0=Module["_emscripten_bind_EventsBasedObject_GetAreaMaxY_0"]=function(){return(_emscripten_bind_EventsBasedObject_GetAreaMaxY_0=Module["_emscripten_bind_EventsBasedObject_GetAreaMaxY_0"]=Module["asm"]["uT"]).apply(null,arguments)};var _emscripten_bind_EventsBasedObject_GetAreaMaxZ_0=Module["_emscripten_bind_EventsBasedObject_GetAreaMaxZ_0"]=function(){return(_emscripten_bind_EventsBasedObject_GetAreaMaxZ_0=Module["_emscripten_bind_EventsBasedObject_GetAreaMaxZ_0"]=Module["asm"]["vT"]).apply(null,arguments)};var _emscripten_bind_EventsBasedObject_SetAreaMinX_1=Module["_emscripten_bind_EventsBasedObject_SetAreaMinX_1"]=function(){return(_emscripten_bind_EventsBasedObject_SetAreaMinX_1=Module["_emscripten_bind_EventsBasedObject_SetAreaMinX_1"]=Module["asm"]["wT"]).apply(null,arguments)};var _emscripten_bind_EventsBasedObject_SetAreaMinY_1=Module["_emscripten_bind_EventsBasedObject_SetAreaMinY_1"]=function(){return(_emscripten_bind_EventsBasedObject_SetAreaMinY_1=Module["_emscripten_bind_EventsBasedObject_SetAreaMinY_1"]=Module["asm"]["xT"]).apply(null,arguments)};var _emscripten_bind_EventsBasedObject_SetAreaMinZ_1=Module["_emscripten_bind_EventsBasedObject_SetAreaMinZ_1"]=function(){return(_emscripten_bind_EventsBasedObject_SetAreaMinZ_1=Module["_emscripten_bind_EventsBasedObject_SetAreaMinZ_1"]=Module["asm"]["yT"]).apply(null,arguments)};var _emscripten_bind_EventsBasedObject_SetAreaMaxX_1=Module["_emscripten_bind_EventsBasedObject_SetAreaMaxX_1"]=function(){return(_emscripten_bind_EventsBasedObject_SetAreaMaxX_1=Module["_emscripten_bind_EventsBasedObject_SetAreaMaxX_1"]=Module["asm"]["zT"]).apply(null,arguments)};var _emscripten_bind_EventsBasedObject_SetAreaMaxY_1=Module["_emscripten_bind_EventsBasedObject_SetAreaMaxY_1"]=function(){return(_emscripten_bind_EventsBasedObject_SetAreaMaxY_1=Module["_emscripten_bind_EventsBasedObject_SetAreaMaxY_1"]=Module["asm"]["AT"]).apply(null,arguments)};var _emscripten_bind_EventsBasedObject_SetAreaMaxZ_1=Module["_emscripten_bind_EventsBasedObject_SetAreaMaxZ_1"]=function(){return(_emscripten_bind_EventsBasedObject_SetAreaMaxZ_1=Module["_emscripten_bind_EventsBasedObject_SetAreaMaxZ_1"]=Module["asm"]["BT"]).apply(null,arguments)};var _emscripten_bind_EventsBasedObject_STATIC_GetPropertyActionName_1=Module["_emscripten_bind_EventsBasedObject_STATIC_GetPropertyActionName_1"]=function(){return(_emscripten_bind_EventsBasedObject_STATIC_GetPropertyActionName_1=Module["_emscripten_bind_EventsBasedObject_STATIC_GetPropertyActionName_1"]=Module["asm"]["CT"]).apply(null,arguments)};var _emscripten_bind_EventsBasedObject_STATIC_GetPropertyConditionName_1=Module["_emscripten_bind_EventsBasedObject_STATIC_GetPropertyConditionName_1"]=function(){return(_emscripten_bind_EventsBasedObject_STATIC_GetPropertyConditionName_1=Module["_emscripten_bind_EventsBasedObject_STATIC_GetPropertyConditionName_1"]=Module["asm"]["DT"]).apply(null,arguments)};var _emscripten_bind_EventsBasedObject_STATIC_GetPropertyExpressionName_1=Module["_emscripten_bind_EventsBasedObject_STATIC_GetPropertyExpressionName_1"]=function(){return(_emscripten_bind_EventsBasedObject_STATIC_GetPropertyExpressionName_1=Module["_emscripten_bind_EventsBasedObject_STATIC_GetPropertyExpressionName_1"]=Module["asm"]["ET"]).apply(null,arguments)};var _emscripten_bind_EventsBasedObject_STATIC_GetPropertyToggleActionName_1=Module["_emscripten_bind_EventsBasedObject_STATIC_GetPropertyToggleActionName_1"]=function(){return(_emscripten_bind_EventsBasedObject_STATIC_GetPropertyToggleActionName_1=Module["_emscripten_bind_EventsBasedObject_STATIC_GetPropertyToggleActionName_1"]=Module["asm"]["FT"]).apply(null,arguments)};var _emscripten_bind_EventsBasedObject_GetEventsFunctions_0=Module["_emscripten_bind_EventsBasedObject_GetEventsFunctions_0"]=function(){return(_emscripten_bind_EventsBasedObject_GetEventsFunctions_0=Module["_emscripten_bind_EventsBasedObject_GetEventsFunctions_0"]=Module["asm"]["GT"]).apply(null,arguments)};var _emscripten_bind_EventsBasedObject_GetPropertyDescriptors_0=Module["_emscripten_bind_EventsBasedObject_GetPropertyDescriptors_0"]=function(){return(_emscripten_bind_EventsBasedObject_GetPropertyDescriptors_0=Module["_emscripten_bind_EventsBasedObject_GetPropertyDescriptors_0"]=Module["asm"]["HT"]).apply(null,arguments)};var _emscripten_bind_EventsBasedObject_GetName_0=Module["_emscripten_bind_EventsBasedObject_GetName_0"]=function(){return(_emscripten_bind_EventsBasedObject_GetName_0=Module["_emscripten_bind_EventsBasedObject_GetName_0"]=Module["asm"]["IT"]).apply(null,arguments)};var _emscripten_bind_EventsBasedObject_GetFullName_0=Module["_emscripten_bind_EventsBasedObject_GetFullName_0"]=function(){return(_emscripten_bind_EventsBasedObject_GetFullName_0=Module["_emscripten_bind_EventsBasedObject_GetFullName_0"]=Module["asm"]["JT"]).apply(null,arguments)};var _emscripten_bind_EventsBasedObject_GetDescription_0=Module["_emscripten_bind_EventsBasedObject_GetDescription_0"]=function(){return(_emscripten_bind_EventsBasedObject_GetDescription_0=Module["_emscripten_bind_EventsBasedObject_GetDescription_0"]=Module["asm"]["KT"]).apply(null,arguments)};var _emscripten_bind_EventsBasedObject_IsPrivate_0=Module["_emscripten_bind_EventsBasedObject_IsPrivate_0"]=function(){return(_emscripten_bind_EventsBasedObject_IsPrivate_0=Module["_emscripten_bind_EventsBasedObject_IsPrivate_0"]=Module["asm"]["LT"]).apply(null,arguments)};var _emscripten_bind_EventsBasedObject_GetPreviewIconUrl_0=Module["_emscripten_bind_EventsBasedObject_GetPreviewIconUrl_0"]=function(){return(_emscripten_bind_EventsBasedObject_GetPreviewIconUrl_0=Module["_emscripten_bind_EventsBasedObject_GetPreviewIconUrl_0"]=Module["asm"]["MT"]).apply(null,arguments)};var _emscripten_bind_EventsBasedObject_GetIconUrl_0=Module["_emscripten_bind_EventsBasedObject_GetIconUrl_0"]=function(){return(_emscripten_bind_EventsBasedObject_GetIconUrl_0=Module["_emscripten_bind_EventsBasedObject_GetIconUrl_0"]=Module["asm"]["NT"]).apply(null,arguments)};var _emscripten_bind_EventsBasedObject_GetHelpPath_0=Module["_emscripten_bind_EventsBasedObject_GetHelpPath_0"]=function(){return(_emscripten_bind_EventsBasedObject_GetHelpPath_0=Module["_emscripten_bind_EventsBasedObject_GetHelpPath_0"]=Module["asm"]["OT"]).apply(null,arguments)};var _emscripten_bind_EventsBasedObject_SerializeTo_1=Module["_emscripten_bind_EventsBasedObject_SerializeTo_1"]=function(){return(_emscripten_bind_EventsBasedObject_SerializeTo_1=Module["_emscripten_bind_EventsBasedObject_SerializeTo_1"]=Module["asm"]["PT"]).apply(null,arguments)};var _emscripten_bind_EventsBasedObject_UnserializeFrom_2=Module["_emscripten_bind_EventsBasedObject_UnserializeFrom_2"]=function(){return(_emscripten_bind_EventsBasedObject_UnserializeFrom_2=Module["_emscripten_bind_EventsBasedObject_UnserializeFrom_2"]=Module["asm"]["QT"]).apply(null,arguments)};var _emscripten_bind_EventsBasedObject___destroy___0=Module["_emscripten_bind_EventsBasedObject___destroy___0"]=function(){return(_emscripten_bind_EventsBasedObject___destroy___0=Module["_emscripten_bind_EventsBasedObject___destroy___0"]=Module["asm"]["RT"]).apply(null,arguments)};var _emscripten_bind_EventsBasedObjectVariant_EventsBasedObjectVariant_0=Module["_emscripten_bind_EventsBasedObjectVariant_EventsBasedObjectVariant_0"]=function(){return(_emscripten_bind_EventsBasedObjectVariant_EventsBasedObjectVariant_0=Module["_emscripten_bind_EventsBasedObjectVariant_EventsBasedObjectVariant_0"]=Module["asm"]["ST"]).apply(null,arguments)};var _emscripten_bind_EventsBasedObjectVariant_GetName_0=Module["_emscripten_bind_EventsBasedObjectVariant_GetName_0"]=function(){return(_emscripten_bind_EventsBasedObjectVariant_GetName_0=Module["_emscripten_bind_EventsBasedObjectVariant_GetName_0"]=Module["asm"]["TT"]).apply(null,arguments)};var _emscripten_bind_EventsBasedObjectVariant_SetName_1=Module["_emscripten_bind_EventsBasedObjectVariant_SetName_1"]=function(){return(_emscripten_bind_EventsBasedObjectVariant_SetName_1=Module["_emscripten_bind_EventsBasedObjectVariant_SetName_1"]=Module["asm"]["UT"]).apply(null,arguments)};var _emscripten_bind_EventsBasedObjectVariant_GetInitialInstances_0=Module["_emscripten_bind_EventsBasedObjectVariant_GetInitialInstances_0"]=function(){return(_emscripten_bind_EventsBasedObjectVariant_GetInitialInstances_0=Module["_emscripten_bind_EventsBasedObjectVariant_GetInitialInstances_0"]=Module["asm"]["VT"]).apply(null,arguments)};var _emscripten_bind_EventsBasedObjectVariant_GetLayers_0=Module["_emscripten_bind_EventsBasedObjectVariant_GetLayers_0"]=function(){return(_emscripten_bind_EventsBasedObjectVariant_GetLayers_0=Module["_emscripten_bind_EventsBasedObjectVariant_GetLayers_0"]=Module["asm"]["WT"]).apply(null,arguments)};var _emscripten_bind_EventsBasedObjectVariant_GetObjects_0=Module["_emscripten_bind_EventsBasedObjectVariant_GetObjects_0"]=function(){return(_emscripten_bind_EventsBasedObjectVariant_GetObjects_0=Module["_emscripten_bind_EventsBasedObjectVariant_GetObjects_0"]=Module["asm"]["XT"]).apply(null,arguments)};var _emscripten_bind_EventsBasedObjectVariant_GetAreaMinX_0=Module["_emscripten_bind_EventsBasedObjectVariant_GetAreaMinX_0"]=function(){return(_emscripten_bind_EventsBasedObjectVariant_GetAreaMinX_0=Module["_emscripten_bind_EventsBasedObjectVariant_GetAreaMinX_0"]=Module["asm"]["YT"]).apply(null,arguments)};var _emscripten_bind_EventsBasedObjectVariant_GetAreaMinY_0=Module["_emscripten_bind_EventsBasedObjectVariant_GetAreaMinY_0"]=function(){return(_emscripten_bind_EventsBasedObjectVariant_GetAreaMinY_0=Module["_emscripten_bind_EventsBasedObjectVariant_GetAreaMinY_0"]=Module["asm"]["ZT"]).apply(null,arguments)};var _emscripten_bind_EventsBasedObjectVariant_GetAreaMinZ_0=Module["_emscripten_bind_EventsBasedObjectVariant_GetAreaMinZ_0"]=function(){return(_emscripten_bind_EventsBasedObjectVariant_GetAreaMinZ_0=Module["_emscripten_bind_EventsBasedObjectVariant_GetAreaMinZ_0"]=Module["asm"]["_T"]).apply(null,arguments)};var _emscripten_bind_EventsBasedObjectVariant_GetAreaMaxX_0=Module["_emscripten_bind_EventsBasedObjectVariant_GetAreaMaxX_0"]=function(){return(_emscripten_bind_EventsBasedObjectVariant_GetAreaMaxX_0=Module["_emscripten_bind_EventsBasedObjectVariant_GetAreaMaxX_0"]=Module["asm"]["$T"]).apply(null,arguments)};var _emscripten_bind_EventsBasedObjectVariant_GetAreaMaxY_0=Module["_emscripten_bind_EventsBasedObjectVariant_GetAreaMaxY_0"]=function(){return(_emscripten_bind_EventsBasedObjectVariant_GetAreaMaxY_0=Module["_emscripten_bind_EventsBasedObjectVariant_GetAreaMaxY_0"]=Module["asm"]["aU"]).apply(null,arguments)};var _emscripten_bind_EventsBasedObjectVariant_GetAreaMaxZ_0=Module["_emscripten_bind_EventsBasedObjectVariant_GetAreaMaxZ_0"]=function(){return(_emscripten_bind_EventsBasedObjectVariant_GetAreaMaxZ_0=Module["_emscripten_bind_EventsBasedObjectVariant_GetAreaMaxZ_0"]=Module["asm"]["bU"]).apply(null,arguments)};var _emscripten_bind_EventsBasedObjectVariant_SetAreaMinX_1=Module["_emscripten_bind_EventsBasedObjectVariant_SetAreaMinX_1"]=function(){return(_emscripten_bind_EventsBasedObjectVariant_SetAreaMinX_1=Module["_emscripten_bind_EventsBasedObjectVariant_SetAreaMinX_1"]=Module["asm"]["cU"]).apply(null,arguments)};var _emscripten_bind_EventsBasedObjectVariant_SetAreaMinY_1=Module["_emscripten_bind_EventsBasedObjectVariant_SetAreaMinY_1"]=function(){return(_emscripten_bind_EventsBasedObjectVariant_SetAreaMinY_1=Module["_emscripten_bind_EventsBasedObjectVariant_SetAreaMinY_1"]=Module["asm"]["dU"]).apply(null,arguments)};var _emscripten_bind_EventsBasedObjectVariant_SetAreaMinZ_1=Module["_emscripten_bind_EventsBasedObjectVariant_SetAreaMinZ_1"]=function(){return(_emscripten_bind_EventsBasedObjectVariant_SetAreaMinZ_1=Module["_emscripten_bind_EventsBasedObjectVariant_SetAreaMinZ_1"]=Module["asm"]["eU"]).apply(null,arguments)};var _emscripten_bind_EventsBasedObjectVariant_SetAreaMaxX_1=Module["_emscripten_bind_EventsBasedObjectVariant_SetAreaMaxX_1"]=function(){return(_emscripten_bind_EventsBasedObjectVariant_SetAreaMaxX_1=Module["_emscripten_bind_EventsBasedObjectVariant_SetAreaMaxX_1"]=Module["asm"]["fU"]).apply(null,arguments)};var _emscripten_bind_EventsBasedObjectVariant_SetAreaMaxY_1=Module["_emscripten_bind_EventsBasedObjectVariant_SetAreaMaxY_1"]=function(){return(_emscripten_bind_EventsBasedObjectVariant_SetAreaMaxY_1=Module["_emscripten_bind_EventsBasedObjectVariant_SetAreaMaxY_1"]=Module["asm"]["gU"]).apply(null,arguments)};var _emscripten_bind_EventsBasedObjectVariant_SetAreaMaxZ_1=Module["_emscripten_bind_EventsBasedObjectVariant_SetAreaMaxZ_1"]=function(){return(_emscripten_bind_EventsBasedObjectVariant_SetAreaMaxZ_1=Module["_emscripten_bind_EventsBasedObjectVariant_SetAreaMaxZ_1"]=Module["asm"]["hU"]).apply(null,arguments)};var _emscripten_bind_EventsBasedObjectVariant_SetAssetStoreAssetId_1=Module["_emscripten_bind_EventsBasedObjectVariant_SetAssetStoreAssetId_1"]=function(){return(_emscripten_bind_EventsBasedObjectVariant_SetAssetStoreAssetId_1=Module["_emscripten_bind_EventsBasedObjectVariant_SetAssetStoreAssetId_1"]=Module["asm"]["iU"]).apply(null,arguments)};var _emscripten_bind_EventsBasedObjectVariant_GetAssetStoreAssetId_0=Module["_emscripten_bind_EventsBasedObjectVariant_GetAssetStoreAssetId_0"]=function(){return(_emscripten_bind_EventsBasedObjectVariant_GetAssetStoreAssetId_0=Module["_emscripten_bind_EventsBasedObjectVariant_GetAssetStoreAssetId_0"]=Module["asm"]["jU"]).apply(null,arguments)};var _emscripten_bind_EventsBasedObjectVariant_SetAssetStoreOriginalName_1=Module["_emscripten_bind_EventsBasedObjectVariant_SetAssetStoreOriginalName_1"]=function(){return(_emscripten_bind_EventsBasedObjectVariant_SetAssetStoreOriginalName_1=Module["_emscripten_bind_EventsBasedObjectVariant_SetAssetStoreOriginalName_1"]=Module["asm"]["kU"]).apply(null,arguments)};var _emscripten_bind_EventsBasedObjectVariant_GetAssetStoreOriginalName_0=Module["_emscripten_bind_EventsBasedObjectVariant_GetAssetStoreOriginalName_0"]=function(){return(_emscripten_bind_EventsBasedObjectVariant_GetAssetStoreOriginalName_0=Module["_emscripten_bind_EventsBasedObjectVariant_GetAssetStoreOriginalName_0"]=Module["asm"]["lU"]).apply(null,arguments)};var _emscripten_bind_EventsBasedObjectVariant_GetAssociatedEditorSettings_0=Module["_emscripten_bind_EventsBasedObjectVariant_GetAssociatedEditorSettings_0"]=function(){return(_emscripten_bind_EventsBasedObjectVariant_GetAssociatedEditorSettings_0=Module["_emscripten_bind_EventsBasedObjectVariant_GetAssociatedEditorSettings_0"]=Module["asm"]["mU"]).apply(null,arguments)};var _emscripten_bind_EventsBasedObjectVariant_SerializeTo_1=Module["_emscripten_bind_EventsBasedObjectVariant_SerializeTo_1"]=function(){return(_emscripten_bind_EventsBasedObjectVariant_SerializeTo_1=Module["_emscripten_bind_EventsBasedObjectVariant_SerializeTo_1"]=Module["asm"]["nU"]).apply(null,arguments)};var _emscripten_bind_EventsBasedObjectVariant_UnserializeFrom_2=Module["_emscripten_bind_EventsBasedObjectVariant_UnserializeFrom_2"]=function(){return(_emscripten_bind_EventsBasedObjectVariant_UnserializeFrom_2=Module["_emscripten_bind_EventsBasedObjectVariant_UnserializeFrom_2"]=Module["asm"]["oU"]).apply(null,arguments)};var _emscripten_bind_EventsBasedObjectVariant___destroy___0=Module["_emscripten_bind_EventsBasedObjectVariant___destroy___0"]=function(){return(_emscripten_bind_EventsBasedObjectVariant___destroy___0=Module["_emscripten_bind_EventsBasedObjectVariant___destroy___0"]=Module["asm"]["pU"]).apply(null,arguments)};var _emscripten_bind_EventsBasedObjectVariantsContainer_InsertNewVariant_2=Module["_emscripten_bind_EventsBasedObjectVariantsContainer_InsertNewVariant_2"]=function(){return(_emscripten_bind_EventsBasedObjectVariantsContainer_InsertNewVariant_2=Module["_emscripten_bind_EventsBasedObjectVariantsContainer_InsertNewVariant_2"]=Module["asm"]["qU"]).apply(null,arguments)};var _emscripten_bind_EventsBasedObjectVariantsContainer_InsertVariant_2=Module["_emscripten_bind_EventsBasedObjectVariantsContainer_InsertVariant_2"]=function(){return(_emscripten_bind_EventsBasedObjectVariantsContainer_InsertVariant_2=Module["_emscripten_bind_EventsBasedObjectVariantsContainer_InsertVariant_2"]=Module["asm"]["rU"]).apply(null,arguments)};var _emscripten_bind_EventsBasedObjectVariantsContainer_HasVariantNamed_1=Module["_emscripten_bind_EventsBasedObjectVariantsContainer_HasVariantNamed_1"]=function(){return(_emscripten_bind_EventsBasedObjectVariantsContainer_HasVariantNamed_1=Module["_emscripten_bind_EventsBasedObjectVariantsContainer_HasVariantNamed_1"]=Module["asm"]["sU"]).apply(null,arguments)};var _emscripten_bind_EventsBasedObjectVariantsContainer_GetVariant_1=Module["_emscripten_bind_EventsBasedObjectVariantsContainer_GetVariant_1"]=function(){return(_emscripten_bind_EventsBasedObjectVariantsContainer_GetVariant_1=Module["_emscripten_bind_EventsBasedObjectVariantsContainer_GetVariant_1"]=Module["asm"]["tU"]).apply(null,arguments)};var _emscripten_bind_EventsBasedObjectVariantsContainer_GetVariantAt_1=Module["_emscripten_bind_EventsBasedObjectVariantsContainer_GetVariantAt_1"]=function(){return(_emscripten_bind_EventsBasedObjectVariantsContainer_GetVariantAt_1=Module["_emscripten_bind_EventsBasedObjectVariantsContainer_GetVariantAt_1"]=Module["asm"]["uU"]).apply(null,arguments)};var _emscripten_bind_EventsBasedObjectVariantsContainer_RemoveVariant_1=Module["_emscripten_bind_EventsBasedObjectVariantsContainer_RemoveVariant_1"]=function(){return(_emscripten_bind_EventsBasedObjectVariantsContainer_RemoveVariant_1=Module["_emscripten_bind_EventsBasedObjectVariantsContainer_RemoveVariant_1"]=Module["asm"]["vU"]).apply(null,arguments)};var _emscripten_bind_EventsBasedObjectVariantsContainer_MoveVariant_2=Module["_emscripten_bind_EventsBasedObjectVariantsContainer_MoveVariant_2"]=function(){return(_emscripten_bind_EventsBasedObjectVariantsContainer_MoveVariant_2=Module["_emscripten_bind_EventsBasedObjectVariantsContainer_MoveVariant_2"]=Module["asm"]["wU"]).apply(null,arguments)};var _emscripten_bind_EventsBasedObjectVariantsContainer_GetVariantsCount_0=Module["_emscripten_bind_EventsBasedObjectVariantsContainer_GetVariantsCount_0"]=function(){return(_emscripten_bind_EventsBasedObjectVariantsContainer_GetVariantsCount_0=Module["_emscripten_bind_EventsBasedObjectVariantsContainer_GetVariantsCount_0"]=Module["asm"]["xU"]).apply(null,arguments)};var _emscripten_bind_EventsBasedObjectVariantsContainer_GetVariantPosition_1=Module["_emscripten_bind_EventsBasedObjectVariantsContainer_GetVariantPosition_1"]=function(){return(_emscripten_bind_EventsBasedObjectVariantsContainer_GetVariantPosition_1=Module["_emscripten_bind_EventsBasedObjectVariantsContainer_GetVariantPosition_1"]=Module["asm"]["yU"]).apply(null,arguments)};var _emscripten_bind_EventsBasedObjectVariantsContainer___destroy___0=Module["_emscripten_bind_EventsBasedObjectVariantsContainer___destroy___0"]=function(){return(_emscripten_bind_EventsBasedObjectVariantsContainer___destroy___0=Module["_emscripten_bind_EventsBasedObjectVariantsContainer___destroy___0"]=Module["asm"]["zU"]).apply(null,arguments)};var _emscripten_bind_EventsBasedObjectsList_InsertNew_2=Module["_emscripten_bind_EventsBasedObjectsList_InsertNew_2"]=function(){return(_emscripten_bind_EventsBasedObjectsList_InsertNew_2=Module["_emscripten_bind_EventsBasedObjectsList_InsertNew_2"]=Module["asm"]["AU"]).apply(null,arguments)};var _emscripten_bind_EventsBasedObjectsList_Insert_2=Module["_emscripten_bind_EventsBasedObjectsList_Insert_2"]=function(){return(_emscripten_bind_EventsBasedObjectsList_Insert_2=Module["_emscripten_bind_EventsBasedObjectsList_Insert_2"]=Module["asm"]["BU"]).apply(null,arguments)};var _emscripten_bind_EventsBasedObjectsList_Has_1=Module["_emscripten_bind_EventsBasedObjectsList_Has_1"]=function(){return(_emscripten_bind_EventsBasedObjectsList_Has_1=Module["_emscripten_bind_EventsBasedObjectsList_Has_1"]=Module["asm"]["CU"]).apply(null,arguments)};var _emscripten_bind_EventsBasedObjectsList_Get_1=Module["_emscripten_bind_EventsBasedObjectsList_Get_1"]=function(){return(_emscripten_bind_EventsBasedObjectsList_Get_1=Module["_emscripten_bind_EventsBasedObjectsList_Get_1"]=Module["asm"]["DU"]).apply(null,arguments)};var _emscripten_bind_EventsBasedObjectsList_GetAt_1=Module["_emscripten_bind_EventsBasedObjectsList_GetAt_1"]=function(){return(_emscripten_bind_EventsBasedObjectsList_GetAt_1=Module["_emscripten_bind_EventsBasedObjectsList_GetAt_1"]=Module["asm"]["EU"]).apply(null,arguments)};var _emscripten_bind_EventsBasedObjectsList_Remove_1=Module["_emscripten_bind_EventsBasedObjectsList_Remove_1"]=function(){return(_emscripten_bind_EventsBasedObjectsList_Remove_1=Module["_emscripten_bind_EventsBasedObjectsList_Remove_1"]=Module["asm"]["FU"]).apply(null,arguments)};var _emscripten_bind_EventsBasedObjectsList_Move_2=Module["_emscripten_bind_EventsBasedObjectsList_Move_2"]=function(){return(_emscripten_bind_EventsBasedObjectsList_Move_2=Module["_emscripten_bind_EventsBasedObjectsList_Move_2"]=Module["asm"]["GU"]).apply(null,arguments)};var _emscripten_bind_EventsBasedObjectsList_GetCount_0=Module["_emscripten_bind_EventsBasedObjectsList_GetCount_0"]=function(){return(_emscripten_bind_EventsBasedObjectsList_GetCount_0=Module["_emscripten_bind_EventsBasedObjectsList_GetCount_0"]=Module["asm"]["HU"]).apply(null,arguments)};var _emscripten_bind_EventsBasedObjectsList_GetPosition_1=Module["_emscripten_bind_EventsBasedObjectsList_GetPosition_1"]=function(){return(_emscripten_bind_EventsBasedObjectsList_GetPosition_1=Module["_emscripten_bind_EventsBasedObjectsList_GetPosition_1"]=Module["asm"]["IU"]).apply(null,arguments)};var _emscripten_bind_EventsBasedObjectsList_size_0=Module["_emscripten_bind_EventsBasedObjectsList_size_0"]=function(){return(_emscripten_bind_EventsBasedObjectsList_size_0=Module["_emscripten_bind_EventsBasedObjectsList_size_0"]=Module["asm"]["JU"]).apply(null,arguments)};var _emscripten_bind_EventsBasedObjectsList_at_1=Module["_emscripten_bind_EventsBasedObjectsList_at_1"]=function(){return(_emscripten_bind_EventsBasedObjectsList_at_1=Module["_emscripten_bind_EventsBasedObjectsList_at_1"]=Module["asm"]["KU"]).apply(null,arguments)};var _emscripten_bind_EventsBasedObjectsList___destroy___0=Module["_emscripten_bind_EventsBasedObjectsList___destroy___0"]=function(){return(_emscripten_bind_EventsBasedObjectsList___destroy___0=Module["_emscripten_bind_EventsBasedObjectsList___destroy___0"]=Module["asm"]["LU"]).apply(null,arguments)};var _emscripten_bind_PropertyFolderOrProperty_PropertyFolderOrProperty_0=Module["_emscripten_bind_PropertyFolderOrProperty_PropertyFolderOrProperty_0"]=function(){return(_emscripten_bind_PropertyFolderOrProperty_PropertyFolderOrProperty_0=Module["_emscripten_bind_PropertyFolderOrProperty_PropertyFolderOrProperty_0"]=Module["asm"]["MU"]).apply(null,arguments)};var _emscripten_bind_PropertyFolderOrProperty_IsFolder_0=Module["_emscripten_bind_PropertyFolderOrProperty_IsFolder_0"]=function(){return(_emscripten_bind_PropertyFolderOrProperty_IsFolder_0=Module["_emscripten_bind_PropertyFolderOrProperty_IsFolder_0"]=Module["asm"]["NU"]).apply(null,arguments)};var _emscripten_bind_PropertyFolderOrProperty_IsRootFolder_0=Module["_emscripten_bind_PropertyFolderOrProperty_IsRootFolder_0"]=function(){return(_emscripten_bind_PropertyFolderOrProperty_IsRootFolder_0=Module["_emscripten_bind_PropertyFolderOrProperty_IsRootFolder_0"]=Module["asm"]["OU"]).apply(null,arguments)};var _emscripten_bind_PropertyFolderOrProperty_GetProperty_0=Module["_emscripten_bind_PropertyFolderOrProperty_GetProperty_0"]=function(){return(_emscripten_bind_PropertyFolderOrProperty_GetProperty_0=Module["_emscripten_bind_PropertyFolderOrProperty_GetProperty_0"]=Module["asm"]["PU"]).apply(null,arguments)};var _emscripten_bind_PropertyFolderOrProperty_GetFolderName_0=Module["_emscripten_bind_PropertyFolderOrProperty_GetFolderName_0"]=function(){return(_emscripten_bind_PropertyFolderOrProperty_GetFolderName_0=Module["_emscripten_bind_PropertyFolderOrProperty_GetFolderName_0"]=Module["asm"]["QU"]).apply(null,arguments)};var _emscripten_bind_PropertyFolderOrProperty_SetFolderName_1=Module["_emscripten_bind_PropertyFolderOrProperty_SetFolderName_1"]=function(){return(_emscripten_bind_PropertyFolderOrProperty_SetFolderName_1=Module["_emscripten_bind_PropertyFolderOrProperty_SetFolderName_1"]=Module["asm"]["RU"]).apply(null,arguments)};var _emscripten_bind_PropertyFolderOrProperty_HasPropertyNamed_1=Module["_emscripten_bind_PropertyFolderOrProperty_HasPropertyNamed_1"]=function(){return(_emscripten_bind_PropertyFolderOrProperty_HasPropertyNamed_1=Module["_emscripten_bind_PropertyFolderOrProperty_HasPropertyNamed_1"]=Module["asm"]["SU"]).apply(null,arguments)};var _emscripten_bind_PropertyFolderOrProperty_GetPropertyNamed_1=Module["_emscripten_bind_PropertyFolderOrProperty_GetPropertyNamed_1"]=function(){return(_emscripten_bind_PropertyFolderOrProperty_GetPropertyNamed_1=Module["_emscripten_bind_PropertyFolderOrProperty_GetPropertyNamed_1"]=Module["asm"]["TU"]).apply(null,arguments)};var _emscripten_bind_PropertyFolderOrProperty_GetChildrenCount_0=Module["_emscripten_bind_PropertyFolderOrProperty_GetChildrenCount_0"]=function(){return(_emscripten_bind_PropertyFolderOrProperty_GetChildrenCount_0=Module["_emscripten_bind_PropertyFolderOrProperty_GetChildrenCount_0"]=Module["asm"]["UU"]).apply(null,arguments)};var _emscripten_bind_PropertyFolderOrProperty_GetChildAt_1=Module["_emscripten_bind_PropertyFolderOrProperty_GetChildAt_1"]=function(){return(_emscripten_bind_PropertyFolderOrProperty_GetChildAt_1=Module["_emscripten_bind_PropertyFolderOrProperty_GetChildAt_1"]=Module["asm"]["VU"]).apply(null,arguments)};var _emscripten_bind_PropertyFolderOrProperty_GetPropertyChild_1=Module["_emscripten_bind_PropertyFolderOrProperty_GetPropertyChild_1"]=function(){return(_emscripten_bind_PropertyFolderOrProperty_GetPropertyChild_1=Module["_emscripten_bind_PropertyFolderOrProperty_GetPropertyChild_1"]=Module["asm"]["WU"]).apply(null,arguments)};var _emscripten_bind_PropertyFolderOrProperty_GetOrCreateChildFolder_1=Module["_emscripten_bind_PropertyFolderOrProperty_GetOrCreateChildFolder_1"]=function(){return(_emscripten_bind_PropertyFolderOrProperty_GetOrCreateChildFolder_1=Module["_emscripten_bind_PropertyFolderOrProperty_GetOrCreateChildFolder_1"]=Module["asm"]["XU"]).apply(null,arguments)};var _emscripten_bind_PropertyFolderOrProperty_GetChildPosition_1=Module["_emscripten_bind_PropertyFolderOrProperty_GetChildPosition_1"]=function(){return(_emscripten_bind_PropertyFolderOrProperty_GetChildPosition_1=Module["_emscripten_bind_PropertyFolderOrProperty_GetChildPosition_1"]=Module["asm"]["YU"]).apply(null,arguments)};var _emscripten_bind_PropertyFolderOrProperty_GetParent_0=Module["_emscripten_bind_PropertyFolderOrProperty_GetParent_0"]=function(){return(_emscripten_bind_PropertyFolderOrProperty_GetParent_0=Module["_emscripten_bind_PropertyFolderOrProperty_GetParent_0"]=Module["asm"]["ZU"]).apply(null,arguments)};var _emscripten_bind_PropertyFolderOrProperty_InsertNewFolder_2=Module["_emscripten_bind_PropertyFolderOrProperty_InsertNewFolder_2"]=function(){return(_emscripten_bind_PropertyFolderOrProperty_InsertNewFolder_2=Module["_emscripten_bind_PropertyFolderOrProperty_InsertNewFolder_2"]=Module["asm"]["_U"]).apply(null,arguments)};var _emscripten_bind_PropertyFolderOrProperty_MovePropertyFolderOrPropertyToAnotherFolder_3=Module["_emscripten_bind_PropertyFolderOrProperty_MovePropertyFolderOrPropertyToAnotherFolder_3"]=function(){return(_emscripten_bind_PropertyFolderOrProperty_MovePropertyFolderOrPropertyToAnotherFolder_3=Module["_emscripten_bind_PropertyFolderOrProperty_MovePropertyFolderOrPropertyToAnotherFolder_3"]=Module["asm"]["$U"]).apply(null,arguments)};var _emscripten_bind_PropertyFolderOrProperty_MoveChild_2=Module["_emscripten_bind_PropertyFolderOrProperty_MoveChild_2"]=function(){return(_emscripten_bind_PropertyFolderOrProperty_MoveChild_2=Module["_emscripten_bind_PropertyFolderOrProperty_MoveChild_2"]=Module["asm"]["aV"]).apply(null,arguments)};var _emscripten_bind_PropertyFolderOrProperty_RemoveFolderChild_1=Module["_emscripten_bind_PropertyFolderOrProperty_RemoveFolderChild_1"]=function(){return(_emscripten_bind_PropertyFolderOrProperty_RemoveFolderChild_1=Module["_emscripten_bind_PropertyFolderOrProperty_RemoveFolderChild_1"]=Module["asm"]["bV"]).apply(null,arguments)};var _emscripten_bind_PropertyFolderOrProperty_IsADescendantOf_1=Module["_emscripten_bind_PropertyFolderOrProperty_IsADescendantOf_1"]=function(){return(_emscripten_bind_PropertyFolderOrProperty_IsADescendantOf_1=Module["_emscripten_bind_PropertyFolderOrProperty_IsADescendantOf_1"]=Module["asm"]["cV"]).apply(null,arguments)};var _emscripten_bind_PropertyFolderOrProperty___destroy___0=Module["_emscripten_bind_PropertyFolderOrProperty___destroy___0"]=function(){return(_emscripten_bind_PropertyFolderOrProperty___destroy___0=Module["_emscripten_bind_PropertyFolderOrProperty___destroy___0"]=Module["asm"]["dV"]).apply(null,arguments)};var _emscripten_bind_PropertiesContainer_PropertiesContainer_1=Module["_emscripten_bind_PropertiesContainer_PropertiesContainer_1"]=function(){return(_emscripten_bind_PropertiesContainer_PropertiesContainer_1=Module["_emscripten_bind_PropertiesContainer_PropertiesContainer_1"]=Module["asm"]["eV"]).apply(null,arguments)};var _emscripten_bind_PropertiesContainer_InsertNew_2=Module["_emscripten_bind_PropertiesContainer_InsertNew_2"]=function(){return(_emscripten_bind_PropertiesContainer_InsertNew_2=Module["_emscripten_bind_PropertiesContainer_InsertNew_2"]=Module["asm"]["fV"]).apply(null,arguments)};var _emscripten_bind_PropertiesContainer_Insert_2=Module["_emscripten_bind_PropertiesContainer_Insert_2"]=function(){return(_emscripten_bind_PropertiesContainer_Insert_2=Module["_emscripten_bind_PropertiesContainer_Insert_2"]=Module["asm"]["gV"]).apply(null,arguments)};var _emscripten_bind_PropertiesContainer_Has_1=Module["_emscripten_bind_PropertiesContainer_Has_1"]=function(){return(_emscripten_bind_PropertiesContainer_Has_1=Module["_emscripten_bind_PropertiesContainer_Has_1"]=Module["asm"]["hV"]).apply(null,arguments)};var _emscripten_bind_PropertiesContainer_Get_1=Module["_emscripten_bind_PropertiesContainer_Get_1"]=function(){return(_emscripten_bind_PropertiesContainer_Get_1=Module["_emscripten_bind_PropertiesContainer_Get_1"]=Module["asm"]["iV"]).apply(null,arguments)};var _emscripten_bind_PropertiesContainer_GetAt_1=Module["_emscripten_bind_PropertiesContainer_GetAt_1"]=function(){return(_emscripten_bind_PropertiesContainer_GetAt_1=Module["_emscripten_bind_PropertiesContainer_GetAt_1"]=Module["asm"]["jV"]).apply(null,arguments)};var _emscripten_bind_PropertiesContainer_Remove_1=Module["_emscripten_bind_PropertiesContainer_Remove_1"]=function(){return(_emscripten_bind_PropertiesContainer_Remove_1=Module["_emscripten_bind_PropertiesContainer_Remove_1"]=Module["asm"]["kV"]).apply(null,arguments)};var _emscripten_bind_PropertiesContainer_Move_2=Module["_emscripten_bind_PropertiesContainer_Move_2"]=function(){return(_emscripten_bind_PropertiesContainer_Move_2=Module["_emscripten_bind_PropertiesContainer_Move_2"]=Module["asm"]["lV"]).apply(null,arguments)};var _emscripten_bind_PropertiesContainer_GetCount_0=Module["_emscripten_bind_PropertiesContainer_GetCount_0"]=function(){return(_emscripten_bind_PropertiesContainer_GetCount_0=Module["_emscripten_bind_PropertiesContainer_GetCount_0"]=Module["asm"]["mV"]).apply(null,arguments)};var _emscripten_bind_PropertiesContainer_GetPosition_1=Module["_emscripten_bind_PropertiesContainer_GetPosition_1"]=function(){return(_emscripten_bind_PropertiesContainer_GetPosition_1=Module["_emscripten_bind_PropertiesContainer_GetPosition_1"]=Module["asm"]["nV"]).apply(null,arguments)};var _emscripten_bind_PropertiesContainer_size_0=Module["_emscripten_bind_PropertiesContainer_size_0"]=function(){return(_emscripten_bind_PropertiesContainer_size_0=Module["_emscripten_bind_PropertiesContainer_size_0"]=Module["asm"]["oV"]).apply(null,arguments)};var _emscripten_bind_PropertiesContainer_at_1=Module["_emscripten_bind_PropertiesContainer_at_1"]=function(){return(_emscripten_bind_PropertiesContainer_at_1=Module["_emscripten_bind_PropertiesContainer_at_1"]=Module["asm"]["pV"]).apply(null,arguments)};var _emscripten_bind_PropertiesContainer_InsertNewPropertyInFolder_3=Module["_emscripten_bind_PropertiesContainer_InsertNewPropertyInFolder_3"]=function(){return(_emscripten_bind_PropertiesContainer_InsertNewPropertyInFolder_3=Module["_emscripten_bind_PropertiesContainer_InsertNewPropertyInFolder_3"]=Module["asm"]["qV"]).apply(null,arguments)};var _emscripten_bind_PropertiesContainer_GetRootFolder_0=Module["_emscripten_bind_PropertiesContainer_GetRootFolder_0"]=function(){return(_emscripten_bind_PropertiesContainer_GetRootFolder_0=Module["_emscripten_bind_PropertiesContainer_GetRootFolder_0"]=Module["asm"]["rV"]).apply(null,arguments)};var _emscripten_bind_PropertiesContainer_GetAllPropertyFolderOrProperty_0=Module["_emscripten_bind_PropertiesContainer_GetAllPropertyFolderOrProperty_0"]=function(){return(_emscripten_bind_PropertiesContainer_GetAllPropertyFolderOrProperty_0=Module["_emscripten_bind_PropertiesContainer_GetAllPropertyFolderOrProperty_0"]=Module["asm"]["sV"]).apply(null,arguments)};var _emscripten_bind_PropertiesContainer_AddMissingPropertiesInRootFolder_0=Module["_emscripten_bind_PropertiesContainer_AddMissingPropertiesInRootFolder_0"]=function(){return(_emscripten_bind_PropertiesContainer_AddMissingPropertiesInRootFolder_0=Module["_emscripten_bind_PropertiesContainer_AddMissingPropertiesInRootFolder_0"]=Module["asm"]["tV"]).apply(null,arguments)};var _emscripten_bind_PropertiesContainer___destroy___0=Module["_emscripten_bind_PropertiesContainer___destroy___0"]=function(){return(_emscripten_bind_PropertiesContainer___destroy___0=Module["_emscripten_bind_PropertiesContainer___destroy___0"]=Module["asm"]["uV"]).apply(null,arguments)};var _emscripten_bind_EventsFunctionsExtension_EventsFunctionsExtension_0=Module["_emscripten_bind_EventsFunctionsExtension_EventsFunctionsExtension_0"]=function(){return(_emscripten_bind_EventsFunctionsExtension_EventsFunctionsExtension_0=Module["_emscripten_bind_EventsFunctionsExtension_EventsFunctionsExtension_0"]=Module["asm"]["vV"]).apply(null,arguments)};var _emscripten_bind_EventsFunctionsExtension_SetNamespace_1=Module["_emscripten_bind_EventsFunctionsExtension_SetNamespace_1"]=function(){return(_emscripten_bind_EventsFunctionsExtension_SetNamespace_1=Module["_emscripten_bind_EventsFunctionsExtension_SetNamespace_1"]=Module["asm"]["wV"]).apply(null,arguments)};var _emscripten_bind_EventsFunctionsExtension_GetNamespace_0=Module["_emscripten_bind_EventsFunctionsExtension_GetNamespace_0"]=function(){return(_emscripten_bind_EventsFunctionsExtension_GetNamespace_0=Module["_emscripten_bind_EventsFunctionsExtension_GetNamespace_0"]=Module["asm"]["xV"]).apply(null,arguments)};var _emscripten_bind_EventsFunctionsExtension_SetVersion_1=Module["_emscripten_bind_EventsFunctionsExtension_SetVersion_1"]=function(){return(_emscripten_bind_EventsFunctionsExtension_SetVersion_1=Module["_emscripten_bind_EventsFunctionsExtension_SetVersion_1"]=Module["asm"]["yV"]).apply(null,arguments)};var _emscripten_bind_EventsFunctionsExtension_GetVersion_0=Module["_emscripten_bind_EventsFunctionsExtension_GetVersion_0"]=function(){return(_emscripten_bind_EventsFunctionsExtension_GetVersion_0=Module["_emscripten_bind_EventsFunctionsExtension_GetVersion_0"]=Module["asm"]["zV"]).apply(null,arguments)};var _emscripten_bind_EventsFunctionsExtension_SetShortDescription_1=Module["_emscripten_bind_EventsFunctionsExtension_SetShortDescription_1"]=function(){return(_emscripten_bind_EventsFunctionsExtension_SetShortDescription_1=Module["_emscripten_bind_EventsFunctionsExtension_SetShortDescription_1"]=Module["asm"]["AV"]).apply(null,arguments)};var _emscripten_bind_EventsFunctionsExtension_GetShortDescription_0=Module["_emscripten_bind_EventsFunctionsExtension_GetShortDescription_0"]=function(){return(_emscripten_bind_EventsFunctionsExtension_GetShortDescription_0=Module["_emscripten_bind_EventsFunctionsExtension_GetShortDescription_0"]=Module["asm"]["BV"]).apply(null,arguments)};var _emscripten_bind_EventsFunctionsExtension_SetDescription_1=Module["_emscripten_bind_EventsFunctionsExtension_SetDescription_1"]=function(){return(_emscripten_bind_EventsFunctionsExtension_SetDescription_1=Module["_emscripten_bind_EventsFunctionsExtension_SetDescription_1"]=Module["asm"]["CV"]).apply(null,arguments)};var _emscripten_bind_EventsFunctionsExtension_GetDescription_0=Module["_emscripten_bind_EventsFunctionsExtension_GetDescription_0"]=function(){return(_emscripten_bind_EventsFunctionsExtension_GetDescription_0=Module["_emscripten_bind_EventsFunctionsExtension_GetDescription_0"]=Module["asm"]["DV"]).apply(null,arguments)};var _emscripten_bind_EventsFunctionsExtension_SetDimension_1=Module["_emscripten_bind_EventsFunctionsExtension_SetDimension_1"]=function(){return(_emscripten_bind_EventsFunctionsExtension_SetDimension_1=Module["_emscripten_bind_EventsFunctionsExtension_SetDimension_1"]=Module["asm"]["EV"]).apply(null,arguments)};var _emscripten_bind_EventsFunctionsExtension_GetDimension_0=Module["_emscripten_bind_EventsFunctionsExtension_GetDimension_0"]=function(){return(_emscripten_bind_EventsFunctionsExtension_GetDimension_0=Module["_emscripten_bind_EventsFunctionsExtension_GetDimension_0"]=Module["asm"]["FV"]).apply(null,arguments)};var _emscripten_bind_EventsFunctionsExtension_SetName_1=Module["_emscripten_bind_EventsFunctionsExtension_SetName_1"]=function(){return(_emscripten_bind_EventsFunctionsExtension_SetName_1=Module["_emscripten_bind_EventsFunctionsExtension_SetName_1"]=Module["asm"]["GV"]).apply(null,arguments)};var _emscripten_bind_EventsFunctionsExtension_GetName_0=Module["_emscripten_bind_EventsFunctionsExtension_GetName_0"]=function(){return(_emscripten_bind_EventsFunctionsExtension_GetName_0=Module["_emscripten_bind_EventsFunctionsExtension_GetName_0"]=Module["asm"]["HV"]).apply(null,arguments)};var _emscripten_bind_EventsFunctionsExtension_SetFullName_1=Module["_emscripten_bind_EventsFunctionsExtension_SetFullName_1"]=function(){return(_emscripten_bind_EventsFunctionsExtension_SetFullName_1=Module["_emscripten_bind_EventsFunctionsExtension_SetFullName_1"]=Module["asm"]["IV"]).apply(null,arguments)};var _emscripten_bind_EventsFunctionsExtension_GetFullName_0=Module["_emscripten_bind_EventsFunctionsExtension_GetFullName_0"]=function(){return(_emscripten_bind_EventsFunctionsExtension_GetFullName_0=Module["_emscripten_bind_EventsFunctionsExtension_GetFullName_0"]=Module["asm"]["JV"]).apply(null,arguments)};var _emscripten_bind_EventsFunctionsExtension_SetCategory_1=Module["_emscripten_bind_EventsFunctionsExtension_SetCategory_1"]=function(){return(_emscripten_bind_EventsFunctionsExtension_SetCategory_1=Module["_emscripten_bind_EventsFunctionsExtension_SetCategory_1"]=Module["asm"]["KV"]).apply(null,arguments)};var _emscripten_bind_EventsFunctionsExtension_GetCategory_0=Module["_emscripten_bind_EventsFunctionsExtension_GetCategory_0"]=function(){return(_emscripten_bind_EventsFunctionsExtension_GetCategory_0=Module["_emscripten_bind_EventsFunctionsExtension_GetCategory_0"]=Module["asm"]["LV"]).apply(null,arguments)};var _emscripten_bind_EventsFunctionsExtension_GetTags_0=Module["_emscripten_bind_EventsFunctionsExtension_GetTags_0"]=function(){return(_emscripten_bind_EventsFunctionsExtension_GetTags_0=Module["_emscripten_bind_EventsFunctionsExtension_GetTags_0"]=Module["asm"]["MV"]).apply(null,arguments)};var _emscripten_bind_EventsFunctionsExtension_GetAuthorIds_0=Module["_emscripten_bind_EventsFunctionsExtension_GetAuthorIds_0"]=function(){return(_emscripten_bind_EventsFunctionsExtension_GetAuthorIds_0=Module["_emscripten_bind_EventsFunctionsExtension_GetAuthorIds_0"]=Module["asm"]["NV"]).apply(null,arguments)};var _emscripten_bind_EventsFunctionsExtension_SetAuthor_1=Module["_emscripten_bind_EventsFunctionsExtension_SetAuthor_1"]=function(){return(_emscripten_bind_EventsFunctionsExtension_SetAuthor_1=Module["_emscripten_bind_EventsFunctionsExtension_SetAuthor_1"]=Module["asm"]["OV"]).apply(null,arguments)};var _emscripten_bind_EventsFunctionsExtension_GetAuthor_0=Module["_emscripten_bind_EventsFunctionsExtension_GetAuthor_0"]=function(){return(_emscripten_bind_EventsFunctionsExtension_GetAuthor_0=Module["_emscripten_bind_EventsFunctionsExtension_GetAuthor_0"]=Module["asm"]["PV"]).apply(null,arguments)};var _emscripten_bind_EventsFunctionsExtension_SetPreviewIconUrl_1=Module["_emscripten_bind_EventsFunctionsExtension_SetPreviewIconUrl_1"]=function(){return(_emscripten_bind_EventsFunctionsExtension_SetPreviewIconUrl_1=Module["_emscripten_bind_EventsFunctionsExtension_SetPreviewIconUrl_1"]=Module["asm"]["QV"]).apply(null,arguments)};var _emscripten_bind_EventsFunctionsExtension_GetPreviewIconUrl_0=Module["_emscripten_bind_EventsFunctionsExtension_GetPreviewIconUrl_0"]=function(){return(_emscripten_bind_EventsFunctionsExtension_GetPreviewIconUrl_0=Module["_emscripten_bind_EventsFunctionsExtension_GetPreviewIconUrl_0"]=Module["asm"]["RV"]).apply(null,arguments)};var _emscripten_bind_EventsFunctionsExtension_SetIconUrl_1=Module["_emscripten_bind_EventsFunctionsExtension_SetIconUrl_1"]=function(){return(_emscripten_bind_EventsFunctionsExtension_SetIconUrl_1=Module["_emscripten_bind_EventsFunctionsExtension_SetIconUrl_1"]=Module["asm"]["SV"]).apply(null,arguments)};var _emscripten_bind_EventsFunctionsExtension_GetIconUrl_0=Module["_emscripten_bind_EventsFunctionsExtension_GetIconUrl_0"]=function(){return(_emscripten_bind_EventsFunctionsExtension_GetIconUrl_0=Module["_emscripten_bind_EventsFunctionsExtension_GetIconUrl_0"]=Module["asm"]["TV"]).apply(null,arguments)};var _emscripten_bind_EventsFunctionsExtension_SetHelpPath_1=Module["_emscripten_bind_EventsFunctionsExtension_SetHelpPath_1"]=function(){return(_emscripten_bind_EventsFunctionsExtension_SetHelpPath_1=Module["_emscripten_bind_EventsFunctionsExtension_SetHelpPath_1"]=Module["asm"]["UV"]).apply(null,arguments)};var _emscripten_bind_EventsFunctionsExtension_GetHelpPath_0=Module["_emscripten_bind_EventsFunctionsExtension_GetHelpPath_0"]=function(){return(_emscripten_bind_EventsFunctionsExtension_GetHelpPath_0=Module["_emscripten_bind_EventsFunctionsExtension_GetHelpPath_0"]=Module["asm"]["VV"]).apply(null,arguments)};var _emscripten_bind_EventsFunctionsExtension_SetOrigin_2=Module["_emscripten_bind_EventsFunctionsExtension_SetOrigin_2"]=function(){return(_emscripten_bind_EventsFunctionsExtension_SetOrigin_2=Module["_emscripten_bind_EventsFunctionsExtension_SetOrigin_2"]=Module["asm"]["WV"]).apply(null,arguments)};var _emscripten_bind_EventsFunctionsExtension_GetOriginName_0=Module["_emscripten_bind_EventsFunctionsExtension_GetOriginName_0"]=function(){return(_emscripten_bind_EventsFunctionsExtension_GetOriginName_0=Module["_emscripten_bind_EventsFunctionsExtension_GetOriginName_0"]=Module["asm"]["XV"]).apply(null,arguments)};var _emscripten_bind_EventsFunctionsExtension_GetOriginIdentifier_0=Module["_emscripten_bind_EventsFunctionsExtension_GetOriginIdentifier_0"]=function(){return(_emscripten_bind_EventsFunctionsExtension_GetOriginIdentifier_0=Module["_emscripten_bind_EventsFunctionsExtension_GetOriginIdentifier_0"]=Module["asm"]["YV"]).apply(null,arguments)};var _emscripten_bind_EventsFunctionsExtension_AddDependency_0=Module["_emscripten_bind_EventsFunctionsExtension_AddDependency_0"]=function(){return(_emscripten_bind_EventsFunctionsExtension_AddDependency_0=Module["_emscripten_bind_EventsFunctionsExtension_AddDependency_0"]=Module["asm"]["ZV"]).apply(null,arguments)};var _emscripten_bind_EventsFunctionsExtension_RemoveDependencyAt_1=Module["_emscripten_bind_EventsFunctionsExtension_RemoveDependencyAt_1"]=function(){return(_emscripten_bind_EventsFunctionsExtension_RemoveDependencyAt_1=Module["_emscripten_bind_EventsFunctionsExtension_RemoveDependencyAt_1"]=Module["asm"]["_V"]).apply(null,arguments)};var _emscripten_bind_EventsFunctionsExtension_GetAllDependencies_0=Module["_emscripten_bind_EventsFunctionsExtension_GetAllDependencies_0"]=function(){return(_emscripten_bind_EventsFunctionsExtension_GetAllDependencies_0=Module["_emscripten_bind_EventsFunctionsExtension_GetAllDependencies_0"]=Module["asm"]["$V"]).apply(null,arguments)};var _emscripten_bind_EventsFunctionsExtension_AddSourceFile_0=Module["_emscripten_bind_EventsFunctionsExtension_AddSourceFile_0"]=function(){return(_emscripten_bind_EventsFunctionsExtension_AddSourceFile_0=Module["_emscripten_bind_EventsFunctionsExtension_AddSourceFile_0"]=Module["asm"]["aW"]).apply(null,arguments)};var _emscripten_bind_EventsFunctionsExtension_RemoveSourceFileAt_1=Module["_emscripten_bind_EventsFunctionsExtension_RemoveSourceFileAt_1"]=function(){return(_emscripten_bind_EventsFunctionsExtension_RemoveSourceFileAt_1=Module["_emscripten_bind_EventsFunctionsExtension_RemoveSourceFileAt_1"]=Module["asm"]["bW"]).apply(null,arguments)};var _emscripten_bind_EventsFunctionsExtension_GetAllSourceFiles_0=Module["_emscripten_bind_EventsFunctionsExtension_GetAllSourceFiles_0"]=function(){return(_emscripten_bind_EventsFunctionsExtension_GetAllSourceFiles_0=Module["_emscripten_bind_EventsFunctionsExtension_GetAllSourceFiles_0"]=Module["asm"]["cW"]).apply(null,arguments)};var _emscripten_bind_EventsFunctionsExtension_GetEventsFunctions_0=Module["_emscripten_bind_EventsFunctionsExtension_GetEventsFunctions_0"]=function(){return(_emscripten_bind_EventsFunctionsExtension_GetEventsFunctions_0=Module["_emscripten_bind_EventsFunctionsExtension_GetEventsFunctions_0"]=Module["asm"]["dW"]).apply(null,arguments)};var _emscripten_bind_EventsFunctionsExtension_GetGlobalVariables_0=Module["_emscripten_bind_EventsFunctionsExtension_GetGlobalVariables_0"]=function(){return(_emscripten_bind_EventsFunctionsExtension_GetGlobalVariables_0=Module["_emscripten_bind_EventsFunctionsExtension_GetGlobalVariables_0"]=Module["asm"]["eW"]).apply(null,arguments)};var _emscripten_bind_EventsFunctionsExtension_GetSceneVariables_0=Module["_emscripten_bind_EventsFunctionsExtension_GetSceneVariables_0"]=function(){return(_emscripten_bind_EventsFunctionsExtension_GetSceneVariables_0=Module["_emscripten_bind_EventsFunctionsExtension_GetSceneVariables_0"]=Module["asm"]["fW"]).apply(null,arguments)};var _emscripten_bind_EventsFunctionsExtension_GetEventsBasedBehaviors_0=Module["_emscripten_bind_EventsFunctionsExtension_GetEventsBasedBehaviors_0"]=function(){return(_emscripten_bind_EventsFunctionsExtension_GetEventsBasedBehaviors_0=Module["_emscripten_bind_EventsFunctionsExtension_GetEventsBasedBehaviors_0"]=Module["asm"]["gW"]).apply(null,arguments)};var _emscripten_bind_EventsFunctionsExtension_GetEventsBasedObjects_0=Module["_emscripten_bind_EventsFunctionsExtension_GetEventsBasedObjects_0"]=function(){return(_emscripten_bind_EventsFunctionsExtension_GetEventsBasedObjects_0=Module["_emscripten_bind_EventsFunctionsExtension_GetEventsBasedObjects_0"]=Module["asm"]["hW"]).apply(null,arguments)};var _emscripten_bind_EventsFunctionsExtension_SerializeTo_1=Module["_emscripten_bind_EventsFunctionsExtension_SerializeTo_1"]=function(){return(_emscripten_bind_EventsFunctionsExtension_SerializeTo_1=Module["_emscripten_bind_EventsFunctionsExtension_SerializeTo_1"]=Module["asm"]["iW"]).apply(null,arguments)};var _emscripten_bind_EventsFunctionsExtension_SerializeToExternal_1=Module["_emscripten_bind_EventsFunctionsExtension_SerializeToExternal_1"]=function(){return(_emscripten_bind_EventsFunctionsExtension_SerializeToExternal_1=Module["_emscripten_bind_EventsFunctionsExtension_SerializeToExternal_1"]=Module["asm"]["jW"]).apply(null,arguments)};var _emscripten_bind_EventsFunctionsExtension_UnserializeFrom_2=Module["_emscripten_bind_EventsFunctionsExtension_UnserializeFrom_2"]=function(){return(_emscripten_bind_EventsFunctionsExtension_UnserializeFrom_2=Module["_emscripten_bind_EventsFunctionsExtension_UnserializeFrom_2"]=Module["asm"]["kW"]).apply(null,arguments)};var _emscripten_bind_EventsFunctionsExtension_STATIC_IsExtensionLifecycleEventsFunction_1=Module["_emscripten_bind_EventsFunctionsExtension_STATIC_IsExtensionLifecycleEventsFunction_1"]=function(){return(_emscripten_bind_EventsFunctionsExtension_STATIC_IsExtensionLifecycleEventsFunction_1=Module["_emscripten_bind_EventsFunctionsExtension_STATIC_IsExtensionLifecycleEventsFunction_1"]=Module["asm"]["lW"]).apply(null,arguments)};var _emscripten_bind_EventsFunctionsExtension___destroy___0=Module["_emscripten_bind_EventsFunctionsExtension___destroy___0"]=function(){return(_emscripten_bind_EventsFunctionsExtension___destroy___0=Module["_emscripten_bind_EventsFunctionsExtension___destroy___0"]=Module["asm"]["mW"]).apply(null,arguments)};var _emscripten_bind_AbstractFileSystemJS_AbstractFileSystemJS_0=Module["_emscripten_bind_AbstractFileSystemJS_AbstractFileSystemJS_0"]=function(){return(_emscripten_bind_AbstractFileSystemJS_AbstractFileSystemJS_0=Module["_emscripten_bind_AbstractFileSystemJS_AbstractFileSystemJS_0"]=Module["asm"]["nW"]).apply(null,arguments)};var _emscripten_bind_AbstractFileSystemJS_MkDir_1=Module["_emscripten_bind_AbstractFileSystemJS_MkDir_1"]=function(){return(_emscripten_bind_AbstractFileSystemJS_MkDir_1=Module["_emscripten_bind_AbstractFileSystemJS_MkDir_1"]=Module["asm"]["oW"]).apply(null,arguments)};var _emscripten_bind_AbstractFileSystemJS_DirExists_1=Module["_emscripten_bind_AbstractFileSystemJS_DirExists_1"]=function(){return(_emscripten_bind_AbstractFileSystemJS_DirExists_1=Module["_emscripten_bind_AbstractFileSystemJS_DirExists_1"]=Module["asm"]["pW"]).apply(null,arguments)};var _emscripten_bind_AbstractFileSystemJS_ClearDir_1=Module["_emscripten_bind_AbstractFileSystemJS_ClearDir_1"]=function(){return(_emscripten_bind_AbstractFileSystemJS_ClearDir_1=Module["_emscripten_bind_AbstractFileSystemJS_ClearDir_1"]=Module["asm"]["qW"]).apply(null,arguments)};var _emscripten_bind_AbstractFileSystemJS_GetTempDir_0=Module["_emscripten_bind_AbstractFileSystemJS_GetTempDir_0"]=function(){return(_emscripten_bind_AbstractFileSystemJS_GetTempDir_0=Module["_emscripten_bind_AbstractFileSystemJS_GetTempDir_0"]=Module["asm"]["rW"]).apply(null,arguments)};var _emscripten_bind_AbstractFileSystemJS_FileNameFrom_1=Module["_emscripten_bind_AbstractFileSystemJS_FileNameFrom_1"]=function(){return(_emscripten_bind_AbstractFileSystemJS_FileNameFrom_1=Module["_emscripten_bind_AbstractFileSystemJS_FileNameFrom_1"]=Module["asm"]["sW"]).apply(null,arguments)};var _emscripten_bind_AbstractFileSystemJS_DirNameFrom_1=Module["_emscripten_bind_AbstractFileSystemJS_DirNameFrom_1"]=function(){return(_emscripten_bind_AbstractFileSystemJS_DirNameFrom_1=Module["_emscripten_bind_AbstractFileSystemJS_DirNameFrom_1"]=Module["asm"]["tW"]).apply(null,arguments)};var _emscripten_bind_AbstractFileSystemJS_IsAbsolute_1=Module["_emscripten_bind_AbstractFileSystemJS_IsAbsolute_1"]=function(){return(_emscripten_bind_AbstractFileSystemJS_IsAbsolute_1=Module["_emscripten_bind_AbstractFileSystemJS_IsAbsolute_1"]=Module["asm"]["uW"]).apply(null,arguments)};var _emscripten_bind_AbstractFileSystemJS_CopyFile_2=Module["_emscripten_bind_AbstractFileSystemJS_CopyFile_2"]=function(){return(_emscripten_bind_AbstractFileSystemJS_CopyFile_2=Module["_emscripten_bind_AbstractFileSystemJS_CopyFile_2"]=Module["asm"]["vW"]).apply(null,arguments)};var _emscripten_bind_AbstractFileSystemJS_WriteToFile_2=Module["_emscripten_bind_AbstractFileSystemJS_WriteToFile_2"]=function(){return(_emscripten_bind_AbstractFileSystemJS_WriteToFile_2=Module["_emscripten_bind_AbstractFileSystemJS_WriteToFile_2"]=Module["asm"]["wW"]).apply(null,arguments)};var _emscripten_bind_AbstractFileSystemJS_ReadFile_1=Module["_emscripten_bind_AbstractFileSystemJS_ReadFile_1"]=function(){return(_emscripten_bind_AbstractFileSystemJS_ReadFile_1=Module["_emscripten_bind_AbstractFileSystemJS_ReadFile_1"]=Module["asm"]["xW"]).apply(null,arguments)};var _emscripten_bind_AbstractFileSystemJS_ReadDir_1=Module["_emscripten_bind_AbstractFileSystemJS_ReadDir_1"]=function(){return(_emscripten_bind_AbstractFileSystemJS_ReadDir_1=Module["_emscripten_bind_AbstractFileSystemJS_ReadDir_1"]=Module["asm"]["yW"]).apply(null,arguments)};var _emscripten_bind_AbstractFileSystemJS_FileExists_1=Module["_emscripten_bind_AbstractFileSystemJS_FileExists_1"]=function(){return(_emscripten_bind_AbstractFileSystemJS_FileExists_1=Module["_emscripten_bind_AbstractFileSystemJS_FileExists_1"]=Module["asm"]["zW"]).apply(null,arguments)};var _emscripten_bind_AbstractFileSystemJS___destroy___0=Module["_emscripten_bind_AbstractFileSystemJS___destroy___0"]=function(){return(_emscripten_bind_AbstractFileSystemJS___destroy___0=Module["_emscripten_bind_AbstractFileSystemJS___destroy___0"]=Module["asm"]["AW"]).apply(null,arguments)};var _emscripten_bind_ProjectResourcesAdder_STATIC_GetAllUseless_2=Module["_emscripten_bind_ProjectResourcesAdder_STATIC_GetAllUseless_2"]=function(){return(_emscripten_bind_ProjectResourcesAdder_STATIC_GetAllUseless_2=Module["_emscripten_bind_ProjectResourcesAdder_STATIC_GetAllUseless_2"]=Module["asm"]["BW"]).apply(null,arguments)};var _emscripten_bind_ProjectResourcesAdder_STATIC_RemoveAllUseless_2=Module["_emscripten_bind_ProjectResourcesAdder_STATIC_RemoveAllUseless_2"]=function(){return(_emscripten_bind_ProjectResourcesAdder_STATIC_RemoveAllUseless_2=Module["_emscripten_bind_ProjectResourcesAdder_STATIC_RemoveAllUseless_2"]=Module["asm"]["CW"]).apply(null,arguments)};var _emscripten_bind_ProjectResourcesAdder___destroy___0=Module["_emscripten_bind_ProjectResourcesAdder___destroy___0"]=function(){return(_emscripten_bind_ProjectResourcesAdder___destroy___0=Module["_emscripten_bind_ProjectResourcesAdder___destroy___0"]=Module["asm"]["DW"]).apply(null,arguments)};var _emscripten_bind_ArbitraryEventsWorker_Launch_1=Module["_emscripten_bind_ArbitraryEventsWorker_Launch_1"]=function(){return(_emscripten_bind_ArbitraryEventsWorker_Launch_1=Module["_emscripten_bind_ArbitraryEventsWorker_Launch_1"]=Module["asm"]["EW"]).apply(null,arguments)};var _emscripten_bind_ArbitraryEventsWorker___destroy___0=Module["_emscripten_bind_ArbitraryEventsWorker___destroy___0"]=function(){return(_emscripten_bind_ArbitraryEventsWorker___destroy___0=Module["_emscripten_bind_ArbitraryEventsWorker___destroy___0"]=Module["asm"]["FW"]).apply(null,arguments)};var _emscripten_bind_ArbitraryObjectsWorker_Launch_1=Module["_emscripten_bind_ArbitraryObjectsWorker_Launch_1"]=function(){return(_emscripten_bind_ArbitraryObjectsWorker_Launch_1=Module["_emscripten_bind_ArbitraryObjectsWorker_Launch_1"]=Module["asm"]["GW"]).apply(null,arguments)};var _emscripten_bind_ArbitraryObjectsWorker___destroy___0=Module["_emscripten_bind_ArbitraryObjectsWorker___destroy___0"]=function(){return(_emscripten_bind_ArbitraryObjectsWorker___destroy___0=Module["_emscripten_bind_ArbitraryObjectsWorker___destroy___0"]=Module["asm"]["HW"]).apply(null,arguments)};var _emscripten_bind_EventsParametersLister_EventsParametersLister_1=Module["_emscripten_bind_EventsParametersLister_EventsParametersLister_1"]=function(){return(_emscripten_bind_EventsParametersLister_EventsParametersLister_1=Module["_emscripten_bind_EventsParametersLister_EventsParametersLister_1"]=Module["asm"]["IW"]).apply(null,arguments)};var _emscripten_bind_EventsParametersLister_GetParametersAndTypes_0=Module["_emscripten_bind_EventsParametersLister_GetParametersAndTypes_0"]=function(){return(_emscripten_bind_EventsParametersLister_GetParametersAndTypes_0=Module["_emscripten_bind_EventsParametersLister_GetParametersAndTypes_0"]=Module["asm"]["JW"]).apply(null,arguments)};var _emscripten_bind_EventsParametersLister_Launch_1=Module["_emscripten_bind_EventsParametersLister_Launch_1"]=function(){return(_emscripten_bind_EventsParametersLister_Launch_1=Module["_emscripten_bind_EventsParametersLister_Launch_1"]=Module["asm"]["KW"]).apply(null,arguments)};var _emscripten_bind_EventsParametersLister___destroy___0=Module["_emscripten_bind_EventsParametersLister___destroy___0"]=function(){return(_emscripten_bind_EventsParametersLister___destroy___0=Module["_emscripten_bind_EventsParametersLister___destroy___0"]=Module["asm"]["LW"]).apply(null,arguments)};var _emscripten_bind_EventsPositionFinder_EventsPositionFinder_0=Module["_emscripten_bind_EventsPositionFinder_EventsPositionFinder_0"]=function(){return(_emscripten_bind_EventsPositionFinder_EventsPositionFinder_0=Module["_emscripten_bind_EventsPositionFinder_EventsPositionFinder_0"]=Module["asm"]["MW"]).apply(null,arguments)};var _emscripten_bind_EventsPositionFinder_GetPositions_0=Module["_emscripten_bind_EventsPositionFinder_GetPositions_0"]=function(){return(_emscripten_bind_EventsPositionFinder_GetPositions_0=Module["_emscripten_bind_EventsPositionFinder_GetPositions_0"]=Module["asm"]["NW"]).apply(null,arguments)};var _emscripten_bind_EventsPositionFinder_AddEventToSearch_1=Module["_emscripten_bind_EventsPositionFinder_AddEventToSearch_1"]=function(){return(_emscripten_bind_EventsPositionFinder_AddEventToSearch_1=Module["_emscripten_bind_EventsPositionFinder_AddEventToSearch_1"]=Module["asm"]["OW"]).apply(null,arguments)};var _emscripten_bind_EventsPositionFinder_Launch_1=Module["_emscripten_bind_EventsPositionFinder_Launch_1"]=function(){return(_emscripten_bind_EventsPositionFinder_Launch_1=Module["_emscripten_bind_EventsPositionFinder_Launch_1"]=Module["asm"]["PW"]).apply(null,arguments)};var _emscripten_bind_EventsPositionFinder___destroy___0=Module["_emscripten_bind_EventsPositionFinder___destroy___0"]=function(){return(_emscripten_bind_EventsPositionFinder___destroy___0=Module["_emscripten_bind_EventsPositionFinder___destroy___0"]=Module["asm"]["QW"]).apply(null,arguments)};var _emscripten_bind_EventsTypesLister_EventsTypesLister_1=Module["_emscripten_bind_EventsTypesLister_EventsTypesLister_1"]=function(){return(_emscripten_bind_EventsTypesLister_EventsTypesLister_1=Module["_emscripten_bind_EventsTypesLister_EventsTypesLister_1"]=Module["asm"]["RW"]).apply(null,arguments)};var _emscripten_bind_EventsTypesLister_GetAllEventsTypes_0=Module["_emscripten_bind_EventsTypesLister_GetAllEventsTypes_0"]=function(){return(_emscripten_bind_EventsTypesLister_GetAllEventsTypes_0=Module["_emscripten_bind_EventsTypesLister_GetAllEventsTypes_0"]=Module["asm"]["SW"]).apply(null,arguments)};var _emscripten_bind_EventsTypesLister_GetAllConditionsTypes_0=Module["_emscripten_bind_EventsTypesLister_GetAllConditionsTypes_0"]=function(){return(_emscripten_bind_EventsTypesLister_GetAllConditionsTypes_0=Module["_emscripten_bind_EventsTypesLister_GetAllConditionsTypes_0"]=Module["asm"]["TW"]).apply(null,arguments)};var _emscripten_bind_EventsTypesLister_GetAllActionsTypes_0=Module["_emscripten_bind_EventsTypesLister_GetAllActionsTypes_0"]=function(){return(_emscripten_bind_EventsTypesLister_GetAllActionsTypes_0=Module["_emscripten_bind_EventsTypesLister_GetAllActionsTypes_0"]=Module["asm"]["UW"]).apply(null,arguments)};var _emscripten_bind_EventsTypesLister_Launch_1=Module["_emscripten_bind_EventsTypesLister_Launch_1"]=function(){return(_emscripten_bind_EventsTypesLister_Launch_1=Module["_emscripten_bind_EventsTypesLister_Launch_1"]=Module["asm"]["VW"]).apply(null,arguments)};var _emscripten_bind_EventsTypesLister___destroy___0=Module["_emscripten_bind_EventsTypesLister___destroy___0"]=function(){return(_emscripten_bind_EventsTypesLister___destroy___0=Module["_emscripten_bind_EventsTypesLister___destroy___0"]=Module["asm"]["WW"]).apply(null,arguments)};var _emscripten_bind_InstructionsTypeRenamer_InstructionsTypeRenamer_3=Module["_emscripten_bind_InstructionsTypeRenamer_InstructionsTypeRenamer_3"]=function(){return(_emscripten_bind_InstructionsTypeRenamer_InstructionsTypeRenamer_3=Module["_emscripten_bind_InstructionsTypeRenamer_InstructionsTypeRenamer_3"]=Module["asm"]["XW"]).apply(null,arguments)};var _emscripten_bind_InstructionsTypeRenamer_Launch_1=Module["_emscripten_bind_InstructionsTypeRenamer_Launch_1"]=function(){return(_emscripten_bind_InstructionsTypeRenamer_Launch_1=Module["_emscripten_bind_InstructionsTypeRenamer_Launch_1"]=Module["asm"]["YW"]).apply(null,arguments)};var _emscripten_bind_InstructionsTypeRenamer___destroy___0=Module["_emscripten_bind_InstructionsTypeRenamer___destroy___0"]=function(){return(_emscripten_bind_InstructionsTypeRenamer___destroy___0=Module["_emscripten_bind_InstructionsTypeRenamer___destroy___0"]=Module["asm"]["ZW"]).apply(null,arguments)};var _emscripten_bind_EventsContext_GetReferencedObjectOrGroupNames_0=Module["_emscripten_bind_EventsContext_GetReferencedObjectOrGroupNames_0"]=function(){return(_emscripten_bind_EventsContext_GetReferencedObjectOrGroupNames_0=Module["_emscripten_bind_EventsContext_GetReferencedObjectOrGroupNames_0"]=Module["asm"]["_W"]).apply(null,arguments)};var _emscripten_bind_EventsContext_GetObjectNames_0=Module["_emscripten_bind_EventsContext_GetObjectNames_0"]=function(){return(_emscripten_bind_EventsContext_GetObjectNames_0=Module["_emscripten_bind_EventsContext_GetObjectNames_0"]=Module["asm"]["$W"]).apply(null,arguments)};var _emscripten_bind_EventsContext_GetBehaviorNamesOfObjectOrGroup_1=Module["_emscripten_bind_EventsContext_GetBehaviorNamesOfObjectOrGroup_1"]=function(){return(_emscripten_bind_EventsContext_GetBehaviorNamesOfObjectOrGroup_1=Module["_emscripten_bind_EventsContext_GetBehaviorNamesOfObjectOrGroup_1"]=Module["asm"]["aX"]).apply(null,arguments)};var _emscripten_bind_EventsContext___destroy___0=Module["_emscripten_bind_EventsContext___destroy___0"]=function(){return(_emscripten_bind_EventsContext___destroy___0=Module["_emscripten_bind_EventsContext___destroy___0"]=Module["asm"]["bX"]).apply(null,arguments)};var _emscripten_bind_EventsContextAnalyzer_EventsContextAnalyzer_1=Module["_emscripten_bind_EventsContextAnalyzer_EventsContextAnalyzer_1"]=function(){return(_emscripten_bind_EventsContextAnalyzer_EventsContextAnalyzer_1=Module["_emscripten_bind_EventsContextAnalyzer_EventsContextAnalyzer_1"]=Module["asm"]["cX"]).apply(null,arguments)};var _emscripten_bind_EventsContextAnalyzer_GetEventsContext_0=Module["_emscripten_bind_EventsContextAnalyzer_GetEventsContext_0"]=function(){return(_emscripten_bind_EventsContextAnalyzer_GetEventsContext_0=Module["_emscripten_bind_EventsContextAnalyzer_GetEventsContext_0"]=Module["asm"]["dX"]).apply(null,arguments)};var _emscripten_bind_EventsContextAnalyzer_Launch_2=Module["_emscripten_bind_EventsContextAnalyzer_Launch_2"]=function(){return(_emscripten_bind_EventsContextAnalyzer_Launch_2=Module["_emscripten_bind_EventsContextAnalyzer_Launch_2"]=Module["asm"]["eX"]).apply(null,arguments)};var _emscripten_bind_EventsContextAnalyzer___destroy___0=Module["_emscripten_bind_EventsContextAnalyzer___destroy___0"]=function(){return(_emscripten_bind_EventsContextAnalyzer___destroy___0=Module["_emscripten_bind_EventsContextAnalyzer___destroy___0"]=Module["asm"]["fX"]).apply(null,arguments)};var _emscripten_bind_ReadOnlyArbitraryEventsWorkerWithContextJS_ReadOnlyArbitraryEventsWorkerWithContextJS_0=Module["_emscripten_bind_ReadOnlyArbitraryEventsWorkerWithContextJS_ReadOnlyArbitraryEventsWorkerWithContextJS_0"]=function(){return(_emscripten_bind_ReadOnlyArbitraryEventsWorkerWithContextJS_ReadOnlyArbitraryEventsWorkerWithContextJS_0=Module["_emscripten_bind_ReadOnlyArbitraryEventsWorkerWithContextJS_ReadOnlyArbitraryEventsWorkerWithContextJS_0"]=Module["asm"]["gX"]).apply(null,arguments)};var _emscripten_bind_ReadOnlyArbitraryEventsWorkerWithContextJS_DoOnLaunch_1=Module["_emscripten_bind_ReadOnlyArbitraryEventsWorkerWithContextJS_DoOnLaunch_1"]=function(){return(_emscripten_bind_ReadOnlyArbitraryEventsWorkerWithContextJS_DoOnLaunch_1=Module["_emscripten_bind_ReadOnlyArbitraryEventsWorkerWithContextJS_DoOnLaunch_1"]=Module["asm"]["hX"]).apply(null,arguments)};var _emscripten_bind_ReadOnlyArbitraryEventsWorkerWithContextJS_SetSkipDisabledEvents_1=Module["_emscripten_bind_ReadOnlyArbitraryEventsWorkerWithContextJS_SetSkipDisabledEvents_1"]=function(){return(_emscripten_bind_ReadOnlyArbitraryEventsWorkerWithContextJS_SetSkipDisabledEvents_1=Module["_emscripten_bind_ReadOnlyArbitraryEventsWorkerWithContextJS_SetSkipDisabledEvents_1"]=Module["asm"]["iX"]).apply(null,arguments)};var _emscripten_bind_ReadOnlyArbitraryEventsWorkerWithContextJS_Launch_2=Module["_emscripten_bind_ReadOnlyArbitraryEventsWorkerWithContextJS_Launch_2"]=function(){return(_emscripten_bind_ReadOnlyArbitraryEventsWorkerWithContextJS_Launch_2=Module["_emscripten_bind_ReadOnlyArbitraryEventsWorkerWithContextJS_Launch_2"]=Module["asm"]["jX"]).apply(null,arguments)};var _emscripten_bind_ReadOnlyArbitraryEventsWorkerWithContextJS___destroy___0=Module["_emscripten_bind_ReadOnlyArbitraryEventsWorkerWithContextJS___destroy___0"]=function(){return(_emscripten_bind_ReadOnlyArbitraryEventsWorkerWithContextJS___destroy___0=Module["_emscripten_bind_ReadOnlyArbitraryEventsWorkerWithContextJS___destroy___0"]=Module["asm"]["kX"]).apply(null,arguments)};var _emscripten_bind_ArbitraryResourceWorkerJS_ArbitraryResourceWorkerJS_1=Module["_emscripten_bind_ArbitraryResourceWorkerJS_ArbitraryResourceWorkerJS_1"]=function(){return(_emscripten_bind_ArbitraryResourceWorkerJS_ArbitraryResourceWorkerJS_1=Module["_emscripten_bind_ArbitraryResourceWorkerJS_ArbitraryResourceWorkerJS_1"]=Module["asm"]["lX"]).apply(null,arguments)};var _emscripten_bind_ArbitraryResourceWorkerJS___destroy___0=Module["_emscripten_bind_ArbitraryResourceWorkerJS___destroy___0"]=function(){return(_emscripten_bind_ArbitraryResourceWorkerJS___destroy___0=Module["_emscripten_bind_ArbitraryResourceWorkerJS___destroy___0"]=Module["asm"]["mX"]).apply(null,arguments)};var _emscripten_bind_ResourcesMergingHelper_ResourcesMergingHelper_2=Module["_emscripten_bind_ResourcesMergingHelper_ResourcesMergingHelper_2"]=function(){return(_emscripten_bind_ResourcesMergingHelper_ResourcesMergingHelper_2=Module["_emscripten_bind_ResourcesMergingHelper_ResourcesMergingHelper_2"]=Module["asm"]["nX"]).apply(null,arguments)};var _emscripten_bind_ResourcesMergingHelper_SetBaseDirectory_1=Module["_emscripten_bind_ResourcesMergingHelper_SetBaseDirectory_1"]=function(){return(_emscripten_bind_ResourcesMergingHelper_SetBaseDirectory_1=Module["_emscripten_bind_ResourcesMergingHelper_SetBaseDirectory_1"]=Module["asm"]["oX"]).apply(null,arguments)};var _emscripten_bind_ResourcesMergingHelper_GetAllResourcesOldAndNewFilename_0=Module["_emscripten_bind_ResourcesMergingHelper_GetAllResourcesOldAndNewFilename_0"]=function(){return(_emscripten_bind_ResourcesMergingHelper_GetAllResourcesOldAndNewFilename_0=Module["_emscripten_bind_ResourcesMergingHelper_GetAllResourcesOldAndNewFilename_0"]=Module["asm"]["pX"]).apply(null,arguments)};var _emscripten_bind_ResourcesMergingHelper___destroy___0=Module["_emscripten_bind_ResourcesMergingHelper___destroy___0"]=function(){return(_emscripten_bind_ResourcesMergingHelper___destroy___0=Module["_emscripten_bind_ResourcesMergingHelper___destroy___0"]=Module["asm"]["qX"]).apply(null,arguments)};var _emscripten_bind_ResourcesRenamer_ResourcesRenamer_2=Module["_emscripten_bind_ResourcesRenamer_ResourcesRenamer_2"]=function(){return(_emscripten_bind_ResourcesRenamer_ResourcesRenamer_2=Module["_emscripten_bind_ResourcesRenamer_ResourcesRenamer_2"]=Module["asm"]["rX"]).apply(null,arguments)};var _emscripten_bind_ResourcesRenamer___destroy___0=Module["_emscripten_bind_ResourcesRenamer___destroy___0"]=function(){return(_emscripten_bind_ResourcesRenamer___destroy___0=Module["_emscripten_bind_ResourcesRenamer___destroy___0"]=Module["asm"]["sX"]).apply(null,arguments)};var _emscripten_bind_ProjectResourcesCopier_STATIC_CopyAllResourcesTo_6=Module["_emscripten_bind_ProjectResourcesCopier_STATIC_CopyAllResourcesTo_6"]=function(){return(_emscripten_bind_ProjectResourcesCopier_STATIC_CopyAllResourcesTo_6=Module["_emscripten_bind_ProjectResourcesCopier_STATIC_CopyAllResourcesTo_6"]=Module["asm"]["tX"]).apply(null,arguments)};var _emscripten_bind_ProjectResourcesCopier___destroy___0=Module["_emscripten_bind_ProjectResourcesCopier___destroy___0"]=function(){return(_emscripten_bind_ProjectResourcesCopier___destroy___0=Module["_emscripten_bind_ProjectResourcesCopier___destroy___0"]=Module["asm"]["uX"]).apply(null,arguments)};var _emscripten_bind_ObjectsUsingResourceCollector_ObjectsUsingResourceCollector_2=Module["_emscripten_bind_ObjectsUsingResourceCollector_ObjectsUsingResourceCollector_2"]=function(){return(_emscripten_bind_ObjectsUsingResourceCollector_ObjectsUsingResourceCollector_2=Module["_emscripten_bind_ObjectsUsingResourceCollector_ObjectsUsingResourceCollector_2"]=Module["asm"]["vX"]).apply(null,arguments)};var _emscripten_bind_ObjectsUsingResourceCollector_GetObjectNames_0=Module["_emscripten_bind_ObjectsUsingResourceCollector_GetObjectNames_0"]=function(){return(_emscripten_bind_ObjectsUsingResourceCollector_GetObjectNames_0=Module["_emscripten_bind_ObjectsUsingResourceCollector_GetObjectNames_0"]=Module["asm"]["wX"]).apply(null,arguments)};var _emscripten_bind_ObjectsUsingResourceCollector_Launch_1=Module["_emscripten_bind_ObjectsUsingResourceCollector_Launch_1"]=function(){return(_emscripten_bind_ObjectsUsingResourceCollector_Launch_1=Module["_emscripten_bind_ObjectsUsingResourceCollector_Launch_1"]=Module["asm"]["xX"]).apply(null,arguments)};var _emscripten_bind_ObjectsUsingResourceCollector___destroy___0=Module["_emscripten_bind_ObjectsUsingResourceCollector___destroy___0"]=function(){return(_emscripten_bind_ObjectsUsingResourceCollector___destroy___0=Module["_emscripten_bind_ObjectsUsingResourceCollector___destroy___0"]=Module["asm"]["yX"]).apply(null,arguments)};var _emscripten_bind_ResourcesInUseHelper_ResourcesInUseHelper_1=Module["_emscripten_bind_ResourcesInUseHelper_ResourcesInUseHelper_1"]=function(){return(_emscripten_bind_ResourcesInUseHelper_ResourcesInUseHelper_1=Module["_emscripten_bind_ResourcesInUseHelper_ResourcesInUseHelper_1"]=Module["asm"]["zX"]).apply(null,arguments)};var _emscripten_bind_ResourcesInUseHelper_GetAllResources_0=Module["_emscripten_bind_ResourcesInUseHelper_GetAllResources_0"]=function(){return(_emscripten_bind_ResourcesInUseHelper_GetAllResources_0=Module["_emscripten_bind_ResourcesInUseHelper_GetAllResources_0"]=Module["asm"]["AX"]).apply(null,arguments)};var _emscripten_bind_ResourcesInUseHelper_GetAllImages_0=Module["_emscripten_bind_ResourcesInUseHelper_GetAllImages_0"]=function(){return(_emscripten_bind_ResourcesInUseHelper_GetAllImages_0=Module["_emscripten_bind_ResourcesInUseHelper_GetAllImages_0"]=Module["asm"]["BX"]).apply(null,arguments)};var _emscripten_bind_ResourcesInUseHelper_GetAllAudios_0=Module["_emscripten_bind_ResourcesInUseHelper_GetAllAudios_0"]=function(){return(_emscripten_bind_ResourcesInUseHelper_GetAllAudios_0=Module["_emscripten_bind_ResourcesInUseHelper_GetAllAudios_0"]=Module["asm"]["CX"]).apply(null,arguments)};var _emscripten_bind_ResourcesInUseHelper_GetAllFonts_0=Module["_emscripten_bind_ResourcesInUseHelper_GetAllFonts_0"]=function(){return(_emscripten_bind_ResourcesInUseHelper_GetAllFonts_0=Module["_emscripten_bind_ResourcesInUseHelper_GetAllFonts_0"]=Module["asm"]["DX"]).apply(null,arguments)};var _emscripten_bind_ResourcesInUseHelper_GetAllBitmapFonts_0=Module["_emscripten_bind_ResourcesInUseHelper_GetAllBitmapFonts_0"]=function(){return(_emscripten_bind_ResourcesInUseHelper_GetAllBitmapFonts_0=Module["_emscripten_bind_ResourcesInUseHelper_GetAllBitmapFonts_0"]=Module["asm"]["EX"]).apply(null,arguments)};var _emscripten_bind_ResourcesInUseHelper_GetAll_1=Module["_emscripten_bind_ResourcesInUseHelper_GetAll_1"]=function(){return(_emscripten_bind_ResourcesInUseHelper_GetAll_1=Module["_emscripten_bind_ResourcesInUseHelper_GetAll_1"]=Module["asm"]["FX"]).apply(null,arguments)};var _emscripten_bind_ResourcesInUseHelper___destroy___0=Module["_emscripten_bind_ResourcesInUseHelper___destroy___0"]=function(){return(_emscripten_bind_ResourcesInUseHelper___destroy___0=Module["_emscripten_bind_ResourcesInUseHelper___destroy___0"]=Module["asm"]["GX"]).apply(null,arguments)};var _emscripten_bind_EditorSettings_EditorSettings_0=Module["_emscripten_bind_EditorSettings_EditorSettings_0"]=function(){return(_emscripten_bind_EditorSettings_EditorSettings_0=Module["_emscripten_bind_EditorSettings_EditorSettings_0"]=Module["asm"]["HX"]).apply(null,arguments)};var _emscripten_bind_EditorSettings_SerializeTo_1=Module["_emscripten_bind_EditorSettings_SerializeTo_1"]=function(){return(_emscripten_bind_EditorSettings_SerializeTo_1=Module["_emscripten_bind_EditorSettings_SerializeTo_1"]=Module["asm"]["IX"]).apply(null,arguments)};var _emscripten_bind_EditorSettings_UnserializeFrom_1=Module["_emscripten_bind_EditorSettings_UnserializeFrom_1"]=function(){return(_emscripten_bind_EditorSettings_UnserializeFrom_1=Module["_emscripten_bind_EditorSettings_UnserializeFrom_1"]=Module["asm"]["JX"]).apply(null,arguments)};var _emscripten_bind_EditorSettings___destroy___0=Module["_emscripten_bind_EditorSettings___destroy___0"]=function(){return(_emscripten_bind_EditorSettings___destroy___0=Module["_emscripten_bind_EditorSettings___destroy___0"]=Module["asm"]["KX"]).apply(null,arguments)};var _emscripten_bind_Point_Point_1=Module["_emscripten_bind_Point_Point_1"]=function(){return(_emscripten_bind_Point_Point_1=Module["_emscripten_bind_Point_Point_1"]=Module["asm"]["LX"]).apply(null,arguments)};var _emscripten_bind_Point_SetName_1=Module["_emscripten_bind_Point_SetName_1"]=function(){return(_emscripten_bind_Point_SetName_1=Module["_emscripten_bind_Point_SetName_1"]=Module["asm"]["MX"]).apply(null,arguments)};var _emscripten_bind_Point_GetName_0=Module["_emscripten_bind_Point_GetName_0"]=function(){return(_emscripten_bind_Point_GetName_0=Module["_emscripten_bind_Point_GetName_0"]=Module["asm"]["NX"]).apply(null,arguments)};var _emscripten_bind_Point_SetXY_2=Module["_emscripten_bind_Point_SetXY_2"]=function(){return(_emscripten_bind_Point_SetXY_2=Module["_emscripten_bind_Point_SetXY_2"]=Module["asm"]["OX"]).apply(null,arguments)};var _emscripten_bind_Point_GetX_0=Module["_emscripten_bind_Point_GetX_0"]=function(){return(_emscripten_bind_Point_GetX_0=Module["_emscripten_bind_Point_GetX_0"]=Module["asm"]["PX"]).apply(null,arguments)};var _emscripten_bind_Point_SetX_1=Module["_emscripten_bind_Point_SetX_1"]=function(){return(_emscripten_bind_Point_SetX_1=Module["_emscripten_bind_Point_SetX_1"]=Module["asm"]["QX"]).apply(null,arguments)};var _emscripten_bind_Point_GetY_0=Module["_emscripten_bind_Point_GetY_0"]=function(){return(_emscripten_bind_Point_GetY_0=Module["_emscripten_bind_Point_GetY_0"]=Module["asm"]["RX"]).apply(null,arguments)};var _emscripten_bind_Point_SetY_1=Module["_emscripten_bind_Point_SetY_1"]=function(){return(_emscripten_bind_Point_SetY_1=Module["_emscripten_bind_Point_SetY_1"]=Module["asm"]["SX"]).apply(null,arguments)};var _emscripten_bind_Point___destroy___0=Module["_emscripten_bind_Point___destroy___0"]=function(){return(_emscripten_bind_Point___destroy___0=Module["_emscripten_bind_Point___destroy___0"]=Module["asm"]["TX"]).apply(null,arguments)};var _emscripten_bind_VectorPoint_VectorPoint_0=Module["_emscripten_bind_VectorPoint_VectorPoint_0"]=function(){return(_emscripten_bind_VectorPoint_VectorPoint_0=Module["_emscripten_bind_VectorPoint_VectorPoint_0"]=Module["asm"]["UX"]).apply(null,arguments)};var _emscripten_bind_VectorPoint_push_back_1=Module["_emscripten_bind_VectorPoint_push_back_1"]=function(){return(_emscripten_bind_VectorPoint_push_back_1=Module["_emscripten_bind_VectorPoint_push_back_1"]=Module["asm"]["VX"]).apply(null,arguments)};var _emscripten_bind_VectorPoint_size_0=Module["_emscripten_bind_VectorPoint_size_0"]=function(){return(_emscripten_bind_VectorPoint_size_0=Module["_emscripten_bind_VectorPoint_size_0"]=Module["asm"]["WX"]).apply(null,arguments)};var _emscripten_bind_VectorPoint_at_1=Module["_emscripten_bind_VectorPoint_at_1"]=function(){return(_emscripten_bind_VectorPoint_at_1=Module["_emscripten_bind_VectorPoint_at_1"]=Module["asm"]["XX"]).apply(null,arguments)};var _emscripten_bind_VectorPoint_WRAPPED_set_2=Module["_emscripten_bind_VectorPoint_WRAPPED_set_2"]=function(){return(_emscripten_bind_VectorPoint_WRAPPED_set_2=Module["_emscripten_bind_VectorPoint_WRAPPED_set_2"]=Module["asm"]["YX"]).apply(null,arguments)};var _emscripten_bind_VectorPoint_clear_0=Module["_emscripten_bind_VectorPoint_clear_0"]=function(){return(_emscripten_bind_VectorPoint_clear_0=Module["_emscripten_bind_VectorPoint_clear_0"]=Module["asm"]["ZX"]).apply(null,arguments)};var _emscripten_bind_VectorPoint___destroy___0=Module["_emscripten_bind_VectorPoint___destroy___0"]=function(){return(_emscripten_bind_VectorPoint___destroy___0=Module["_emscripten_bind_VectorPoint___destroy___0"]=Module["asm"]["_X"]).apply(null,arguments)};var _emscripten_bind_Polygon2d_Polygon2d_0=Module["_emscripten_bind_Polygon2d_Polygon2d_0"]=function(){return(_emscripten_bind_Polygon2d_Polygon2d_0=Module["_emscripten_bind_Polygon2d_Polygon2d_0"]=Module["asm"]["$X"]).apply(null,arguments)};var _emscripten_bind_Polygon2d_GetVertices_0=Module["_emscripten_bind_Polygon2d_GetVertices_0"]=function(){return(_emscripten_bind_Polygon2d_GetVertices_0=Module["_emscripten_bind_Polygon2d_GetVertices_0"]=Module["asm"]["aY"]).apply(null,arguments)};var _emscripten_bind_Polygon2d_Move_2=Module["_emscripten_bind_Polygon2d_Move_2"]=function(){return(_emscripten_bind_Polygon2d_Move_2=Module["_emscripten_bind_Polygon2d_Move_2"]=Module["asm"]["bY"]).apply(null,arguments)};var _emscripten_bind_Polygon2d_Rotate_1=Module["_emscripten_bind_Polygon2d_Rotate_1"]=function(){return(_emscripten_bind_Polygon2d_Rotate_1=Module["_emscripten_bind_Polygon2d_Rotate_1"]=Module["asm"]["cY"]).apply(null,arguments)};var _emscripten_bind_Polygon2d_IsConvex_0=Module["_emscripten_bind_Polygon2d_IsConvex_0"]=function(){return(_emscripten_bind_Polygon2d_IsConvex_0=Module["_emscripten_bind_Polygon2d_IsConvex_0"]=Module["asm"]["dY"]).apply(null,arguments)};var _emscripten_bind_Polygon2d_ComputeCenter_0=Module["_emscripten_bind_Polygon2d_ComputeCenter_0"]=function(){return(_emscripten_bind_Polygon2d_ComputeCenter_0=Module["_emscripten_bind_Polygon2d_ComputeCenter_0"]=Module["asm"]["eY"]).apply(null,arguments)};var _emscripten_bind_Polygon2d_STATIC_CreateRectangle_2=Module["_emscripten_bind_Polygon2d_STATIC_CreateRectangle_2"]=function(){return(_emscripten_bind_Polygon2d_STATIC_CreateRectangle_2=Module["_emscripten_bind_Polygon2d_STATIC_CreateRectangle_2"]=Module["asm"]["fY"]).apply(null,arguments)};var _emscripten_bind_Polygon2d___destroy___0=Module["_emscripten_bind_Polygon2d___destroy___0"]=function(){return(_emscripten_bind_Polygon2d___destroy___0=Module["_emscripten_bind_Polygon2d___destroy___0"]=Module["asm"]["gY"]).apply(null,arguments)};var _emscripten_bind_VectorPolygon2d_VectorPolygon2d_0=Module["_emscripten_bind_VectorPolygon2d_VectorPolygon2d_0"]=function(){return(_emscripten_bind_VectorPolygon2d_VectorPolygon2d_0=Module["_emscripten_bind_VectorPolygon2d_VectorPolygon2d_0"]=Module["asm"]["hY"]).apply(null,arguments)};var _emscripten_bind_VectorPolygon2d_push_back_1=Module["_emscripten_bind_VectorPolygon2d_push_back_1"]=function(){return(_emscripten_bind_VectorPolygon2d_push_back_1=Module["_emscripten_bind_VectorPolygon2d_push_back_1"]=Module["asm"]["iY"]).apply(null,arguments)};var _emscripten_bind_VectorPolygon2d_size_0=Module["_emscripten_bind_VectorPolygon2d_size_0"]=function(){return(_emscripten_bind_VectorPolygon2d_size_0=Module["_emscripten_bind_VectorPolygon2d_size_0"]=Module["asm"]["jY"]).apply(null,arguments)};var _emscripten_bind_VectorPolygon2d_at_1=Module["_emscripten_bind_VectorPolygon2d_at_1"]=function(){return(_emscripten_bind_VectorPolygon2d_at_1=Module["_emscripten_bind_VectorPolygon2d_at_1"]=Module["asm"]["kY"]).apply(null,arguments)};var _emscripten_bind_VectorPolygon2d_WRAPPED_set_2=Module["_emscripten_bind_VectorPolygon2d_WRAPPED_set_2"]=function(){return(_emscripten_bind_VectorPolygon2d_WRAPPED_set_2=Module["_emscripten_bind_VectorPolygon2d_WRAPPED_set_2"]=Module["asm"]["lY"]).apply(null,arguments)};var _emscripten_bind_VectorPolygon2d_FREE_removeFromVectorPolygon2d_1=Module["_emscripten_bind_VectorPolygon2d_FREE_removeFromVectorPolygon2d_1"]=function(){return(_emscripten_bind_VectorPolygon2d_FREE_removeFromVectorPolygon2d_1=Module["_emscripten_bind_VectorPolygon2d_FREE_removeFromVectorPolygon2d_1"]=Module["asm"]["mY"]).apply(null,arguments)};var _emscripten_bind_VectorPolygon2d_clear_0=Module["_emscripten_bind_VectorPolygon2d_clear_0"]=function(){return(_emscripten_bind_VectorPolygon2d_clear_0=Module["_emscripten_bind_VectorPolygon2d_clear_0"]=Module["asm"]["nY"]).apply(null,arguments)};var _emscripten_bind_VectorPolygon2d___destroy___0=Module["_emscripten_bind_VectorPolygon2d___destroy___0"]=function(){return(_emscripten_bind_VectorPolygon2d___destroy___0=Module["_emscripten_bind_VectorPolygon2d___destroy___0"]=Module["asm"]["oY"]).apply(null,arguments)};var _emscripten_bind_Sprite_Sprite_0=Module["_emscripten_bind_Sprite_Sprite_0"]=function(){return(_emscripten_bind_Sprite_Sprite_0=Module["_emscripten_bind_Sprite_Sprite_0"]=Module["asm"]["pY"]).apply(null,arguments)};var _emscripten_bind_Sprite_SetImageName_1=Module["_emscripten_bind_Sprite_SetImageName_1"]=function(){return(_emscripten_bind_Sprite_SetImageName_1=Module["_emscripten_bind_Sprite_SetImageName_1"]=Module["asm"]["qY"]).apply(null,arguments)};var _emscripten_bind_Sprite_GetImageName_0=Module["_emscripten_bind_Sprite_GetImageName_0"]=function(){return(_emscripten_bind_Sprite_GetImageName_0=Module["_emscripten_bind_Sprite_GetImageName_0"]=Module["asm"]["rY"]).apply(null,arguments)};var _emscripten_bind_Sprite_GetOrigin_0=Module["_emscripten_bind_Sprite_GetOrigin_0"]=function(){return(_emscripten_bind_Sprite_GetOrigin_0=Module["_emscripten_bind_Sprite_GetOrigin_0"]=Module["asm"]["sY"]).apply(null,arguments)};var _emscripten_bind_Sprite_GetCenter_0=Module["_emscripten_bind_Sprite_GetCenter_0"]=function(){return(_emscripten_bind_Sprite_GetCenter_0=Module["_emscripten_bind_Sprite_GetCenter_0"]=Module["asm"]["tY"]).apply(null,arguments)};var _emscripten_bind_Sprite_IsDefaultCenterPoint_0=Module["_emscripten_bind_Sprite_IsDefaultCenterPoint_0"]=function(){return(_emscripten_bind_Sprite_IsDefaultCenterPoint_0=Module["_emscripten_bind_Sprite_IsDefaultCenterPoint_0"]=Module["asm"]["uY"]).apply(null,arguments)};var _emscripten_bind_Sprite_SetDefaultCenterPoint_1=Module["_emscripten_bind_Sprite_SetDefaultCenterPoint_1"]=function(){return(_emscripten_bind_Sprite_SetDefaultCenterPoint_1=Module["_emscripten_bind_Sprite_SetDefaultCenterPoint_1"]=Module["asm"]["vY"]).apply(null,arguments)};var _emscripten_bind_Sprite_GetAllNonDefaultPoints_0=Module["_emscripten_bind_Sprite_GetAllNonDefaultPoints_0"]=function(){return(_emscripten_bind_Sprite_GetAllNonDefaultPoints_0=Module["_emscripten_bind_Sprite_GetAllNonDefaultPoints_0"]=Module["asm"]["wY"]).apply(null,arguments)};var _emscripten_bind_Sprite_AddPoint_1=Module["_emscripten_bind_Sprite_AddPoint_1"]=function(){return(_emscripten_bind_Sprite_AddPoint_1=Module["_emscripten_bind_Sprite_AddPoint_1"]=Module["asm"]["xY"]).apply(null,arguments)};var _emscripten_bind_Sprite_DelPoint_1=Module["_emscripten_bind_Sprite_DelPoint_1"]=function(){return(_emscripten_bind_Sprite_DelPoint_1=Module["_emscripten_bind_Sprite_DelPoint_1"]=Module["asm"]["yY"]).apply(null,arguments)};var _emscripten_bind_Sprite_GetPoint_1=Module["_emscripten_bind_Sprite_GetPoint_1"]=function(){return(_emscripten_bind_Sprite_GetPoint_1=Module["_emscripten_bind_Sprite_GetPoint_1"]=Module["asm"]["zY"]).apply(null,arguments)};var _emscripten_bind_Sprite_HasPoint_1=Module["_emscripten_bind_Sprite_HasPoint_1"]=function(){return(_emscripten_bind_Sprite_HasPoint_1=Module["_emscripten_bind_Sprite_HasPoint_1"]=Module["asm"]["AY"]).apply(null,arguments)};var _emscripten_bind_Sprite_IsFullImageCollisionMask_0=Module["_emscripten_bind_Sprite_IsFullImageCollisionMask_0"]=function(){return(_emscripten_bind_Sprite_IsFullImageCollisionMask_0=Module["_emscripten_bind_Sprite_IsFullImageCollisionMask_0"]=Module["asm"]["BY"]).apply(null,arguments)};var _emscripten_bind_Sprite_SetFullImageCollisionMask_1=Module["_emscripten_bind_Sprite_SetFullImageCollisionMask_1"]=function(){return(_emscripten_bind_Sprite_SetFullImageCollisionMask_1=Module["_emscripten_bind_Sprite_SetFullImageCollisionMask_1"]=Module["asm"]["CY"]).apply(null,arguments)};var _emscripten_bind_Sprite_GetCustomCollisionMask_0=Module["_emscripten_bind_Sprite_GetCustomCollisionMask_0"]=function(){return(_emscripten_bind_Sprite_GetCustomCollisionMask_0=Module["_emscripten_bind_Sprite_GetCustomCollisionMask_0"]=Module["asm"]["DY"]).apply(null,arguments)};var _emscripten_bind_Sprite_SetCustomCollisionMask_1=Module["_emscripten_bind_Sprite_SetCustomCollisionMask_1"]=function(){return(_emscripten_bind_Sprite_SetCustomCollisionMask_1=Module["_emscripten_bind_Sprite_SetCustomCollisionMask_1"]=Module["asm"]["EY"]).apply(null,arguments)};var _emscripten_bind_Sprite___destroy___0=Module["_emscripten_bind_Sprite___destroy___0"]=function(){return(_emscripten_bind_Sprite___destroy___0=Module["_emscripten_bind_Sprite___destroy___0"]=Module["asm"]["FY"]).apply(null,arguments)};var _emscripten_bind_Direction_Direction_0=Module["_emscripten_bind_Direction_Direction_0"]=function(){return(_emscripten_bind_Direction_Direction_0=Module["_emscripten_bind_Direction_Direction_0"]=Module["asm"]["GY"]).apply(null,arguments)};var _emscripten_bind_Direction_AddSprite_1=Module["_emscripten_bind_Direction_AddSprite_1"]=function(){return(_emscripten_bind_Direction_AddSprite_1=Module["_emscripten_bind_Direction_AddSprite_1"]=Module["asm"]["HY"]).apply(null,arguments)};var _emscripten_bind_Direction_GetSprite_1=Module["_emscripten_bind_Direction_GetSprite_1"]=function(){return(_emscripten_bind_Direction_GetSprite_1=Module["_emscripten_bind_Direction_GetSprite_1"]=Module["asm"]["IY"]).apply(null,arguments)};var _emscripten_bind_Direction_GetSpritesCount_0=Module["_emscripten_bind_Direction_GetSpritesCount_0"]=function(){return(_emscripten_bind_Direction_GetSpritesCount_0=Module["_emscripten_bind_Direction_GetSpritesCount_0"]=Module["asm"]["JY"]).apply(null,arguments)};var _emscripten_bind_Direction_HasNoSprites_0=Module["_emscripten_bind_Direction_HasNoSprites_0"]=function(){return(_emscripten_bind_Direction_HasNoSprites_0=Module["_emscripten_bind_Direction_HasNoSprites_0"]=Module["asm"]["KY"]).apply(null,arguments)};var _emscripten_bind_Direction_RemoveSprite_1=Module["_emscripten_bind_Direction_RemoveSprite_1"]=function(){return(_emscripten_bind_Direction_RemoveSprite_1=Module["_emscripten_bind_Direction_RemoveSprite_1"]=Module["asm"]["LY"]).apply(null,arguments)};var _emscripten_bind_Direction_RemoveAllSprites_0=Module["_emscripten_bind_Direction_RemoveAllSprites_0"]=function(){return(_emscripten_bind_Direction_RemoveAllSprites_0=Module["_emscripten_bind_Direction_RemoveAllSprites_0"]=Module["asm"]["MY"]).apply(null,arguments)};var _emscripten_bind_Direction_IsLooping_0=Module["_emscripten_bind_Direction_IsLooping_0"]=function(){return(_emscripten_bind_Direction_IsLooping_0=Module["_emscripten_bind_Direction_IsLooping_0"]=Module["asm"]["NY"]).apply(null,arguments)};var _emscripten_bind_Direction_SetLoop_1=Module["_emscripten_bind_Direction_SetLoop_1"]=function(){return(_emscripten_bind_Direction_SetLoop_1=Module["_emscripten_bind_Direction_SetLoop_1"]=Module["asm"]["OY"]).apply(null,arguments)};var _emscripten_bind_Direction_GetTimeBetweenFrames_0=Module["_emscripten_bind_Direction_GetTimeBetweenFrames_0"]=function(){return(_emscripten_bind_Direction_GetTimeBetweenFrames_0=Module["_emscripten_bind_Direction_GetTimeBetweenFrames_0"]=Module["asm"]["PY"]).apply(null,arguments)};var _emscripten_bind_Direction_GetSpriteNames_0=Module["_emscripten_bind_Direction_GetSpriteNames_0"]=function(){return(_emscripten_bind_Direction_GetSpriteNames_0=Module["_emscripten_bind_Direction_GetSpriteNames_0"]=Module["asm"]["QY"]).apply(null,arguments)};var _emscripten_bind_Direction_SetTimeBetweenFrames_1=Module["_emscripten_bind_Direction_SetTimeBetweenFrames_1"]=function(){return(_emscripten_bind_Direction_SetTimeBetweenFrames_1=Module["_emscripten_bind_Direction_SetTimeBetweenFrames_1"]=Module["asm"]["RY"]).apply(null,arguments)};var _emscripten_bind_Direction_SwapSprites_2=Module["_emscripten_bind_Direction_SwapSprites_2"]=function(){return(_emscripten_bind_Direction_SwapSprites_2=Module["_emscripten_bind_Direction_SwapSprites_2"]=Module["asm"]["SY"]).apply(null,arguments)};var _emscripten_bind_Direction_MoveSprite_2=Module["_emscripten_bind_Direction_MoveSprite_2"]=function(){return(_emscripten_bind_Direction_MoveSprite_2=Module["_emscripten_bind_Direction_MoveSprite_2"]=Module["asm"]["TY"]).apply(null,arguments)};var _emscripten_bind_Direction_SetMetadata_1=Module["_emscripten_bind_Direction_SetMetadata_1"]=function(){return(_emscripten_bind_Direction_SetMetadata_1=Module["_emscripten_bind_Direction_SetMetadata_1"]=Module["asm"]["UY"]).apply(null,arguments)};var _emscripten_bind_Direction_GetMetadata_0=Module["_emscripten_bind_Direction_GetMetadata_0"]=function(){return(_emscripten_bind_Direction_GetMetadata_0=Module["_emscripten_bind_Direction_GetMetadata_0"]=Module["asm"]["VY"]).apply(null,arguments)};var _emscripten_bind_Direction___destroy___0=Module["_emscripten_bind_Direction___destroy___0"]=function(){return(_emscripten_bind_Direction___destroy___0=Module["_emscripten_bind_Direction___destroy___0"]=Module["asm"]["WY"]).apply(null,arguments)};var _emscripten_bind_Animation_Animation_0=Module["_emscripten_bind_Animation_Animation_0"]=function(){return(_emscripten_bind_Animation_Animation_0=Module["_emscripten_bind_Animation_Animation_0"]=Module["asm"]["XY"]).apply(null,arguments)};var _emscripten_bind_Animation_SetName_1=Module["_emscripten_bind_Animation_SetName_1"]=function(){return(_emscripten_bind_Animation_SetName_1=Module["_emscripten_bind_Animation_SetName_1"]=Module["asm"]["YY"]).apply(null,arguments)};var _emscripten_bind_Animation_GetName_0=Module["_emscripten_bind_Animation_GetName_0"]=function(){return(_emscripten_bind_Animation_GetName_0=Module["_emscripten_bind_Animation_GetName_0"]=Module["asm"]["ZY"]).apply(null,arguments)};var _emscripten_bind_Animation_SetDirectionsCount_1=Module["_emscripten_bind_Animation_SetDirectionsCount_1"]=function(){return(_emscripten_bind_Animation_SetDirectionsCount_1=Module["_emscripten_bind_Animation_SetDirectionsCount_1"]=Module["asm"]["_Y"]).apply(null,arguments)};var _emscripten_bind_Animation_GetDirectionsCount_0=Module["_emscripten_bind_Animation_GetDirectionsCount_0"]=function(){return(_emscripten_bind_Animation_GetDirectionsCount_0=Module["_emscripten_bind_Animation_GetDirectionsCount_0"]=Module["asm"]["$Y"]).apply(null,arguments)};var _emscripten_bind_Animation_GetDirection_1=Module["_emscripten_bind_Animation_GetDirection_1"]=function(){return(_emscripten_bind_Animation_GetDirection_1=Module["_emscripten_bind_Animation_GetDirection_1"]=Module["asm"]["aZ"]).apply(null,arguments)};var _emscripten_bind_Animation_SetDirection_2=Module["_emscripten_bind_Animation_SetDirection_2"]=function(){return(_emscripten_bind_Animation_SetDirection_2=Module["_emscripten_bind_Animation_SetDirection_2"]=Module["asm"]["bZ"]).apply(null,arguments)};var _emscripten_bind_Animation_HasNoDirections_0=Module["_emscripten_bind_Animation_HasNoDirections_0"]=function(){return(_emscripten_bind_Animation_HasNoDirections_0=Module["_emscripten_bind_Animation_HasNoDirections_0"]=Module["asm"]["cZ"]).apply(null,arguments)};var _emscripten_bind_Animation_UseMultipleDirections_0=Module["_emscripten_bind_Animation_UseMultipleDirections_0"]=function(){return(_emscripten_bind_Animation_UseMultipleDirections_0=Module["_emscripten_bind_Animation_UseMultipleDirections_0"]=Module["asm"]["dZ"]).apply(null,arguments)};var _emscripten_bind_Animation_SetUseMultipleDirections_1=Module["_emscripten_bind_Animation_SetUseMultipleDirections_1"]=function(){return(_emscripten_bind_Animation_SetUseMultipleDirections_1=Module["_emscripten_bind_Animation_SetUseMultipleDirections_1"]=Module["asm"]["eZ"]).apply(null,arguments)};var _emscripten_bind_Animation___destroy___0=Module["_emscripten_bind_Animation___destroy___0"]=function(){return(_emscripten_bind_Animation___destroy___0=Module["_emscripten_bind_Animation___destroy___0"]=Module["asm"]["fZ"]).apply(null,arguments)};var _emscripten_bind_SpriteAnimationList_SpriteAnimationList_0=Module["_emscripten_bind_SpriteAnimationList_SpriteAnimationList_0"]=function(){return(_emscripten_bind_SpriteAnimationList_SpriteAnimationList_0=Module["_emscripten_bind_SpriteAnimationList_SpriteAnimationList_0"]=Module["asm"]["gZ"]).apply(null,arguments)};var _emscripten_bind_SpriteAnimationList_AddAnimation_1=Module["_emscripten_bind_SpriteAnimationList_AddAnimation_1"]=function(){return(_emscripten_bind_SpriteAnimationList_AddAnimation_1=Module["_emscripten_bind_SpriteAnimationList_AddAnimation_1"]=Module["asm"]["hZ"]).apply(null,arguments)};var _emscripten_bind_SpriteAnimationList_GetAnimation_1=Module["_emscripten_bind_SpriteAnimationList_GetAnimation_1"]=function(){return(_emscripten_bind_SpriteAnimationList_GetAnimation_1=Module["_emscripten_bind_SpriteAnimationList_GetAnimation_1"]=Module["asm"]["iZ"]).apply(null,arguments)};var _emscripten_bind_SpriteAnimationList_GetAnimationsCount_0=Module["_emscripten_bind_SpriteAnimationList_GetAnimationsCount_0"]=function(){return(_emscripten_bind_SpriteAnimationList_GetAnimationsCount_0=Module["_emscripten_bind_SpriteAnimationList_GetAnimationsCount_0"]=Module["asm"]["jZ"]).apply(null,arguments)};var _emscripten_bind_SpriteAnimationList_RemoveAnimation_1=Module["_emscripten_bind_SpriteAnimationList_RemoveAnimation_1"]=function(){return(_emscripten_bind_SpriteAnimationList_RemoveAnimation_1=Module["_emscripten_bind_SpriteAnimationList_RemoveAnimation_1"]=Module["asm"]["kZ"]).apply(null,arguments)};var _emscripten_bind_SpriteAnimationList_RemoveAllAnimations_0=Module["_emscripten_bind_SpriteAnimationList_RemoveAllAnimations_0"]=function(){return(_emscripten_bind_SpriteAnimationList_RemoveAllAnimations_0=Module["_emscripten_bind_SpriteAnimationList_RemoveAllAnimations_0"]=Module["asm"]["lZ"]).apply(null,arguments)};var _emscripten_bind_SpriteAnimationList_HasNoAnimations_0=Module["_emscripten_bind_SpriteAnimationList_HasNoAnimations_0"]=function(){return(_emscripten_bind_SpriteAnimationList_HasNoAnimations_0=Module["_emscripten_bind_SpriteAnimationList_HasNoAnimations_0"]=Module["asm"]["mZ"]).apply(null,arguments)};var _emscripten_bind_SpriteAnimationList_SwapAnimations_2=Module["_emscripten_bind_SpriteAnimationList_SwapAnimations_2"]=function(){return(_emscripten_bind_SpriteAnimationList_SwapAnimations_2=Module["_emscripten_bind_SpriteAnimationList_SwapAnimations_2"]=Module["asm"]["nZ"]).apply(null,arguments)};var _emscripten_bind_SpriteAnimationList_MoveAnimation_2=Module["_emscripten_bind_SpriteAnimationList_MoveAnimation_2"]=function(){return(_emscripten_bind_SpriteAnimationList_MoveAnimation_2=Module["_emscripten_bind_SpriteAnimationList_MoveAnimation_2"]=Module["asm"]["oZ"]).apply(null,arguments)};var _emscripten_bind_SpriteAnimationList_AdaptCollisionMaskAutomatically_0=Module["_emscripten_bind_SpriteAnimationList_AdaptCollisionMaskAutomatically_0"]=function(){return(_emscripten_bind_SpriteAnimationList_AdaptCollisionMaskAutomatically_0=Module["_emscripten_bind_SpriteAnimationList_AdaptCollisionMaskAutomatically_0"]=Module["asm"]["pZ"]).apply(null,arguments)};var _emscripten_bind_SpriteAnimationList_SetAdaptCollisionMaskAutomatically_1=Module["_emscripten_bind_SpriteAnimationList_SetAdaptCollisionMaskAutomatically_1"]=function(){return(_emscripten_bind_SpriteAnimationList_SetAdaptCollisionMaskAutomatically_1=Module["_emscripten_bind_SpriteAnimationList_SetAdaptCollisionMaskAutomatically_1"]=Module["asm"]["qZ"]).apply(null,arguments)};var _emscripten_bind_SpriteAnimationList___destroy___0=Module["_emscripten_bind_SpriteAnimationList___destroy___0"]=function(){return(_emscripten_bind_SpriteAnimationList___destroy___0=Module["_emscripten_bind_SpriteAnimationList___destroy___0"]=Module["asm"]["rZ"]).apply(null,arguments)};var _emscripten_bind_SpriteObject_SpriteObject_0=Module["_emscripten_bind_SpriteObject_SpriteObject_0"]=function(){return(_emscripten_bind_SpriteObject_SpriteObject_0=Module["_emscripten_bind_SpriteObject_SpriteObject_0"]=Module["asm"]["sZ"]).apply(null,arguments)};var _emscripten_bind_SpriteObject_GetAnimations_0=Module["_emscripten_bind_SpriteObject_GetAnimations_0"]=function(){return(_emscripten_bind_SpriteObject_GetAnimations_0=Module["_emscripten_bind_SpriteObject_GetAnimations_0"]=Module["asm"]["tZ"]).apply(null,arguments)};var _emscripten_bind_SpriteObject_SetUpdateIfNotVisible_1=Module["_emscripten_bind_SpriteObject_SetUpdateIfNotVisible_1"]=function(){return(_emscripten_bind_SpriteObject_SetUpdateIfNotVisible_1=Module["_emscripten_bind_SpriteObject_SetUpdateIfNotVisible_1"]=Module["asm"]["uZ"]).apply(null,arguments)};var _emscripten_bind_SpriteObject_GetUpdateIfNotVisible_0=Module["_emscripten_bind_SpriteObject_GetUpdateIfNotVisible_0"]=function(){return(_emscripten_bind_SpriteObject_GetUpdateIfNotVisible_0=Module["_emscripten_bind_SpriteObject_GetUpdateIfNotVisible_0"]=Module["asm"]["vZ"]).apply(null,arguments)};var _emscripten_bind_SpriteObject_SetPreScale_1=Module["_emscripten_bind_SpriteObject_SetPreScale_1"]=function(){return(_emscripten_bind_SpriteObject_SetPreScale_1=Module["_emscripten_bind_SpriteObject_SetPreScale_1"]=Module["asm"]["wZ"]).apply(null,arguments)};var _emscripten_bind_SpriteObject_GetPreScale_0=Module["_emscripten_bind_SpriteObject_GetPreScale_0"]=function(){return(_emscripten_bind_SpriteObject_GetPreScale_0=Module["_emscripten_bind_SpriteObject_GetPreScale_0"]=Module["asm"]["xZ"]).apply(null,arguments)};var _emscripten_bind_SpriteObject_GetType_0=Module["_emscripten_bind_SpriteObject_GetType_0"]=function(){return(_emscripten_bind_SpriteObject_GetType_0=Module["_emscripten_bind_SpriteObject_GetType_0"]=Module["asm"]["yZ"]).apply(null,arguments)};var _emscripten_bind_SpriteObject_SetType_1=Module["_emscripten_bind_SpriteObject_SetType_1"]=function(){return(_emscripten_bind_SpriteObject_SetType_1=Module["_emscripten_bind_SpriteObject_SetType_1"]=Module["asm"]["zZ"]).apply(null,arguments)};var _emscripten_bind_SpriteObject_ExposeResources_1=Module["_emscripten_bind_SpriteObject_ExposeResources_1"]=function(){return(_emscripten_bind_SpriteObject_ExposeResources_1=Module["_emscripten_bind_SpriteObject_ExposeResources_1"]=Module["asm"]["AZ"]).apply(null,arguments)};var _emscripten_bind_SpriteObject_SerializeTo_1=Module["_emscripten_bind_SpriteObject_SerializeTo_1"]=function(){return(_emscripten_bind_SpriteObject_SerializeTo_1=Module["_emscripten_bind_SpriteObject_SerializeTo_1"]=Module["asm"]["BZ"]).apply(null,arguments)};var _emscripten_bind_SpriteObject_UnserializeFrom_2=Module["_emscripten_bind_SpriteObject_UnserializeFrom_2"]=function(){return(_emscripten_bind_SpriteObject_UnserializeFrom_2=Module["_emscripten_bind_SpriteObject_UnserializeFrom_2"]=Module["asm"]["CZ"]).apply(null,arguments)};var _emscripten_bind_SpriteObject_GetAnimationsCount_0=Module["_emscripten_bind_SpriteObject_GetAnimationsCount_0"]=function(){return(_emscripten_bind_SpriteObject_GetAnimationsCount_0=Module["_emscripten_bind_SpriteObject_GetAnimationsCount_0"]=Module["asm"]["DZ"]).apply(null,arguments)};var _emscripten_bind_SpriteObject_GetAnimationName_1=Module["_emscripten_bind_SpriteObject_GetAnimationName_1"]=function(){return(_emscripten_bind_SpriteObject_GetAnimationName_1=Module["_emscripten_bind_SpriteObject_GetAnimationName_1"]=Module["asm"]["EZ"]).apply(null,arguments)};var _emscripten_bind_SpriteObject___destroy___0=Module["_emscripten_bind_SpriteObject___destroy___0"]=function(){return(_emscripten_bind_SpriteObject___destroy___0=Module["_emscripten_bind_SpriteObject___destroy___0"]=Module["asm"]["FZ"]).apply(null,arguments)};var _emscripten_bind_Model3DAnimation_Model3DAnimation_0=Module["_emscripten_bind_Model3DAnimation_Model3DAnimation_0"]=function(){return(_emscripten_bind_Model3DAnimation_Model3DAnimation_0=Module["_emscripten_bind_Model3DAnimation_Model3DAnimation_0"]=Module["asm"]["GZ"]).apply(null,arguments)};var _emscripten_bind_Model3DAnimation_SetName_1=Module["_emscripten_bind_Model3DAnimation_SetName_1"]=function(){return(_emscripten_bind_Model3DAnimation_SetName_1=Module["_emscripten_bind_Model3DAnimation_SetName_1"]=Module["asm"]["HZ"]).apply(null,arguments)};var _emscripten_bind_Model3DAnimation_GetName_0=Module["_emscripten_bind_Model3DAnimation_GetName_0"]=function(){return(_emscripten_bind_Model3DAnimation_GetName_0=Module["_emscripten_bind_Model3DAnimation_GetName_0"]=Module["asm"]["IZ"]).apply(null,arguments)};var _emscripten_bind_Model3DAnimation_SetSource_1=Module["_emscripten_bind_Model3DAnimation_SetSource_1"]=function(){return(_emscripten_bind_Model3DAnimation_SetSource_1=Module["_emscripten_bind_Model3DAnimation_SetSource_1"]=Module["asm"]["JZ"]).apply(null,arguments)};var _emscripten_bind_Model3DAnimation_GetSource_0=Module["_emscripten_bind_Model3DAnimation_GetSource_0"]=function(){return(_emscripten_bind_Model3DAnimation_GetSource_0=Module["_emscripten_bind_Model3DAnimation_GetSource_0"]=Module["asm"]["KZ"]).apply(null,arguments)};var _emscripten_bind_Model3DAnimation_SetShouldLoop_1=Module["_emscripten_bind_Model3DAnimation_SetShouldLoop_1"]=function(){return(_emscripten_bind_Model3DAnimation_SetShouldLoop_1=Module["_emscripten_bind_Model3DAnimation_SetShouldLoop_1"]=Module["asm"]["LZ"]).apply(null,arguments)};var _emscripten_bind_Model3DAnimation_ShouldLoop_0=Module["_emscripten_bind_Model3DAnimation_ShouldLoop_0"]=function(){return(_emscripten_bind_Model3DAnimation_ShouldLoop_0=Module["_emscripten_bind_Model3DAnimation_ShouldLoop_0"]=Module["asm"]["MZ"]).apply(null,arguments)};var _emscripten_bind_Model3DAnimation___destroy___0=Module["_emscripten_bind_Model3DAnimation___destroy___0"]=function(){return(_emscripten_bind_Model3DAnimation___destroy___0=Module["_emscripten_bind_Model3DAnimation___destroy___0"]=Module["asm"]["NZ"]).apply(null,arguments)};var _emscripten_bind_Model3DObjectConfiguration_Model3DObjectConfiguration_0=Module["_emscripten_bind_Model3DObjectConfiguration_Model3DObjectConfiguration_0"]=function(){return(_emscripten_bind_Model3DObjectConfiguration_Model3DObjectConfiguration_0=Module["_emscripten_bind_Model3DObjectConfiguration_Model3DObjectConfiguration_0"]=Module["asm"]["OZ"]).apply(null,arguments)};var _emscripten_bind_Model3DObjectConfiguration_AddAnimation_1=Module["_emscripten_bind_Model3DObjectConfiguration_AddAnimation_1"]=function(){return(_emscripten_bind_Model3DObjectConfiguration_AddAnimation_1=Module["_emscripten_bind_Model3DObjectConfiguration_AddAnimation_1"]=Module["asm"]["PZ"]).apply(null,arguments)};var _emscripten_bind_Model3DObjectConfiguration_GetAnimation_1=Module["_emscripten_bind_Model3DObjectConfiguration_GetAnimation_1"]=function(){return(_emscripten_bind_Model3DObjectConfiguration_GetAnimation_1=Module["_emscripten_bind_Model3DObjectConfiguration_GetAnimation_1"]=Module["asm"]["QZ"]).apply(null,arguments)};var _emscripten_bind_Model3DObjectConfiguration_HasAnimationNamed_1=Module["_emscripten_bind_Model3DObjectConfiguration_HasAnimationNamed_1"]=function(){return(_emscripten_bind_Model3DObjectConfiguration_HasAnimationNamed_1=Module["_emscripten_bind_Model3DObjectConfiguration_HasAnimationNamed_1"]=Module["asm"]["RZ"]).apply(null,arguments)};var _emscripten_bind_Model3DObjectConfiguration_GetAnimationsCount_0=Module["_emscripten_bind_Model3DObjectConfiguration_GetAnimationsCount_0"]=function(){return(_emscripten_bind_Model3DObjectConfiguration_GetAnimationsCount_0=Module["_emscripten_bind_Model3DObjectConfiguration_GetAnimationsCount_0"]=Module["asm"]["SZ"]).apply(null,arguments)};var _emscripten_bind_Model3DObjectConfiguration_RemoveAnimation_1=Module["_emscripten_bind_Model3DObjectConfiguration_RemoveAnimation_1"]=function(){return(_emscripten_bind_Model3DObjectConfiguration_RemoveAnimation_1=Module["_emscripten_bind_Model3DObjectConfiguration_RemoveAnimation_1"]=Module["asm"]["TZ"]).apply(null,arguments)};var _emscripten_bind_Model3DObjectConfiguration_RemoveAllAnimations_0=Module["_emscripten_bind_Model3DObjectConfiguration_RemoveAllAnimations_0"]=function(){return(_emscripten_bind_Model3DObjectConfiguration_RemoveAllAnimations_0=Module["_emscripten_bind_Model3DObjectConfiguration_RemoveAllAnimations_0"]=Module["asm"]["UZ"]).apply(null,arguments)};var _emscripten_bind_Model3DObjectConfiguration_HasNoAnimations_0=Module["_emscripten_bind_Model3DObjectConfiguration_HasNoAnimations_0"]=function(){return(_emscripten_bind_Model3DObjectConfiguration_HasNoAnimations_0=Module["_emscripten_bind_Model3DObjectConfiguration_HasNoAnimations_0"]=Module["asm"]["VZ"]).apply(null,arguments)};var _emscripten_bind_Model3DObjectConfiguration_SwapAnimations_2=Module["_emscripten_bind_Model3DObjectConfiguration_SwapAnimations_2"]=function(){return(_emscripten_bind_Model3DObjectConfiguration_SwapAnimations_2=Module["_emscripten_bind_Model3DObjectConfiguration_SwapAnimations_2"]=Module["asm"]["WZ"]).apply(null,arguments)};var _emscripten_bind_Model3DObjectConfiguration_MoveAnimation_2=Module["_emscripten_bind_Model3DObjectConfiguration_MoveAnimation_2"]=function(){return(_emscripten_bind_Model3DObjectConfiguration_MoveAnimation_2=Module["_emscripten_bind_Model3DObjectConfiguration_MoveAnimation_2"]=Module["asm"]["XZ"]).apply(null,arguments)};var _emscripten_bind_Model3DObjectConfiguration_GetWidth_0=Module["_emscripten_bind_Model3DObjectConfiguration_GetWidth_0"]=function(){return(_emscripten_bind_Model3DObjectConfiguration_GetWidth_0=Module["_emscripten_bind_Model3DObjectConfiguration_GetWidth_0"]=Module["asm"]["YZ"]).apply(null,arguments)};var _emscripten_bind_Model3DObjectConfiguration_GetHeight_0=Module["_emscripten_bind_Model3DObjectConfiguration_GetHeight_0"]=function(){return(_emscripten_bind_Model3DObjectConfiguration_GetHeight_0=Module["_emscripten_bind_Model3DObjectConfiguration_GetHeight_0"]=Module["asm"]["ZZ"]).apply(null,arguments)};var _emscripten_bind_Model3DObjectConfiguration_GetDepth_0=Module["_emscripten_bind_Model3DObjectConfiguration_GetDepth_0"]=function(){return(_emscripten_bind_Model3DObjectConfiguration_GetDepth_0=Module["_emscripten_bind_Model3DObjectConfiguration_GetDepth_0"]=Module["asm"]["_Z"]).apply(null,arguments)};var _emscripten_bind_Model3DObjectConfiguration_GetRotationX_0=Module["_emscripten_bind_Model3DObjectConfiguration_GetRotationX_0"]=function(){return(_emscripten_bind_Model3DObjectConfiguration_GetRotationX_0=Module["_emscripten_bind_Model3DObjectConfiguration_GetRotationX_0"]=Module["asm"]["$Z"]).apply(null,arguments)};var _emscripten_bind_Model3DObjectConfiguration_GetRotationY_0=Module["_emscripten_bind_Model3DObjectConfiguration_GetRotationY_0"]=function(){return(_emscripten_bind_Model3DObjectConfiguration_GetRotationY_0=Module["_emscripten_bind_Model3DObjectConfiguration_GetRotationY_0"]=Module["asm"]["a_"]).apply(null,arguments)};var _emscripten_bind_Model3DObjectConfiguration_GetRotationZ_0=Module["_emscripten_bind_Model3DObjectConfiguration_GetRotationZ_0"]=function(){return(_emscripten_bind_Model3DObjectConfiguration_GetRotationZ_0=Module["_emscripten_bind_Model3DObjectConfiguration_GetRotationZ_0"]=Module["asm"]["b_"]).apply(null,arguments)};var _emscripten_bind_Model3DObjectConfiguration_GetModelResourceName_0=Module["_emscripten_bind_Model3DObjectConfiguration_GetModelResourceName_0"]=function(){return(_emscripten_bind_Model3DObjectConfiguration_GetModelResourceName_0=Module["_emscripten_bind_Model3DObjectConfiguration_GetModelResourceName_0"]=Module["asm"]["c_"]).apply(null,arguments)};var _emscripten_bind_Model3DObjectConfiguration_GetMaterialType_0=Module["_emscripten_bind_Model3DObjectConfiguration_GetMaterialType_0"]=function(){return(_emscripten_bind_Model3DObjectConfiguration_GetMaterialType_0=Module["_emscripten_bind_Model3DObjectConfiguration_GetMaterialType_0"]=Module["asm"]["d_"]).apply(null,arguments)};var _emscripten_bind_Model3DObjectConfiguration_GetOriginLocation_0=Module["_emscripten_bind_Model3DObjectConfiguration_GetOriginLocation_0"]=function(){return(_emscripten_bind_Model3DObjectConfiguration_GetOriginLocation_0=Module["_emscripten_bind_Model3DObjectConfiguration_GetOriginLocation_0"]=Module["asm"]["e_"]).apply(null,arguments)};var _emscripten_bind_Model3DObjectConfiguration_GetCenterLocation_0=Module["_emscripten_bind_Model3DObjectConfiguration_GetCenterLocation_0"]=function(){return(_emscripten_bind_Model3DObjectConfiguration_GetCenterLocation_0=Module["_emscripten_bind_Model3DObjectConfiguration_GetCenterLocation_0"]=Module["asm"]["f_"]).apply(null,arguments)};var _emscripten_bind_Model3DObjectConfiguration_shouldKeepAspectRatio_0=Module["_emscripten_bind_Model3DObjectConfiguration_shouldKeepAspectRatio_0"]=function(){return(_emscripten_bind_Model3DObjectConfiguration_shouldKeepAspectRatio_0=Module["_emscripten_bind_Model3DObjectConfiguration_shouldKeepAspectRatio_0"]=Module["asm"]["g_"]).apply(null,arguments)};var _emscripten_bind_Model3DObjectConfiguration_GetType_0=Module["_emscripten_bind_Model3DObjectConfiguration_GetType_0"]=function(){return(_emscripten_bind_Model3DObjectConfiguration_GetType_0=Module["_emscripten_bind_Model3DObjectConfiguration_GetType_0"]=Module["asm"]["h_"]).apply(null,arguments)};var _emscripten_bind_Model3DObjectConfiguration_SetType_1=Module["_emscripten_bind_Model3DObjectConfiguration_SetType_1"]=function(){return(_emscripten_bind_Model3DObjectConfiguration_SetType_1=Module["_emscripten_bind_Model3DObjectConfiguration_SetType_1"]=Module["asm"]["i_"]).apply(null,arguments)};var _emscripten_bind_Model3DObjectConfiguration_ExposeResources_1=Module["_emscripten_bind_Model3DObjectConfiguration_ExposeResources_1"]=function(){return(_emscripten_bind_Model3DObjectConfiguration_ExposeResources_1=Module["_emscripten_bind_Model3DObjectConfiguration_ExposeResources_1"]=Module["asm"]["j_"]).apply(null,arguments)};var _emscripten_bind_Model3DObjectConfiguration_SerializeTo_1=Module["_emscripten_bind_Model3DObjectConfiguration_SerializeTo_1"]=function(){return(_emscripten_bind_Model3DObjectConfiguration_SerializeTo_1=Module["_emscripten_bind_Model3DObjectConfiguration_SerializeTo_1"]=Module["asm"]["k_"]).apply(null,arguments)};var _emscripten_bind_Model3DObjectConfiguration_UnserializeFrom_2=Module["_emscripten_bind_Model3DObjectConfiguration_UnserializeFrom_2"]=function(){return(_emscripten_bind_Model3DObjectConfiguration_UnserializeFrom_2=Module["_emscripten_bind_Model3DObjectConfiguration_UnserializeFrom_2"]=Module["asm"]["l_"]).apply(null,arguments)};var _emscripten_bind_Model3DObjectConfiguration_GetAnimationName_1=Module["_emscripten_bind_Model3DObjectConfiguration_GetAnimationName_1"]=function(){return(_emscripten_bind_Model3DObjectConfiguration_GetAnimationName_1=Module["_emscripten_bind_Model3DObjectConfiguration_GetAnimationName_1"]=Module["asm"]["m_"]).apply(null,arguments)};var _emscripten_bind_Model3DObjectConfiguration___destroy___0=Module["_emscripten_bind_Model3DObjectConfiguration___destroy___0"]=function(){return(_emscripten_bind_Model3DObjectConfiguration___destroy___0=Module["_emscripten_bind_Model3DObjectConfiguration___destroy___0"]=Module["asm"]["n_"]).apply(null,arguments)};var _emscripten_bind_SpineAnimation_SpineAnimation_0=Module["_emscripten_bind_SpineAnimation_SpineAnimation_0"]=function(){return(_emscripten_bind_SpineAnimation_SpineAnimation_0=Module["_emscripten_bind_SpineAnimation_SpineAnimation_0"]=Module["asm"]["o_"]).apply(null,arguments)};var _emscripten_bind_SpineAnimation_SetName_1=Module["_emscripten_bind_SpineAnimation_SetName_1"]=function(){return(_emscripten_bind_SpineAnimation_SetName_1=Module["_emscripten_bind_SpineAnimation_SetName_1"]=Module["asm"]["p_"]).apply(null,arguments)};var _emscripten_bind_SpineAnimation_GetName_0=Module["_emscripten_bind_SpineAnimation_GetName_0"]=function(){return(_emscripten_bind_SpineAnimation_GetName_0=Module["_emscripten_bind_SpineAnimation_GetName_0"]=Module["asm"]["q_"]).apply(null,arguments)};var _emscripten_bind_SpineAnimation_SetSource_1=Module["_emscripten_bind_SpineAnimation_SetSource_1"]=function(){return(_emscripten_bind_SpineAnimation_SetSource_1=Module["_emscripten_bind_SpineAnimation_SetSource_1"]=Module["asm"]["r_"]).apply(null,arguments)};var _emscripten_bind_SpineAnimation_GetSource_0=Module["_emscripten_bind_SpineAnimation_GetSource_0"]=function(){return(_emscripten_bind_SpineAnimation_GetSource_0=Module["_emscripten_bind_SpineAnimation_GetSource_0"]=Module["asm"]["s_"]).apply(null,arguments)};var _emscripten_bind_SpineAnimation_SetShouldLoop_1=Module["_emscripten_bind_SpineAnimation_SetShouldLoop_1"]=function(){return(_emscripten_bind_SpineAnimation_SetShouldLoop_1=Module["_emscripten_bind_SpineAnimation_SetShouldLoop_1"]=Module["asm"]["t_"]).apply(null,arguments)};var _emscripten_bind_SpineAnimation_ShouldLoop_0=Module["_emscripten_bind_SpineAnimation_ShouldLoop_0"]=function(){return(_emscripten_bind_SpineAnimation_ShouldLoop_0=Module["_emscripten_bind_SpineAnimation_ShouldLoop_0"]=Module["asm"]["u_"]).apply(null,arguments)};var _emscripten_bind_SpineAnimation___destroy___0=Module["_emscripten_bind_SpineAnimation___destroy___0"]=function(){return(_emscripten_bind_SpineAnimation___destroy___0=Module["_emscripten_bind_SpineAnimation___destroy___0"]=Module["asm"]["v_"]).apply(null,arguments)};var _emscripten_bind_SpineObjectConfiguration_SpineObjectConfiguration_0=Module["_emscripten_bind_SpineObjectConfiguration_SpineObjectConfiguration_0"]=function(){return(_emscripten_bind_SpineObjectConfiguration_SpineObjectConfiguration_0=Module["_emscripten_bind_SpineObjectConfiguration_SpineObjectConfiguration_0"]=Module["asm"]["w_"]).apply(null,arguments)};var _emscripten_bind_SpineObjectConfiguration_AddAnimation_1=Module["_emscripten_bind_SpineObjectConfiguration_AddAnimation_1"]=function(){return(_emscripten_bind_SpineObjectConfiguration_AddAnimation_1=Module["_emscripten_bind_SpineObjectConfiguration_AddAnimation_1"]=Module["asm"]["x_"]).apply(null,arguments)};var _emscripten_bind_SpineObjectConfiguration_GetAnimation_1=Module["_emscripten_bind_SpineObjectConfiguration_GetAnimation_1"]=function(){return(_emscripten_bind_SpineObjectConfiguration_GetAnimation_1=Module["_emscripten_bind_SpineObjectConfiguration_GetAnimation_1"]=Module["asm"]["y_"]).apply(null,arguments)};var _emscripten_bind_SpineObjectConfiguration_HasAnimationNamed_1=Module["_emscripten_bind_SpineObjectConfiguration_HasAnimationNamed_1"]=function(){return(_emscripten_bind_SpineObjectConfiguration_HasAnimationNamed_1=Module["_emscripten_bind_SpineObjectConfiguration_HasAnimationNamed_1"]=Module["asm"]["z_"]).apply(null,arguments)};var _emscripten_bind_SpineObjectConfiguration_GetAnimationsCount_0=Module["_emscripten_bind_SpineObjectConfiguration_GetAnimationsCount_0"]=function(){return(_emscripten_bind_SpineObjectConfiguration_GetAnimationsCount_0=Module["_emscripten_bind_SpineObjectConfiguration_GetAnimationsCount_0"]=Module["asm"]["A_"]).apply(null,arguments)};var _emscripten_bind_SpineObjectConfiguration_RemoveAnimation_1=Module["_emscripten_bind_SpineObjectConfiguration_RemoveAnimation_1"]=function(){return(_emscripten_bind_SpineObjectConfiguration_RemoveAnimation_1=Module["_emscripten_bind_SpineObjectConfiguration_RemoveAnimation_1"]=Module["asm"]["B_"]).apply(null,arguments)};var _emscripten_bind_SpineObjectConfiguration_RemoveAllAnimations_0=Module["_emscripten_bind_SpineObjectConfiguration_RemoveAllAnimations_0"]=function(){return(_emscripten_bind_SpineObjectConfiguration_RemoveAllAnimations_0=Module["_emscripten_bind_SpineObjectConfiguration_RemoveAllAnimations_0"]=Module["asm"]["C_"]).apply(null,arguments)};var _emscripten_bind_SpineObjectConfiguration_HasNoAnimations_0=Module["_emscripten_bind_SpineObjectConfiguration_HasNoAnimations_0"]=function(){return(_emscripten_bind_SpineObjectConfiguration_HasNoAnimations_0=Module["_emscripten_bind_SpineObjectConfiguration_HasNoAnimations_0"]=Module["asm"]["D_"]).apply(null,arguments)};var _emscripten_bind_SpineObjectConfiguration_SwapAnimations_2=Module["_emscripten_bind_SpineObjectConfiguration_SwapAnimations_2"]=function(){return(_emscripten_bind_SpineObjectConfiguration_SwapAnimations_2=Module["_emscripten_bind_SpineObjectConfiguration_SwapAnimations_2"]=Module["asm"]["E_"]).apply(null,arguments)};var _emscripten_bind_SpineObjectConfiguration_MoveAnimation_2=Module["_emscripten_bind_SpineObjectConfiguration_MoveAnimation_2"]=function(){return(_emscripten_bind_SpineObjectConfiguration_MoveAnimation_2=Module["_emscripten_bind_SpineObjectConfiguration_MoveAnimation_2"]=Module["asm"]["F_"]).apply(null,arguments)};var _emscripten_bind_SpineObjectConfiguration_GetScale_0=Module["_emscripten_bind_SpineObjectConfiguration_GetScale_0"]=function(){return(_emscripten_bind_SpineObjectConfiguration_GetScale_0=Module["_emscripten_bind_SpineObjectConfiguration_GetScale_0"]=Module["asm"]["G_"]).apply(null,arguments)};var _emscripten_bind_SpineObjectConfiguration_GetSpineResourceName_0=Module["_emscripten_bind_SpineObjectConfiguration_GetSpineResourceName_0"]=function(){return(_emscripten_bind_SpineObjectConfiguration_GetSpineResourceName_0=Module["_emscripten_bind_SpineObjectConfiguration_GetSpineResourceName_0"]=Module["asm"]["H_"]).apply(null,arguments)};var _emscripten_bind_SpineObjectConfiguration_GetSkinName_0=Module["_emscripten_bind_SpineObjectConfiguration_GetSkinName_0"]=function(){return(_emscripten_bind_SpineObjectConfiguration_GetSkinName_0=Module["_emscripten_bind_SpineObjectConfiguration_GetSkinName_0"]=Module["asm"]["I_"]).apply(null,arguments)};var _emscripten_bind_SpineObjectConfiguration_GetType_0=Module["_emscripten_bind_SpineObjectConfiguration_GetType_0"]=function(){return(_emscripten_bind_SpineObjectConfiguration_GetType_0=Module["_emscripten_bind_SpineObjectConfiguration_GetType_0"]=Module["asm"]["J_"]).apply(null,arguments)};var _emscripten_bind_SpineObjectConfiguration_SetType_1=Module["_emscripten_bind_SpineObjectConfiguration_SetType_1"]=function(){return(_emscripten_bind_SpineObjectConfiguration_SetType_1=Module["_emscripten_bind_SpineObjectConfiguration_SetType_1"]=Module["asm"]["K_"]).apply(null,arguments)};var _emscripten_bind_SpineObjectConfiguration_ExposeResources_1=Module["_emscripten_bind_SpineObjectConfiguration_ExposeResources_1"]=function(){return(_emscripten_bind_SpineObjectConfiguration_ExposeResources_1=Module["_emscripten_bind_SpineObjectConfiguration_ExposeResources_1"]=Module["asm"]["L_"]).apply(null,arguments)};var _emscripten_bind_SpineObjectConfiguration_SerializeTo_1=Module["_emscripten_bind_SpineObjectConfiguration_SerializeTo_1"]=function(){return(_emscripten_bind_SpineObjectConfiguration_SerializeTo_1=Module["_emscripten_bind_SpineObjectConfiguration_SerializeTo_1"]=Module["asm"]["M_"]).apply(null,arguments)};var _emscripten_bind_SpineObjectConfiguration_UnserializeFrom_2=Module["_emscripten_bind_SpineObjectConfiguration_UnserializeFrom_2"]=function(){return(_emscripten_bind_SpineObjectConfiguration_UnserializeFrom_2=Module["_emscripten_bind_SpineObjectConfiguration_UnserializeFrom_2"]=Module["asm"]["N_"]).apply(null,arguments)};var _emscripten_bind_SpineObjectConfiguration_GetAnimationName_1=Module["_emscripten_bind_SpineObjectConfiguration_GetAnimationName_1"]=function(){return(_emscripten_bind_SpineObjectConfiguration_GetAnimationName_1=Module["_emscripten_bind_SpineObjectConfiguration_GetAnimationName_1"]=Module["asm"]["O_"]).apply(null,arguments)};var _emscripten_bind_SpineObjectConfiguration___destroy___0=Module["_emscripten_bind_SpineObjectConfiguration___destroy___0"]=function(){return(_emscripten_bind_SpineObjectConfiguration___destroy___0=Module["_emscripten_bind_SpineObjectConfiguration___destroy___0"]=Module["asm"]["P_"]).apply(null,arguments)};var _emscripten_bind_Vector2f_Vector2f_0=Module["_emscripten_bind_Vector2f_Vector2f_0"]=function(){return(_emscripten_bind_Vector2f_Vector2f_0=Module["_emscripten_bind_Vector2f_Vector2f_0"]=Module["asm"]["Q_"]).apply(null,arguments)};var _emscripten_bind_Vector2f_get_x_0=Module["_emscripten_bind_Vector2f_get_x_0"]=function(){return(_emscripten_bind_Vector2f_get_x_0=Module["_emscripten_bind_Vector2f_get_x_0"]=Module["asm"]["R_"]).apply(null,arguments)};var _emscripten_bind_Vector2f_set_x_1=Module["_emscripten_bind_Vector2f_set_x_1"]=function(){return(_emscripten_bind_Vector2f_set_x_1=Module["_emscripten_bind_Vector2f_set_x_1"]=Module["asm"]["S_"]).apply(null,arguments)};var _emscripten_bind_Vector2f_get_y_0=Module["_emscripten_bind_Vector2f_get_y_0"]=function(){return(_emscripten_bind_Vector2f_get_y_0=Module["_emscripten_bind_Vector2f_get_y_0"]=Module["asm"]["T_"]).apply(null,arguments)};var _emscripten_bind_Vector2f_set_y_1=Module["_emscripten_bind_Vector2f_set_y_1"]=function(){return(_emscripten_bind_Vector2f_set_y_1=Module["_emscripten_bind_Vector2f_set_y_1"]=Module["asm"]["U_"]).apply(null,arguments)};var _emscripten_bind_Vector2f___destroy___0=Module["_emscripten_bind_Vector2f___destroy___0"]=function(){return(_emscripten_bind_Vector2f___destroy___0=Module["_emscripten_bind_Vector2f___destroy___0"]=Module["asm"]["V_"]).apply(null,arguments)};var _emscripten_bind_VectorVector2f_VectorVector2f_0=Module["_emscripten_bind_VectorVector2f_VectorVector2f_0"]=function(){return(_emscripten_bind_VectorVector2f_VectorVector2f_0=Module["_emscripten_bind_VectorVector2f_VectorVector2f_0"]=Module["asm"]["W_"]).apply(null,arguments)};var _emscripten_bind_VectorVector2f_push_back_1=Module["_emscripten_bind_VectorVector2f_push_back_1"]=function(){return(_emscripten_bind_VectorVector2f_push_back_1=Module["_emscripten_bind_VectorVector2f_push_back_1"]=Module["asm"]["X_"]).apply(null,arguments)};var _emscripten_bind_VectorVector2f_size_0=Module["_emscripten_bind_VectorVector2f_size_0"]=function(){return(_emscripten_bind_VectorVector2f_size_0=Module["_emscripten_bind_VectorVector2f_size_0"]=Module["asm"]["Y_"]).apply(null,arguments)};var _emscripten_bind_VectorVector2f_at_1=Module["_emscripten_bind_VectorVector2f_at_1"]=function(){return(_emscripten_bind_VectorVector2f_at_1=Module["_emscripten_bind_VectorVector2f_at_1"]=Module["asm"]["Z_"]).apply(null,arguments)};var _emscripten_bind_VectorVector2f_WRAPPED_set_2=Module["_emscripten_bind_VectorVector2f_WRAPPED_set_2"]=function(){return(_emscripten_bind_VectorVector2f_WRAPPED_set_2=Module["_emscripten_bind_VectorVector2f_WRAPPED_set_2"]=Module["asm"]["__"]).apply(null,arguments)};var _emscripten_bind_VectorVector2f_FREE_removeFromVectorVector2f_1=Module["_emscripten_bind_VectorVector2f_FREE_removeFromVectorVector2f_1"]=function(){return(_emscripten_bind_VectorVector2f_FREE_removeFromVectorVector2f_1=Module["_emscripten_bind_VectorVector2f_FREE_removeFromVectorVector2f_1"]=Module["asm"]["$_"]).apply(null,arguments)};var _emscripten_bind_VectorVector2f_FREE_moveVector2fInVector_2=Module["_emscripten_bind_VectorVector2f_FREE_moveVector2fInVector_2"]=function(){return(_emscripten_bind_VectorVector2f_FREE_moveVector2fInVector_2=Module["_emscripten_bind_VectorVector2f_FREE_moveVector2fInVector_2"]=Module["asm"]["a$"]).apply(null,arguments)};var _emscripten_bind_VectorVector2f_clear_0=Module["_emscripten_bind_VectorVector2f_clear_0"]=function(){return(_emscripten_bind_VectorVector2f_clear_0=Module["_emscripten_bind_VectorVector2f_clear_0"]=Module["asm"]["b$"]).apply(null,arguments)};var _emscripten_bind_VectorVector2f___destroy___0=Module["_emscripten_bind_VectorVector2f___destroy___0"]=function(){return(_emscripten_bind_VectorVector2f___destroy___0=Module["_emscripten_bind_VectorVector2f___destroy___0"]=Module["asm"]["c$"]).apply(null,arguments)};var _emscripten_bind_TextObject_TextObject_0=Module["_emscripten_bind_TextObject_TextObject_0"]=function(){return(_emscripten_bind_TextObject_TextObject_0=Module["_emscripten_bind_TextObject_TextObject_0"]=Module["asm"]["d$"]).apply(null,arguments)};var _emscripten_bind_TextObject_SetText_1=Module["_emscripten_bind_TextObject_SetText_1"]=function(){return(_emscripten_bind_TextObject_SetText_1=Module["_emscripten_bind_TextObject_SetText_1"]=Module["asm"]["e$"]).apply(null,arguments)};var _emscripten_bind_TextObject_GetText_0=Module["_emscripten_bind_TextObject_GetText_0"]=function(){return(_emscripten_bind_TextObject_GetText_0=Module["_emscripten_bind_TextObject_GetText_0"]=Module["asm"]["f$"]).apply(null,arguments)};var _emscripten_bind_TextObject_SetCharacterSize_1=Module["_emscripten_bind_TextObject_SetCharacterSize_1"]=function(){return(_emscripten_bind_TextObject_SetCharacterSize_1=Module["_emscripten_bind_TextObject_SetCharacterSize_1"]=Module["asm"]["g$"]).apply(null,arguments)};var _emscripten_bind_TextObject_GetCharacterSize_0=Module["_emscripten_bind_TextObject_GetCharacterSize_0"]=function(){return(_emscripten_bind_TextObject_GetCharacterSize_0=Module["_emscripten_bind_TextObject_GetCharacterSize_0"]=Module["asm"]["h$"]).apply(null,arguments)};var _emscripten_bind_TextObject_SetLineHeight_1=Module["_emscripten_bind_TextObject_SetLineHeight_1"]=function(){return(_emscripten_bind_TextObject_SetLineHeight_1=Module["_emscripten_bind_TextObject_SetLineHeight_1"]=Module["asm"]["i$"]).apply(null,arguments)};var _emscripten_bind_TextObject_GetLineHeight_0=Module["_emscripten_bind_TextObject_GetLineHeight_0"]=function(){return(_emscripten_bind_TextObject_GetLineHeight_0=Module["_emscripten_bind_TextObject_GetLineHeight_0"]=Module["asm"]["j$"]).apply(null,arguments)};var _emscripten_bind_TextObject_SetFontName_1=Module["_emscripten_bind_TextObject_SetFontName_1"]=function(){return(_emscripten_bind_TextObject_SetFontName_1=Module["_emscripten_bind_TextObject_SetFontName_1"]=Module["asm"]["k$"]).apply(null,arguments)};var _emscripten_bind_TextObject_GetFontName_0=Module["_emscripten_bind_TextObject_GetFontName_0"]=function(){return(_emscripten_bind_TextObject_GetFontName_0=Module["_emscripten_bind_TextObject_GetFontName_0"]=Module["asm"]["l$"]).apply(null,arguments)};var _emscripten_bind_TextObject_IsBold_0=Module["_emscripten_bind_TextObject_IsBold_0"]=function(){return(_emscripten_bind_TextObject_IsBold_0=Module["_emscripten_bind_TextObject_IsBold_0"]=Module["asm"]["m$"]).apply(null,arguments)};var _emscripten_bind_TextObject_SetBold_1=Module["_emscripten_bind_TextObject_SetBold_1"]=function(){return(_emscripten_bind_TextObject_SetBold_1=Module["_emscripten_bind_TextObject_SetBold_1"]=Module["asm"]["n$"]).apply(null,arguments)};var _emscripten_bind_TextObject_IsItalic_0=Module["_emscripten_bind_TextObject_IsItalic_0"]=function(){return(_emscripten_bind_TextObject_IsItalic_0=Module["_emscripten_bind_TextObject_IsItalic_0"]=Module["asm"]["o$"]).apply(null,arguments)};var _emscripten_bind_TextObject_SetItalic_1=Module["_emscripten_bind_TextObject_SetItalic_1"]=function(){return(_emscripten_bind_TextObject_SetItalic_1=Module["_emscripten_bind_TextObject_SetItalic_1"]=Module["asm"]["p$"]).apply(null,arguments)};var _emscripten_bind_TextObject_IsUnderlined_0=Module["_emscripten_bind_TextObject_IsUnderlined_0"]=function(){return(_emscripten_bind_TextObject_IsUnderlined_0=Module["_emscripten_bind_TextObject_IsUnderlined_0"]=Module["asm"]["q$"]).apply(null,arguments)};var _emscripten_bind_TextObject_SetUnderlined_1=Module["_emscripten_bind_TextObject_SetUnderlined_1"]=function(){return(_emscripten_bind_TextObject_SetUnderlined_1=Module["_emscripten_bind_TextObject_SetUnderlined_1"]=Module["asm"]["r$"]).apply(null,arguments)};var _emscripten_bind_TextObject_SetColor_1=Module["_emscripten_bind_TextObject_SetColor_1"]=function(){return(_emscripten_bind_TextObject_SetColor_1=Module["_emscripten_bind_TextObject_SetColor_1"]=Module["asm"]["s$"]).apply(null,arguments)};var _emscripten_bind_TextObject_GetColor_0=Module["_emscripten_bind_TextObject_GetColor_0"]=function(){return(_emscripten_bind_TextObject_GetColor_0=Module["_emscripten_bind_TextObject_GetColor_0"]=Module["asm"]["t$"]).apply(null,arguments)};var _emscripten_bind_TextObject_SetTextAlignment_1=Module["_emscripten_bind_TextObject_SetTextAlignment_1"]=function(){return(_emscripten_bind_TextObject_SetTextAlignment_1=Module["_emscripten_bind_TextObject_SetTextAlignment_1"]=Module["asm"]["u$"]).apply(null,arguments)};var _emscripten_bind_TextObject_GetTextAlignment_0=Module["_emscripten_bind_TextObject_GetTextAlignment_0"]=function(){return(_emscripten_bind_TextObject_GetTextAlignment_0=Module["_emscripten_bind_TextObject_GetTextAlignment_0"]=Module["asm"]["v$"]).apply(null,arguments)};var _emscripten_bind_TextObject_SetVerticalTextAlignment_1=Module["_emscripten_bind_TextObject_SetVerticalTextAlignment_1"]=function(){return(_emscripten_bind_TextObject_SetVerticalTextAlignment_1=Module["_emscripten_bind_TextObject_SetVerticalTextAlignment_1"]=Module["asm"]["w$"]).apply(null,arguments)};var _emscripten_bind_TextObject_GetVerticalTextAlignment_0=Module["_emscripten_bind_TextObject_GetVerticalTextAlignment_0"]=function(){return(_emscripten_bind_TextObject_GetVerticalTextAlignment_0=Module["_emscripten_bind_TextObject_GetVerticalTextAlignment_0"]=Module["asm"]["x$"]).apply(null,arguments)};var _emscripten_bind_TextObject_SetOutlineEnabled_1=Module["_emscripten_bind_TextObject_SetOutlineEnabled_1"]=function(){return(_emscripten_bind_TextObject_SetOutlineEnabled_1=Module["_emscripten_bind_TextObject_SetOutlineEnabled_1"]=Module["asm"]["y$"]).apply(null,arguments)};var _emscripten_bind_TextObject_IsOutlineEnabled_0=Module["_emscripten_bind_TextObject_IsOutlineEnabled_0"]=function(){return(_emscripten_bind_TextObject_IsOutlineEnabled_0=Module["_emscripten_bind_TextObject_IsOutlineEnabled_0"]=Module["asm"]["z$"]).apply(null,arguments)};var _emscripten_bind_TextObject_SetOutlineThickness_1=Module["_emscripten_bind_TextObject_SetOutlineThickness_1"]=function(){return(_emscripten_bind_TextObject_SetOutlineThickness_1=Module["_emscripten_bind_TextObject_SetOutlineThickness_1"]=Module["asm"]["A$"]).apply(null,arguments)};var _emscripten_bind_TextObject_GetOutlineThickness_0=Module["_emscripten_bind_TextObject_GetOutlineThickness_0"]=function(){return(_emscripten_bind_TextObject_GetOutlineThickness_0=Module["_emscripten_bind_TextObject_GetOutlineThickness_0"]=Module["asm"]["B$"]).apply(null,arguments)};var _emscripten_bind_TextObject_SetOutlineColor_1=Module["_emscripten_bind_TextObject_SetOutlineColor_1"]=function(){return(_emscripten_bind_TextObject_SetOutlineColor_1=Module["_emscripten_bind_TextObject_SetOutlineColor_1"]=Module["asm"]["C$"]).apply(null,arguments)};var _emscripten_bind_TextObject_GetOutlineColor_0=Module["_emscripten_bind_TextObject_GetOutlineColor_0"]=function(){return(_emscripten_bind_TextObject_GetOutlineColor_0=Module["_emscripten_bind_TextObject_GetOutlineColor_0"]=Module["asm"]["D$"]).apply(null,arguments)};var _emscripten_bind_TextObject_SetShadowEnabled_1=Module["_emscripten_bind_TextObject_SetShadowEnabled_1"]=function(){return(_emscripten_bind_TextObject_SetShadowEnabled_1=Module["_emscripten_bind_TextObject_SetShadowEnabled_1"]=Module["asm"]["E$"]).apply(null,arguments)};var _emscripten_bind_TextObject_IsShadowEnabled_0=Module["_emscripten_bind_TextObject_IsShadowEnabled_0"]=function(){return(_emscripten_bind_TextObject_IsShadowEnabled_0=Module["_emscripten_bind_TextObject_IsShadowEnabled_0"]=Module["asm"]["F$"]).apply(null,arguments)};var _emscripten_bind_TextObject_SetShadowColor_1=Module["_emscripten_bind_TextObject_SetShadowColor_1"]=function(){return(_emscripten_bind_TextObject_SetShadowColor_1=Module["_emscripten_bind_TextObject_SetShadowColor_1"]=Module["asm"]["G$"]).apply(null,arguments)};var _emscripten_bind_TextObject_GetShadowColor_0=Module["_emscripten_bind_TextObject_GetShadowColor_0"]=function(){return(_emscripten_bind_TextObject_GetShadowColor_0=Module["_emscripten_bind_TextObject_GetShadowColor_0"]=Module["asm"]["H$"]).apply(null,arguments)};var _emscripten_bind_TextObject_SetShadowOpacity_1=Module["_emscripten_bind_TextObject_SetShadowOpacity_1"]=function(){return(_emscripten_bind_TextObject_SetShadowOpacity_1=Module["_emscripten_bind_TextObject_SetShadowOpacity_1"]=Module["asm"]["I$"]).apply(null,arguments)};var _emscripten_bind_TextObject_GetShadowOpacity_0=Module["_emscripten_bind_TextObject_GetShadowOpacity_0"]=function(){return(_emscripten_bind_TextObject_GetShadowOpacity_0=Module["_emscripten_bind_TextObject_GetShadowOpacity_0"]=Module["asm"]["J$"]).apply(null,arguments)};var _emscripten_bind_TextObject_SetShadowAngle_1=Module["_emscripten_bind_TextObject_SetShadowAngle_1"]=function(){return(_emscripten_bind_TextObject_SetShadowAngle_1=Module["_emscripten_bind_TextObject_SetShadowAngle_1"]=Module["asm"]["K$"]).apply(null,arguments)};var _emscripten_bind_TextObject_GetShadowAngle_0=Module["_emscripten_bind_TextObject_GetShadowAngle_0"]=function(){return(_emscripten_bind_TextObject_GetShadowAngle_0=Module["_emscripten_bind_TextObject_GetShadowAngle_0"]=Module["asm"]["L$"]).apply(null,arguments)};var _emscripten_bind_TextObject_SetShadowDistance_1=Module["_emscripten_bind_TextObject_SetShadowDistance_1"]=function(){return(_emscripten_bind_TextObject_SetShadowDistance_1=Module["_emscripten_bind_TextObject_SetShadowDistance_1"]=Module["asm"]["M$"]).apply(null,arguments)};var _emscripten_bind_TextObject_GetShadowDistance_0=Module["_emscripten_bind_TextObject_GetShadowDistance_0"]=function(){return(_emscripten_bind_TextObject_GetShadowDistance_0=Module["_emscripten_bind_TextObject_GetShadowDistance_0"]=Module["asm"]["N$"]).apply(null,arguments)};var _emscripten_bind_TextObject_SetShadowBlurRadius_1=Module["_emscripten_bind_TextObject_SetShadowBlurRadius_1"]=function(){return(_emscripten_bind_TextObject_SetShadowBlurRadius_1=Module["_emscripten_bind_TextObject_SetShadowBlurRadius_1"]=Module["asm"]["O$"]).apply(null,arguments)};var _emscripten_bind_TextObject_GetShadowBlurRadius_0=Module["_emscripten_bind_TextObject_GetShadowBlurRadius_0"]=function(){return(_emscripten_bind_TextObject_GetShadowBlurRadius_0=Module["_emscripten_bind_TextObject_GetShadowBlurRadius_0"]=Module["asm"]["P$"]).apply(null,arguments)};var _emscripten_bind_TextObject_GetType_0=Module["_emscripten_bind_TextObject_GetType_0"]=function(){return(_emscripten_bind_TextObject_GetType_0=Module["_emscripten_bind_TextObject_GetType_0"]=Module["asm"]["Q$"]).apply(null,arguments)};var _emscripten_bind_TextObject_SetType_1=Module["_emscripten_bind_TextObject_SetType_1"]=function(){return(_emscripten_bind_TextObject_SetType_1=Module["_emscripten_bind_TextObject_SetType_1"]=Module["asm"]["R$"]).apply(null,arguments)};var _emscripten_bind_TextObject_ExposeResources_1=Module["_emscripten_bind_TextObject_ExposeResources_1"]=function(){return(_emscripten_bind_TextObject_ExposeResources_1=Module["_emscripten_bind_TextObject_ExposeResources_1"]=Module["asm"]["S$"]).apply(null,arguments)};var _emscripten_bind_TextObject_SerializeTo_1=Module["_emscripten_bind_TextObject_SerializeTo_1"]=function(){return(_emscripten_bind_TextObject_SerializeTo_1=Module["_emscripten_bind_TextObject_SerializeTo_1"]=Module["asm"]["T$"]).apply(null,arguments)};var _emscripten_bind_TextObject_UnserializeFrom_2=Module["_emscripten_bind_TextObject_UnserializeFrom_2"]=function(){return(_emscripten_bind_TextObject_UnserializeFrom_2=Module["_emscripten_bind_TextObject_UnserializeFrom_2"]=Module["asm"]["U$"]).apply(null,arguments)};var _emscripten_bind_TextObject_GetAnimationName_1=Module["_emscripten_bind_TextObject_GetAnimationName_1"]=function(){return(_emscripten_bind_TextObject_GetAnimationName_1=Module["_emscripten_bind_TextObject_GetAnimationName_1"]=Module["asm"]["V$"]).apply(null,arguments)};var _emscripten_bind_TextObject___destroy___0=Module["_emscripten_bind_TextObject___destroy___0"]=function(){return(_emscripten_bind_TextObject___destroy___0=Module["_emscripten_bind_TextObject___destroy___0"]=Module["asm"]["W$"]).apply(null,arguments)};var _emscripten_bind_TiledSpriteObject_TiledSpriteObject_0=Module["_emscripten_bind_TiledSpriteObject_TiledSpriteObject_0"]=function(){return(_emscripten_bind_TiledSpriteObject_TiledSpriteObject_0=Module["_emscripten_bind_TiledSpriteObject_TiledSpriteObject_0"]=Module["asm"]["X$"]).apply(null,arguments)};var _emscripten_bind_TiledSpriteObject_SetTexture_1=Module["_emscripten_bind_TiledSpriteObject_SetTexture_1"]=function(){return(_emscripten_bind_TiledSpriteObject_SetTexture_1=Module["_emscripten_bind_TiledSpriteObject_SetTexture_1"]=Module["asm"]["Y$"]).apply(null,arguments)};var _emscripten_bind_TiledSpriteObject_GetTexture_0=Module["_emscripten_bind_TiledSpriteObject_GetTexture_0"]=function(){return(_emscripten_bind_TiledSpriteObject_GetTexture_0=Module["_emscripten_bind_TiledSpriteObject_GetTexture_0"]=Module["asm"]["Z$"]).apply(null,arguments)};var _emscripten_bind_TiledSpriteObject_SetWidth_1=Module["_emscripten_bind_TiledSpriteObject_SetWidth_1"]=function(){return(_emscripten_bind_TiledSpriteObject_SetWidth_1=Module["_emscripten_bind_TiledSpriteObject_SetWidth_1"]=Module["asm"]["_$"]).apply(null,arguments)};var _emscripten_bind_TiledSpriteObject_GetWidth_0=Module["_emscripten_bind_TiledSpriteObject_GetWidth_0"]=function(){return(_emscripten_bind_TiledSpriteObject_GetWidth_0=Module["_emscripten_bind_TiledSpriteObject_GetWidth_0"]=Module["asm"]["$$"]).apply(null,arguments)};var _emscripten_bind_TiledSpriteObject_SetHeight_1=Module["_emscripten_bind_TiledSpriteObject_SetHeight_1"]=function(){return(_emscripten_bind_TiledSpriteObject_SetHeight_1=Module["_emscripten_bind_TiledSpriteObject_SetHeight_1"]=Module["asm"]["a0"]).apply(null,arguments)};var _emscripten_bind_TiledSpriteObject_GetHeight_0=Module["_emscripten_bind_TiledSpriteObject_GetHeight_0"]=function(){return(_emscripten_bind_TiledSpriteObject_GetHeight_0=Module["_emscripten_bind_TiledSpriteObject_GetHeight_0"]=Module["asm"]["b0"]).apply(null,arguments)};var _emscripten_bind_TiledSpriteObject_GetType_0=Module["_emscripten_bind_TiledSpriteObject_GetType_0"]=function(){return(_emscripten_bind_TiledSpriteObject_GetType_0=Module["_emscripten_bind_TiledSpriteObject_GetType_0"]=Module["asm"]["c0"]).apply(null,arguments)};var _emscripten_bind_TiledSpriteObject_SetType_1=Module["_emscripten_bind_TiledSpriteObject_SetType_1"]=function(){return(_emscripten_bind_TiledSpriteObject_SetType_1=Module["_emscripten_bind_TiledSpriteObject_SetType_1"]=Module["asm"]["d0"]).apply(null,arguments)};var _emscripten_bind_TiledSpriteObject_ExposeResources_1=Module["_emscripten_bind_TiledSpriteObject_ExposeResources_1"]=function(){return(_emscripten_bind_TiledSpriteObject_ExposeResources_1=Module["_emscripten_bind_TiledSpriteObject_ExposeResources_1"]=Module["asm"]["e0"]).apply(null,arguments)};var _emscripten_bind_TiledSpriteObject_SerializeTo_1=Module["_emscripten_bind_TiledSpriteObject_SerializeTo_1"]=function(){return(_emscripten_bind_TiledSpriteObject_SerializeTo_1=Module["_emscripten_bind_TiledSpriteObject_SerializeTo_1"]=Module["asm"]["f0"]).apply(null,arguments)};var _emscripten_bind_TiledSpriteObject_UnserializeFrom_2=Module["_emscripten_bind_TiledSpriteObject_UnserializeFrom_2"]=function(){return(_emscripten_bind_TiledSpriteObject_UnserializeFrom_2=Module["_emscripten_bind_TiledSpriteObject_UnserializeFrom_2"]=Module["asm"]["g0"]).apply(null,arguments)};var _emscripten_bind_TiledSpriteObject_GetAnimationName_1=Module["_emscripten_bind_TiledSpriteObject_GetAnimationName_1"]=function(){return(_emscripten_bind_TiledSpriteObject_GetAnimationName_1=Module["_emscripten_bind_TiledSpriteObject_GetAnimationName_1"]=Module["asm"]["h0"]).apply(null,arguments)};var _emscripten_bind_TiledSpriteObject___destroy___0=Module["_emscripten_bind_TiledSpriteObject___destroy___0"]=function(){return(_emscripten_bind_TiledSpriteObject___destroy___0=Module["_emscripten_bind_TiledSpriteObject___destroy___0"]=Module["asm"]["i0"]).apply(null,arguments)};var _emscripten_bind_PanelSpriteObject_PanelSpriteObject_0=Module["_emscripten_bind_PanelSpriteObject_PanelSpriteObject_0"]=function(){return(_emscripten_bind_PanelSpriteObject_PanelSpriteObject_0=Module["_emscripten_bind_PanelSpriteObject_PanelSpriteObject_0"]=Module["asm"]["j0"]).apply(null,arguments)};var _emscripten_bind_PanelSpriteObject_GetLeftMargin_0=Module["_emscripten_bind_PanelSpriteObject_GetLeftMargin_0"]=function(){return(_emscripten_bind_PanelSpriteObject_GetLeftMargin_0=Module["_emscripten_bind_PanelSpriteObject_GetLeftMargin_0"]=Module["asm"]["k0"]).apply(null,arguments)};var _emscripten_bind_PanelSpriteObject_SetLeftMargin_1=Module["_emscripten_bind_PanelSpriteObject_SetLeftMargin_1"]=function(){return(_emscripten_bind_PanelSpriteObject_SetLeftMargin_1=Module["_emscripten_bind_PanelSpriteObject_SetLeftMargin_1"]=Module["asm"]["l0"]).apply(null,arguments)};var _emscripten_bind_PanelSpriteObject_GetTopMargin_0=Module["_emscripten_bind_PanelSpriteObject_GetTopMargin_0"]=function(){return(_emscripten_bind_PanelSpriteObject_GetTopMargin_0=Module["_emscripten_bind_PanelSpriteObject_GetTopMargin_0"]=Module["asm"]["m0"]).apply(null,arguments)};var _emscripten_bind_PanelSpriteObject_SetTopMargin_1=Module["_emscripten_bind_PanelSpriteObject_SetTopMargin_1"]=function(){return(_emscripten_bind_PanelSpriteObject_SetTopMargin_1=Module["_emscripten_bind_PanelSpriteObject_SetTopMargin_1"]=Module["asm"]["n0"]).apply(null,arguments)};var _emscripten_bind_PanelSpriteObject_GetRightMargin_0=Module["_emscripten_bind_PanelSpriteObject_GetRightMargin_0"]=function(){return(_emscripten_bind_PanelSpriteObject_GetRightMargin_0=Module["_emscripten_bind_PanelSpriteObject_GetRightMargin_0"]=Module["asm"]["o0"]).apply(null,arguments)};var _emscripten_bind_PanelSpriteObject_SetRightMargin_1=Module["_emscripten_bind_PanelSpriteObject_SetRightMargin_1"]=function(){return(_emscripten_bind_PanelSpriteObject_SetRightMargin_1=Module["_emscripten_bind_PanelSpriteObject_SetRightMargin_1"]=Module["asm"]["p0"]).apply(null,arguments)};var _emscripten_bind_PanelSpriteObject_GetBottomMargin_0=Module["_emscripten_bind_PanelSpriteObject_GetBottomMargin_0"]=function(){return(_emscripten_bind_PanelSpriteObject_GetBottomMargin_0=Module["_emscripten_bind_PanelSpriteObject_GetBottomMargin_0"]=Module["asm"]["q0"]).apply(null,arguments)};var _emscripten_bind_PanelSpriteObject_SetBottomMargin_1=Module["_emscripten_bind_PanelSpriteObject_SetBottomMargin_1"]=function(){return(_emscripten_bind_PanelSpriteObject_SetBottomMargin_1=Module["_emscripten_bind_PanelSpriteObject_SetBottomMargin_1"]=Module["asm"]["r0"]).apply(null,arguments)};var _emscripten_bind_PanelSpriteObject_IsTiled_0=Module["_emscripten_bind_PanelSpriteObject_IsTiled_0"]=function(){return(_emscripten_bind_PanelSpriteObject_IsTiled_0=Module["_emscripten_bind_PanelSpriteObject_IsTiled_0"]=Module["asm"]["s0"]).apply(null,arguments)};var _emscripten_bind_PanelSpriteObject_SetTiled_1=Module["_emscripten_bind_PanelSpriteObject_SetTiled_1"]=function(){return(_emscripten_bind_PanelSpriteObject_SetTiled_1=Module["_emscripten_bind_PanelSpriteObject_SetTiled_1"]=Module["asm"]["t0"]).apply(null,arguments)};var _emscripten_bind_PanelSpriteObject_SetTexture_1=Module["_emscripten_bind_PanelSpriteObject_SetTexture_1"]=function(){return(_emscripten_bind_PanelSpriteObject_SetTexture_1=Module["_emscripten_bind_PanelSpriteObject_SetTexture_1"]=Module["asm"]["u0"]).apply(null,arguments)};var _emscripten_bind_PanelSpriteObject_GetTexture_0=Module["_emscripten_bind_PanelSpriteObject_GetTexture_0"]=function(){return(_emscripten_bind_PanelSpriteObject_GetTexture_0=Module["_emscripten_bind_PanelSpriteObject_GetTexture_0"]=Module["asm"]["v0"]).apply(null,arguments)};var _emscripten_bind_PanelSpriteObject_SetWidth_1=Module["_emscripten_bind_PanelSpriteObject_SetWidth_1"]=function(){return(_emscripten_bind_PanelSpriteObject_SetWidth_1=Module["_emscripten_bind_PanelSpriteObject_SetWidth_1"]=Module["asm"]["w0"]).apply(null,arguments)};var _emscripten_bind_PanelSpriteObject_GetWidth_0=Module["_emscripten_bind_PanelSpriteObject_GetWidth_0"]=function(){return(_emscripten_bind_PanelSpriteObject_GetWidth_0=Module["_emscripten_bind_PanelSpriteObject_GetWidth_0"]=Module["asm"]["x0"]).apply(null,arguments)};var _emscripten_bind_PanelSpriteObject_SetHeight_1=Module["_emscripten_bind_PanelSpriteObject_SetHeight_1"]=function(){return(_emscripten_bind_PanelSpriteObject_SetHeight_1=Module["_emscripten_bind_PanelSpriteObject_SetHeight_1"]=Module["asm"]["y0"]).apply(null,arguments)};var _emscripten_bind_PanelSpriteObject_GetHeight_0=Module["_emscripten_bind_PanelSpriteObject_GetHeight_0"]=function(){return(_emscripten_bind_PanelSpriteObject_GetHeight_0=Module["_emscripten_bind_PanelSpriteObject_GetHeight_0"]=Module["asm"]["z0"]).apply(null,arguments)};var _emscripten_bind_PanelSpriteObject_GetType_0=Module["_emscripten_bind_PanelSpriteObject_GetType_0"]=function(){return(_emscripten_bind_PanelSpriteObject_GetType_0=Module["_emscripten_bind_PanelSpriteObject_GetType_0"]=Module["asm"]["A0"]).apply(null,arguments)};var _emscripten_bind_PanelSpriteObject_SetType_1=Module["_emscripten_bind_PanelSpriteObject_SetType_1"]=function(){return(_emscripten_bind_PanelSpriteObject_SetType_1=Module["_emscripten_bind_PanelSpriteObject_SetType_1"]=Module["asm"]["B0"]).apply(null,arguments)};var _emscripten_bind_PanelSpriteObject_ExposeResources_1=Module["_emscripten_bind_PanelSpriteObject_ExposeResources_1"]=function(){return(_emscripten_bind_PanelSpriteObject_ExposeResources_1=Module["_emscripten_bind_PanelSpriteObject_ExposeResources_1"]=Module["asm"]["C0"]).apply(null,arguments)};var _emscripten_bind_PanelSpriteObject_SerializeTo_1=Module["_emscripten_bind_PanelSpriteObject_SerializeTo_1"]=function(){return(_emscripten_bind_PanelSpriteObject_SerializeTo_1=Module["_emscripten_bind_PanelSpriteObject_SerializeTo_1"]=Module["asm"]["D0"]).apply(null,arguments)};var _emscripten_bind_PanelSpriteObject_UnserializeFrom_2=Module["_emscripten_bind_PanelSpriteObject_UnserializeFrom_2"]=function(){return(_emscripten_bind_PanelSpriteObject_UnserializeFrom_2=Module["_emscripten_bind_PanelSpriteObject_UnserializeFrom_2"]=Module["asm"]["E0"]).apply(null,arguments)};var _emscripten_bind_PanelSpriteObject_GetAnimationName_1=Module["_emscripten_bind_PanelSpriteObject_GetAnimationName_1"]=function(){return(_emscripten_bind_PanelSpriteObject_GetAnimationName_1=Module["_emscripten_bind_PanelSpriteObject_GetAnimationName_1"]=Module["asm"]["F0"]).apply(null,arguments)};var _emscripten_bind_PanelSpriteObject___destroy___0=Module["_emscripten_bind_PanelSpriteObject___destroy___0"]=function(){return(_emscripten_bind_PanelSpriteObject___destroy___0=Module["_emscripten_bind_PanelSpriteObject___destroy___0"]=Module["asm"]["G0"]).apply(null,arguments)};var _emscripten_bind_ShapePainterObject_ShapePainterObject_0=Module["_emscripten_bind_ShapePainterObject_ShapePainterObject_0"]=function(){return(_emscripten_bind_ShapePainterObject_ShapePainterObject_0=Module["_emscripten_bind_ShapePainterObject_ShapePainterObject_0"]=Module["asm"]["H0"]).apply(null,arguments)};var _emscripten_bind_ShapePainterObject_SetCoordinatesAbsolute_0=Module["_emscripten_bind_ShapePainterObject_SetCoordinatesAbsolute_0"]=function(){return(_emscripten_bind_ShapePainterObject_SetCoordinatesAbsolute_0=Module["_emscripten_bind_ShapePainterObject_SetCoordinatesAbsolute_0"]=Module["asm"]["I0"]).apply(null,arguments)};var _emscripten_bind_ShapePainterObject_SetCoordinatesRelative_0=Module["_emscripten_bind_ShapePainterObject_SetCoordinatesRelative_0"]=function(){return(_emscripten_bind_ShapePainterObject_SetCoordinatesRelative_0=Module["_emscripten_bind_ShapePainterObject_SetCoordinatesRelative_0"]=Module["asm"]["J0"]).apply(null,arguments)};var _emscripten_bind_ShapePainterObject_AreCoordinatesAbsolute_0=Module["_emscripten_bind_ShapePainterObject_AreCoordinatesAbsolute_0"]=function(){return(_emscripten_bind_ShapePainterObject_AreCoordinatesAbsolute_0=Module["_emscripten_bind_ShapePainterObject_AreCoordinatesAbsolute_0"]=Module["asm"]["K0"]).apply(null,arguments)};var _emscripten_bind_ShapePainterObject_SetClearBetweenFrames_1=Module["_emscripten_bind_ShapePainterObject_SetClearBetweenFrames_1"]=function(){return(_emscripten_bind_ShapePainterObject_SetClearBetweenFrames_1=Module["_emscripten_bind_ShapePainterObject_SetClearBetweenFrames_1"]=Module["asm"]["L0"]).apply(null,arguments)};var _emscripten_bind_ShapePainterObject_IsClearedBetweenFrames_0=Module["_emscripten_bind_ShapePainterObject_IsClearedBetweenFrames_0"]=function(){return(_emscripten_bind_ShapePainterObject_IsClearedBetweenFrames_0=Module["_emscripten_bind_ShapePainterObject_IsClearedBetweenFrames_0"]=Module["asm"]["M0"]).apply(null,arguments)};var _emscripten_bind_ShapePainterObject_SetOutlineSize_1=Module["_emscripten_bind_ShapePainterObject_SetOutlineSize_1"]=function(){return(_emscripten_bind_ShapePainterObject_SetOutlineSize_1=Module["_emscripten_bind_ShapePainterObject_SetOutlineSize_1"]=Module["asm"]["N0"]).apply(null,arguments)};var _emscripten_bind_ShapePainterObject_GetOutlineSize_0=Module["_emscripten_bind_ShapePainterObject_GetOutlineSize_0"]=function(){return(_emscripten_bind_ShapePainterObject_GetOutlineSize_0=Module["_emscripten_bind_ShapePainterObject_GetOutlineSize_0"]=Module["asm"]["O0"]).apply(null,arguments)};var _emscripten_bind_ShapePainterObject_SetOutlineColor_1=Module["_emscripten_bind_ShapePainterObject_SetOutlineColor_1"]=function(){return(_emscripten_bind_ShapePainterObject_SetOutlineColor_1=Module["_emscripten_bind_ShapePainterObject_SetOutlineColor_1"]=Module["asm"]["P0"]).apply(null,arguments)};var _emscripten_bind_ShapePainterObject_GetOutlineColor_0=Module["_emscripten_bind_ShapePainterObject_GetOutlineColor_0"]=function(){return(_emscripten_bind_ShapePainterObject_GetOutlineColor_0=Module["_emscripten_bind_ShapePainterObject_GetOutlineColor_0"]=Module["asm"]["Q0"]).apply(null,arguments)};var _emscripten_bind_ShapePainterObject_SetOutlineOpacity_1=Module["_emscripten_bind_ShapePainterObject_SetOutlineOpacity_1"]=function(){return(_emscripten_bind_ShapePainterObject_SetOutlineOpacity_1=Module["_emscripten_bind_ShapePainterObject_SetOutlineOpacity_1"]=Module["asm"]["R0"]).apply(null,arguments)};var _emscripten_bind_ShapePainterObject_GetOutlineOpacity_0=Module["_emscripten_bind_ShapePainterObject_GetOutlineOpacity_0"]=function(){return(_emscripten_bind_ShapePainterObject_GetOutlineOpacity_0=Module["_emscripten_bind_ShapePainterObject_GetOutlineOpacity_0"]=Module["asm"]["S0"]).apply(null,arguments)};var _emscripten_bind_ShapePainterObject_SetFillColor_1=Module["_emscripten_bind_ShapePainterObject_SetFillColor_1"]=function(){return(_emscripten_bind_ShapePainterObject_SetFillColor_1=Module["_emscripten_bind_ShapePainterObject_SetFillColor_1"]=Module["asm"]["T0"]).apply(null,arguments)};var _emscripten_bind_ShapePainterObject_GetFillColor_0=Module["_emscripten_bind_ShapePainterObject_GetFillColor_0"]=function(){return(_emscripten_bind_ShapePainterObject_GetFillColor_0=Module["_emscripten_bind_ShapePainterObject_GetFillColor_0"]=Module["asm"]["U0"]).apply(null,arguments)};var _emscripten_bind_ShapePainterObject_SetFillOpacity_1=Module["_emscripten_bind_ShapePainterObject_SetFillOpacity_1"]=function(){return(_emscripten_bind_ShapePainterObject_SetFillOpacity_1=Module["_emscripten_bind_ShapePainterObject_SetFillOpacity_1"]=Module["asm"]["V0"]).apply(null,arguments)};var _emscripten_bind_ShapePainterObject_GetFillOpacity_0=Module["_emscripten_bind_ShapePainterObject_GetFillOpacity_0"]=function(){return(_emscripten_bind_ShapePainterObject_GetFillOpacity_0=Module["_emscripten_bind_ShapePainterObject_GetFillOpacity_0"]=Module["asm"]["W0"]).apply(null,arguments)};var _emscripten_bind_ShapePainterObject_GetAntialiasing_0=Module["_emscripten_bind_ShapePainterObject_GetAntialiasing_0"]=function(){return(_emscripten_bind_ShapePainterObject_GetAntialiasing_0=Module["_emscripten_bind_ShapePainterObject_GetAntialiasing_0"]=Module["asm"]["X0"]).apply(null,arguments)};var _emscripten_bind_ShapePainterObject_SetAntialiasing_1=Module["_emscripten_bind_ShapePainterObject_SetAntialiasing_1"]=function(){return(_emscripten_bind_ShapePainterObject_SetAntialiasing_1=Module["_emscripten_bind_ShapePainterObject_SetAntialiasing_1"]=Module["asm"]["Y0"]).apply(null,arguments)};var _emscripten_bind_ShapePainterObject_GetType_0=Module["_emscripten_bind_ShapePainterObject_GetType_0"]=function(){return(_emscripten_bind_ShapePainterObject_GetType_0=Module["_emscripten_bind_ShapePainterObject_GetType_0"]=Module["asm"]["Z0"]).apply(null,arguments)};var _emscripten_bind_ShapePainterObject_SetType_1=Module["_emscripten_bind_ShapePainterObject_SetType_1"]=function(){return(_emscripten_bind_ShapePainterObject_SetType_1=Module["_emscripten_bind_ShapePainterObject_SetType_1"]=Module["asm"]["_0"]).apply(null,arguments)};var _emscripten_bind_ShapePainterObject_ExposeResources_1=Module["_emscripten_bind_ShapePainterObject_ExposeResources_1"]=function(){return(_emscripten_bind_ShapePainterObject_ExposeResources_1=Module["_emscripten_bind_ShapePainterObject_ExposeResources_1"]=Module["asm"]["$0"]).apply(null,arguments)};var _emscripten_bind_ShapePainterObject_SerializeTo_1=Module["_emscripten_bind_ShapePainterObject_SerializeTo_1"]=function(){return(_emscripten_bind_ShapePainterObject_SerializeTo_1=Module["_emscripten_bind_ShapePainterObject_SerializeTo_1"]=Module["asm"]["a1"]).apply(null,arguments)};var _emscripten_bind_ShapePainterObject_UnserializeFrom_2=Module["_emscripten_bind_ShapePainterObject_UnserializeFrom_2"]=function(){return(_emscripten_bind_ShapePainterObject_UnserializeFrom_2=Module["_emscripten_bind_ShapePainterObject_UnserializeFrom_2"]=Module["asm"]["b1"]).apply(null,arguments)};var _emscripten_bind_ShapePainterObject_GetAnimationName_1=Module["_emscripten_bind_ShapePainterObject_GetAnimationName_1"]=function(){return(_emscripten_bind_ShapePainterObject_GetAnimationName_1=Module["_emscripten_bind_ShapePainterObject_GetAnimationName_1"]=Module["asm"]["c1"]).apply(null,arguments)};var _emscripten_bind_ShapePainterObject___destroy___0=Module["_emscripten_bind_ShapePainterObject___destroy___0"]=function(){return(_emscripten_bind_ShapePainterObject___destroy___0=Module["_emscripten_bind_ShapePainterObject___destroy___0"]=Module["asm"]["d1"]).apply(null,arguments)};var _emscripten_bind_TextEntryObject_TextEntryObject_0=Module["_emscripten_bind_TextEntryObject_TextEntryObject_0"]=function(){return(_emscripten_bind_TextEntryObject_TextEntryObject_0=Module["_emscripten_bind_TextEntryObject_TextEntryObject_0"]=Module["asm"]["e1"]).apply(null,arguments)};var _emscripten_bind_TextEntryObject_GetType_0=Module["_emscripten_bind_TextEntryObject_GetType_0"]=function(){return(_emscripten_bind_TextEntryObject_GetType_0=Module["_emscripten_bind_TextEntryObject_GetType_0"]=Module["asm"]["f1"]).apply(null,arguments)};var _emscripten_bind_TextEntryObject_SetType_1=Module["_emscripten_bind_TextEntryObject_SetType_1"]=function(){return(_emscripten_bind_TextEntryObject_SetType_1=Module["_emscripten_bind_TextEntryObject_SetType_1"]=Module["asm"]["g1"]).apply(null,arguments)};var _emscripten_bind_TextEntryObject_ExposeResources_1=Module["_emscripten_bind_TextEntryObject_ExposeResources_1"]=function(){return(_emscripten_bind_TextEntryObject_ExposeResources_1=Module["_emscripten_bind_TextEntryObject_ExposeResources_1"]=Module["asm"]["h1"]).apply(null,arguments)};var _emscripten_bind_TextEntryObject_SerializeTo_1=Module["_emscripten_bind_TextEntryObject_SerializeTo_1"]=function(){return(_emscripten_bind_TextEntryObject_SerializeTo_1=Module["_emscripten_bind_TextEntryObject_SerializeTo_1"]=Module["asm"]["i1"]).apply(null,arguments)};var _emscripten_bind_TextEntryObject_UnserializeFrom_2=Module["_emscripten_bind_TextEntryObject_UnserializeFrom_2"]=function(){return(_emscripten_bind_TextEntryObject_UnserializeFrom_2=Module["_emscripten_bind_TextEntryObject_UnserializeFrom_2"]=Module["asm"]["j1"]).apply(null,arguments)};var _emscripten_bind_TextEntryObject_GetAnimationName_1=Module["_emscripten_bind_TextEntryObject_GetAnimationName_1"]=function(){return(_emscripten_bind_TextEntryObject_GetAnimationName_1=Module["_emscripten_bind_TextEntryObject_GetAnimationName_1"]=Module["asm"]["k1"]).apply(null,arguments)};var _emscripten_bind_TextEntryObject___destroy___0=Module["_emscripten_bind_TextEntryObject___destroy___0"]=function(){return(_emscripten_bind_TextEntryObject___destroy___0=Module["_emscripten_bind_TextEntryObject___destroy___0"]=Module["asm"]["l1"]).apply(null,arguments)};var _emscripten_bind_ParticleEmitterObject_ParticleEmitterObject_0=Module["_emscripten_bind_ParticleEmitterObject_ParticleEmitterObject_0"]=function(){return(_emscripten_bind_ParticleEmitterObject_ParticleEmitterObject_0=Module["_emscripten_bind_ParticleEmitterObject_ParticleEmitterObject_0"]=Module["asm"]["m1"]).apply(null,arguments)};var _emscripten_bind_ParticleEmitterObject_SetRendererType_1=Module["_emscripten_bind_ParticleEmitterObject_SetRendererType_1"]=function(){return(_emscripten_bind_ParticleEmitterObject_SetRendererType_1=Module["_emscripten_bind_ParticleEmitterObject_SetRendererType_1"]=Module["asm"]["n1"]).apply(null,arguments)};var _emscripten_bind_ParticleEmitterObject_GetRendererType_0=Module["_emscripten_bind_ParticleEmitterObject_GetRendererType_0"]=function(){return(_emscripten_bind_ParticleEmitterObject_GetRendererType_0=Module["_emscripten_bind_ParticleEmitterObject_GetRendererType_0"]=Module["asm"]["o1"]).apply(null,arguments)};var _emscripten_bind_ParticleEmitterObject_SetParticleTexture_1=Module["_emscripten_bind_ParticleEmitterObject_SetParticleTexture_1"]=function(){return(_emscripten_bind_ParticleEmitterObject_SetParticleTexture_1=Module["_emscripten_bind_ParticleEmitterObject_SetParticleTexture_1"]=Module["asm"]["p1"]).apply(null,arguments)};var _emscripten_bind_ParticleEmitterObject_GetParticleTexture_0=Module["_emscripten_bind_ParticleEmitterObject_GetParticleTexture_0"]=function(){return(_emscripten_bind_ParticleEmitterObject_GetParticleTexture_0=Module["_emscripten_bind_ParticleEmitterObject_GetParticleTexture_0"]=Module["asm"]["q1"]).apply(null,arguments)};var _emscripten_bind_ParticleEmitterObject_SetRendererParam1_1=Module["_emscripten_bind_ParticleEmitterObject_SetRendererParam1_1"]=function(){return(_emscripten_bind_ParticleEmitterObject_SetRendererParam1_1=Module["_emscripten_bind_ParticleEmitterObject_SetRendererParam1_1"]=Module["asm"]["r1"]).apply(null,arguments)};var _emscripten_bind_ParticleEmitterObject_GetRendererParam1_0=Module["_emscripten_bind_ParticleEmitterObject_GetRendererParam1_0"]=function(){return(_emscripten_bind_ParticleEmitterObject_GetRendererParam1_0=Module["_emscripten_bind_ParticleEmitterObject_GetRendererParam1_0"]=Module["asm"]["s1"]).apply(null,arguments)};var _emscripten_bind_ParticleEmitterObject_SetRendererParam2_1=Module["_emscripten_bind_ParticleEmitterObject_SetRendererParam2_1"]=function(){return(_emscripten_bind_ParticleEmitterObject_SetRendererParam2_1=Module["_emscripten_bind_ParticleEmitterObject_SetRendererParam2_1"]=Module["asm"]["t1"]).apply(null,arguments)};var _emscripten_bind_ParticleEmitterObject_GetRendererParam2_0=Module["_emscripten_bind_ParticleEmitterObject_GetRendererParam2_0"]=function(){return(_emscripten_bind_ParticleEmitterObject_GetRendererParam2_0=Module["_emscripten_bind_ParticleEmitterObject_GetRendererParam2_0"]=Module["asm"]["u1"]).apply(null,arguments)};var _emscripten_bind_ParticleEmitterObject_IsRenderingAdditive_0=Module["_emscripten_bind_ParticleEmitterObject_IsRenderingAdditive_0"]=function(){return(_emscripten_bind_ParticleEmitterObject_IsRenderingAdditive_0=Module["_emscripten_bind_ParticleEmitterObject_IsRenderingAdditive_0"]=Module["asm"]["v1"]).apply(null,arguments)};var _emscripten_bind_ParticleEmitterObject_SetRenderingAdditive_0=Module["_emscripten_bind_ParticleEmitterObject_SetRenderingAdditive_0"]=function(){return(_emscripten_bind_ParticleEmitterObject_SetRenderingAdditive_0=Module["_emscripten_bind_ParticleEmitterObject_SetRenderingAdditive_0"]=Module["asm"]["w1"]).apply(null,arguments)};var _emscripten_bind_ParticleEmitterObject_SetRenderingAlpha_0=Module["_emscripten_bind_ParticleEmitterObject_SetRenderingAlpha_0"]=function(){return(_emscripten_bind_ParticleEmitterObject_SetRenderingAlpha_0=Module["_emscripten_bind_ParticleEmitterObject_SetRenderingAlpha_0"]=Module["asm"]["x1"]).apply(null,arguments)};var _emscripten_bind_ParticleEmitterObject_SetMaxParticleNb_1=Module["_emscripten_bind_ParticleEmitterObject_SetMaxParticleNb_1"]=function(){return(_emscripten_bind_ParticleEmitterObject_SetMaxParticleNb_1=Module["_emscripten_bind_ParticleEmitterObject_SetMaxParticleNb_1"]=Module["asm"]["y1"]).apply(null,arguments)};var _emscripten_bind_ParticleEmitterObject_GetMaxParticleNb_0=Module["_emscripten_bind_ParticleEmitterObject_GetMaxParticleNb_0"]=function(){return(_emscripten_bind_ParticleEmitterObject_GetMaxParticleNb_0=Module["_emscripten_bind_ParticleEmitterObject_GetMaxParticleNb_0"]=Module["asm"]["z1"]).apply(null,arguments)};var _emscripten_bind_ParticleEmitterObject_SetTank_1=Module["_emscripten_bind_ParticleEmitterObject_SetTank_1"]=function(){return(_emscripten_bind_ParticleEmitterObject_SetTank_1=Module["_emscripten_bind_ParticleEmitterObject_SetTank_1"]=Module["asm"]["A1"]).apply(null,arguments)};var _emscripten_bind_ParticleEmitterObject_GetTank_0=Module["_emscripten_bind_ParticleEmitterObject_GetTank_0"]=function(){return(_emscripten_bind_ParticleEmitterObject_GetTank_0=Module["_emscripten_bind_ParticleEmitterObject_GetTank_0"]=Module["asm"]["B1"]).apply(null,arguments)};var _emscripten_bind_ParticleEmitterObject_SetFlow_1=Module["_emscripten_bind_ParticleEmitterObject_SetFlow_1"]=function(){return(_emscripten_bind_ParticleEmitterObject_SetFlow_1=Module["_emscripten_bind_ParticleEmitterObject_SetFlow_1"]=Module["asm"]["C1"]).apply(null,arguments)};var _emscripten_bind_ParticleEmitterObject_GetFlow_0=Module["_emscripten_bind_ParticleEmitterObject_GetFlow_0"]=function(){return(_emscripten_bind_ParticleEmitterObject_GetFlow_0=Module["_emscripten_bind_ParticleEmitterObject_GetFlow_0"]=Module["asm"]["D1"]).apply(null,arguments)};var _emscripten_bind_ParticleEmitterObject_SetDestroyWhenNoParticles_1=Module["_emscripten_bind_ParticleEmitterObject_SetDestroyWhenNoParticles_1"]=function(){return(_emscripten_bind_ParticleEmitterObject_SetDestroyWhenNoParticles_1=Module["_emscripten_bind_ParticleEmitterObject_SetDestroyWhenNoParticles_1"]=Module["asm"]["E1"]).apply(null,arguments)};var _emscripten_bind_ParticleEmitterObject_GetDestroyWhenNoParticles_0=Module["_emscripten_bind_ParticleEmitterObject_GetDestroyWhenNoParticles_0"]=function(){return(_emscripten_bind_ParticleEmitterObject_GetDestroyWhenNoParticles_0=Module["_emscripten_bind_ParticleEmitterObject_GetDestroyWhenNoParticles_0"]=Module["asm"]["F1"]).apply(null,arguments)};var _emscripten_bind_ParticleEmitterObject_SetEmitterForceMin_1=Module["_emscripten_bind_ParticleEmitterObject_SetEmitterForceMin_1"]=function(){return(_emscripten_bind_ParticleEmitterObject_SetEmitterForceMin_1=Module["_emscripten_bind_ParticleEmitterObject_SetEmitterForceMin_1"]=Module["asm"]["G1"]).apply(null,arguments)};var _emscripten_bind_ParticleEmitterObject_GetEmitterForceMin_0=Module["_emscripten_bind_ParticleEmitterObject_GetEmitterForceMin_0"]=function(){return(_emscripten_bind_ParticleEmitterObject_GetEmitterForceMin_0=Module["_emscripten_bind_ParticleEmitterObject_GetEmitterForceMin_0"]=Module["asm"]["H1"]).apply(null,arguments)};var _emscripten_bind_ParticleEmitterObject_SetEmitterForceMax_1=Module["_emscripten_bind_ParticleEmitterObject_SetEmitterForceMax_1"]=function(){return(_emscripten_bind_ParticleEmitterObject_SetEmitterForceMax_1=Module["_emscripten_bind_ParticleEmitterObject_SetEmitterForceMax_1"]=Module["asm"]["I1"]).apply(null,arguments)};var _emscripten_bind_ParticleEmitterObject_GetEmitterForceMax_0=Module["_emscripten_bind_ParticleEmitterObject_GetEmitterForceMax_0"]=function(){return(_emscripten_bind_ParticleEmitterObject_GetEmitterForceMax_0=Module["_emscripten_bind_ParticleEmitterObject_GetEmitterForceMax_0"]=Module["asm"]["J1"]).apply(null,arguments)};var _emscripten_bind_ParticleEmitterObject_SetConeSprayAngle_1=Module["_emscripten_bind_ParticleEmitterObject_SetConeSprayAngle_1"]=function(){return(_emscripten_bind_ParticleEmitterObject_SetConeSprayAngle_1=Module["_emscripten_bind_ParticleEmitterObject_SetConeSprayAngle_1"]=Module["asm"]["K1"]).apply(null,arguments)};var _emscripten_bind_ParticleEmitterObject_GetConeSprayAngle_0=Module["_emscripten_bind_ParticleEmitterObject_GetConeSprayAngle_0"]=function(){return(_emscripten_bind_ParticleEmitterObject_GetConeSprayAngle_0=Module["_emscripten_bind_ParticleEmitterObject_GetConeSprayAngle_0"]=Module["asm"]["L1"]).apply(null,arguments)};var _emscripten_bind_ParticleEmitterObject_SetZoneRadius_1=Module["_emscripten_bind_ParticleEmitterObject_SetZoneRadius_1"]=function(){return(_emscripten_bind_ParticleEmitterObject_SetZoneRadius_1=Module["_emscripten_bind_ParticleEmitterObject_SetZoneRadius_1"]=Module["asm"]["M1"]).apply(null,arguments)};var _emscripten_bind_ParticleEmitterObject_GetZoneRadius_0=Module["_emscripten_bind_ParticleEmitterObject_GetZoneRadius_0"]=function(){return(_emscripten_bind_ParticleEmitterObject_GetZoneRadius_0=Module["_emscripten_bind_ParticleEmitterObject_GetZoneRadius_0"]=Module["asm"]["N1"]).apply(null,arguments)};var _emscripten_bind_ParticleEmitterObject_SetParticleGravityX_1=Module["_emscripten_bind_ParticleEmitterObject_SetParticleGravityX_1"]=function(){return(_emscripten_bind_ParticleEmitterObject_SetParticleGravityX_1=Module["_emscripten_bind_ParticleEmitterObject_SetParticleGravityX_1"]=Module["asm"]["O1"]).apply(null,arguments)};var _emscripten_bind_ParticleEmitterObject_GetParticleGravityX_0=Module["_emscripten_bind_ParticleEmitterObject_GetParticleGravityX_0"]=function(){return(_emscripten_bind_ParticleEmitterObject_GetParticleGravityX_0=Module["_emscripten_bind_ParticleEmitterObject_GetParticleGravityX_0"]=Module["asm"]["P1"]).apply(null,arguments)};var _emscripten_bind_ParticleEmitterObject_SetParticleGravityY_1=Module["_emscripten_bind_ParticleEmitterObject_SetParticleGravityY_1"]=function(){return(_emscripten_bind_ParticleEmitterObject_SetParticleGravityY_1=Module["_emscripten_bind_ParticleEmitterObject_SetParticleGravityY_1"]=Module["asm"]["Q1"]).apply(null,arguments)};var _emscripten_bind_ParticleEmitterObject_GetParticleGravityY_0=Module["_emscripten_bind_ParticleEmitterObject_GetParticleGravityY_0"]=function(){return(_emscripten_bind_ParticleEmitterObject_GetParticleGravityY_0=Module["_emscripten_bind_ParticleEmitterObject_GetParticleGravityY_0"]=Module["asm"]["R1"]).apply(null,arguments)};var _emscripten_bind_ParticleEmitterObject_SetParticleGravityAngle_1=Module["_emscripten_bind_ParticleEmitterObject_SetParticleGravityAngle_1"]=function(){return(_emscripten_bind_ParticleEmitterObject_SetParticleGravityAngle_1=Module["_emscripten_bind_ParticleEmitterObject_SetParticleGravityAngle_1"]=Module["asm"]["S1"]).apply(null,arguments)};var _emscripten_bind_ParticleEmitterObject_GetParticleGravityAngle_0=Module["_emscripten_bind_ParticleEmitterObject_GetParticleGravityAngle_0"]=function(){return(_emscripten_bind_ParticleEmitterObject_GetParticleGravityAngle_0=Module["_emscripten_bind_ParticleEmitterObject_GetParticleGravityAngle_0"]=Module["asm"]["T1"]).apply(null,arguments)};var _emscripten_bind_ParticleEmitterObject_SetParticleGravityLength_1=Module["_emscripten_bind_ParticleEmitterObject_SetParticleGravityLength_1"]=function(){return(_emscripten_bind_ParticleEmitterObject_SetParticleGravityLength_1=Module["_emscripten_bind_ParticleEmitterObject_SetParticleGravityLength_1"]=Module["asm"]["U1"]).apply(null,arguments)};var _emscripten_bind_ParticleEmitterObject_GetParticleGravityLength_0=Module["_emscripten_bind_ParticleEmitterObject_GetParticleGravityLength_0"]=function(){return(_emscripten_bind_ParticleEmitterObject_GetParticleGravityLength_0=Module["_emscripten_bind_ParticleEmitterObject_GetParticleGravityLength_0"]=Module["asm"]["V1"]).apply(null,arguments)};var _emscripten_bind_ParticleEmitterObject_SetParticleLifeTimeMin_1=Module["_emscripten_bind_ParticleEmitterObject_SetParticleLifeTimeMin_1"]=function(){return(_emscripten_bind_ParticleEmitterObject_SetParticleLifeTimeMin_1=Module["_emscripten_bind_ParticleEmitterObject_SetParticleLifeTimeMin_1"]=Module["asm"]["W1"]).apply(null,arguments)};var _emscripten_bind_ParticleEmitterObject_GetParticleLifeTimeMin_0=Module["_emscripten_bind_ParticleEmitterObject_GetParticleLifeTimeMin_0"]=function(){return(_emscripten_bind_ParticleEmitterObject_GetParticleLifeTimeMin_0=Module["_emscripten_bind_ParticleEmitterObject_GetParticleLifeTimeMin_0"]=Module["asm"]["X1"]).apply(null,arguments)};var _emscripten_bind_ParticleEmitterObject_SetParticleLifeTimeMax_1=Module["_emscripten_bind_ParticleEmitterObject_SetParticleLifeTimeMax_1"]=function(){return(_emscripten_bind_ParticleEmitterObject_SetParticleLifeTimeMax_1=Module["_emscripten_bind_ParticleEmitterObject_SetParticleLifeTimeMax_1"]=Module["asm"]["Y1"]).apply(null,arguments)};var _emscripten_bind_ParticleEmitterObject_GetParticleLifeTimeMax_0=Module["_emscripten_bind_ParticleEmitterObject_GetParticleLifeTimeMax_0"]=function(){return(_emscripten_bind_ParticleEmitterObject_GetParticleLifeTimeMax_0=Module["_emscripten_bind_ParticleEmitterObject_GetParticleLifeTimeMax_0"]=Module["asm"]["Z1"]).apply(null,arguments)};var _emscripten_bind_ParticleEmitterObject_SetParticleColor1_1=Module["_emscripten_bind_ParticleEmitterObject_SetParticleColor1_1"]=function(){return(_emscripten_bind_ParticleEmitterObject_SetParticleColor1_1=Module["_emscripten_bind_ParticleEmitterObject_SetParticleColor1_1"]=Module["asm"]["_1"]).apply(null,arguments)};var _emscripten_bind_ParticleEmitterObject_GetParticleColor1_0=Module["_emscripten_bind_ParticleEmitterObject_GetParticleColor1_0"]=function(){return(_emscripten_bind_ParticleEmitterObject_GetParticleColor1_0=Module["_emscripten_bind_ParticleEmitterObject_GetParticleColor1_0"]=Module["asm"]["$1"]).apply(null,arguments)};var _emscripten_bind_ParticleEmitterObject_SetParticleColor2_1=Module["_emscripten_bind_ParticleEmitterObject_SetParticleColor2_1"]=function(){return(_emscripten_bind_ParticleEmitterObject_SetParticleColor2_1=Module["_emscripten_bind_ParticleEmitterObject_SetParticleColor2_1"]=Module["asm"]["a2"]).apply(null,arguments)};var _emscripten_bind_ParticleEmitterObject_GetParticleColor2_0=Module["_emscripten_bind_ParticleEmitterObject_GetParticleColor2_0"]=function(){return(_emscripten_bind_ParticleEmitterObject_GetParticleColor2_0=Module["_emscripten_bind_ParticleEmitterObject_GetParticleColor2_0"]=Module["asm"]["b2"]).apply(null,arguments)};var _emscripten_bind_ParticleEmitterObject_SetParticleAlpha1_1=Module["_emscripten_bind_ParticleEmitterObject_SetParticleAlpha1_1"]=function(){return(_emscripten_bind_ParticleEmitterObject_SetParticleAlpha1_1=Module["_emscripten_bind_ParticleEmitterObject_SetParticleAlpha1_1"]=Module["asm"]["c2"]).apply(null,arguments)};var _emscripten_bind_ParticleEmitterObject_GetParticleAlpha1_0=Module["_emscripten_bind_ParticleEmitterObject_GetParticleAlpha1_0"]=function(){return(_emscripten_bind_ParticleEmitterObject_GetParticleAlpha1_0=Module["_emscripten_bind_ParticleEmitterObject_GetParticleAlpha1_0"]=Module["asm"]["d2"]).apply(null,arguments)};var _emscripten_bind_ParticleEmitterObject_SetParticleAlpha2_1=Module["_emscripten_bind_ParticleEmitterObject_SetParticleAlpha2_1"]=function(){return(_emscripten_bind_ParticleEmitterObject_SetParticleAlpha2_1=Module["_emscripten_bind_ParticleEmitterObject_SetParticleAlpha2_1"]=Module["asm"]["e2"]).apply(null,arguments)};var _emscripten_bind_ParticleEmitterObject_GetParticleAlpha2_0=Module["_emscripten_bind_ParticleEmitterObject_GetParticleAlpha2_0"]=function(){return(_emscripten_bind_ParticleEmitterObject_GetParticleAlpha2_0=Module["_emscripten_bind_ParticleEmitterObject_GetParticleAlpha2_0"]=Module["asm"]["f2"]).apply(null,arguments)};var _emscripten_bind_ParticleEmitterObject_SetParticleSize1_1=Module["_emscripten_bind_ParticleEmitterObject_SetParticleSize1_1"]=function(){return(_emscripten_bind_ParticleEmitterObject_SetParticleSize1_1=Module["_emscripten_bind_ParticleEmitterObject_SetParticleSize1_1"]=Module["asm"]["g2"]).apply(null,arguments)};var _emscripten_bind_ParticleEmitterObject_GetParticleSize1_0=Module["_emscripten_bind_ParticleEmitterObject_GetParticleSize1_0"]=function(){return(_emscripten_bind_ParticleEmitterObject_GetParticleSize1_0=Module["_emscripten_bind_ParticleEmitterObject_GetParticleSize1_0"]=Module["asm"]["h2"]).apply(null,arguments)};var _emscripten_bind_ParticleEmitterObject_SetParticleSize2_1=Module["_emscripten_bind_ParticleEmitterObject_SetParticleSize2_1"]=function(){return(_emscripten_bind_ParticleEmitterObject_SetParticleSize2_1=Module["_emscripten_bind_ParticleEmitterObject_SetParticleSize2_1"]=Module["asm"]["i2"]).apply(null,arguments)};var _emscripten_bind_ParticleEmitterObject_GetParticleSize2_0=Module["_emscripten_bind_ParticleEmitterObject_GetParticleSize2_0"]=function(){return(_emscripten_bind_ParticleEmitterObject_GetParticleSize2_0=Module["_emscripten_bind_ParticleEmitterObject_GetParticleSize2_0"]=Module["asm"]["j2"]).apply(null,arguments)};var _emscripten_bind_ParticleEmitterObject_SetParticleAngle1_1=Module["_emscripten_bind_ParticleEmitterObject_SetParticleAngle1_1"]=function(){return(_emscripten_bind_ParticleEmitterObject_SetParticleAngle1_1=Module["_emscripten_bind_ParticleEmitterObject_SetParticleAngle1_1"]=Module["asm"]["k2"]).apply(null,arguments)};var _emscripten_bind_ParticleEmitterObject_GetParticleAngle1_0=Module["_emscripten_bind_ParticleEmitterObject_GetParticleAngle1_0"]=function(){return(_emscripten_bind_ParticleEmitterObject_GetParticleAngle1_0=Module["_emscripten_bind_ParticleEmitterObject_GetParticleAngle1_0"]=Module["asm"]["l2"]).apply(null,arguments)};var _emscripten_bind_ParticleEmitterObject_SetParticleAngle2_1=Module["_emscripten_bind_ParticleEmitterObject_SetParticleAngle2_1"]=function(){return(_emscripten_bind_ParticleEmitterObject_SetParticleAngle2_1=Module["_emscripten_bind_ParticleEmitterObject_SetParticleAngle2_1"]=Module["asm"]["m2"]).apply(null,arguments)};var _emscripten_bind_ParticleEmitterObject_GetParticleAngle2_0=Module["_emscripten_bind_ParticleEmitterObject_GetParticleAngle2_0"]=function(){return(_emscripten_bind_ParticleEmitterObject_GetParticleAngle2_0=Module["_emscripten_bind_ParticleEmitterObject_GetParticleAngle2_0"]=Module["asm"]["n2"]).apply(null,arguments)};var _emscripten_bind_ParticleEmitterObject_SetParticleAlphaRandomness1_1=Module["_emscripten_bind_ParticleEmitterObject_SetParticleAlphaRandomness1_1"]=function(){return(_emscripten_bind_ParticleEmitterObject_SetParticleAlphaRandomness1_1=Module["_emscripten_bind_ParticleEmitterObject_SetParticleAlphaRandomness1_1"]=Module["asm"]["o2"]).apply(null,arguments)};var _emscripten_bind_ParticleEmitterObject_GetParticleAlphaRandomness1_0=Module["_emscripten_bind_ParticleEmitterObject_GetParticleAlphaRandomness1_0"]=function(){return(_emscripten_bind_ParticleEmitterObject_GetParticleAlphaRandomness1_0=Module["_emscripten_bind_ParticleEmitterObject_GetParticleAlphaRandomness1_0"]=Module["asm"]["p2"]).apply(null,arguments)};var _emscripten_bind_ParticleEmitterObject_SetParticleAlphaRandomness2_1=Module["_emscripten_bind_ParticleEmitterObject_SetParticleAlphaRandomness2_1"]=function(){return(_emscripten_bind_ParticleEmitterObject_SetParticleAlphaRandomness2_1=Module["_emscripten_bind_ParticleEmitterObject_SetParticleAlphaRandomness2_1"]=Module["asm"]["q2"]).apply(null,arguments)};var _emscripten_bind_ParticleEmitterObject_GetParticleAlphaRandomness2_0=Module["_emscripten_bind_ParticleEmitterObject_GetParticleAlphaRandomness2_0"]=function(){return(_emscripten_bind_ParticleEmitterObject_GetParticleAlphaRandomness2_0=Module["_emscripten_bind_ParticleEmitterObject_GetParticleAlphaRandomness2_0"]=Module["asm"]["r2"]).apply(null,arguments)};var _emscripten_bind_ParticleEmitterObject_SetParticleSizeRandomness1_1=Module["_emscripten_bind_ParticleEmitterObject_SetParticleSizeRandomness1_1"]=function(){return(_emscripten_bind_ParticleEmitterObject_SetParticleSizeRandomness1_1=Module["_emscripten_bind_ParticleEmitterObject_SetParticleSizeRandomness1_1"]=Module["asm"]["s2"]).apply(null,arguments)};var _emscripten_bind_ParticleEmitterObject_GetParticleSizeRandomness1_0=Module["_emscripten_bind_ParticleEmitterObject_GetParticleSizeRandomness1_0"]=function(){return(_emscripten_bind_ParticleEmitterObject_GetParticleSizeRandomness1_0=Module["_emscripten_bind_ParticleEmitterObject_GetParticleSizeRandomness1_0"]=Module["asm"]["t2"]).apply(null,arguments)};var _emscripten_bind_ParticleEmitterObject_SetParticleSizeRandomness2_1=Module["_emscripten_bind_ParticleEmitterObject_SetParticleSizeRandomness2_1"]=function(){return(_emscripten_bind_ParticleEmitterObject_SetParticleSizeRandomness2_1=Module["_emscripten_bind_ParticleEmitterObject_SetParticleSizeRandomness2_1"]=Module["asm"]["u2"]).apply(null,arguments)};var _emscripten_bind_ParticleEmitterObject_GetParticleSizeRandomness2_0=Module["_emscripten_bind_ParticleEmitterObject_GetParticleSizeRandomness2_0"]=function(){return(_emscripten_bind_ParticleEmitterObject_GetParticleSizeRandomness2_0=Module["_emscripten_bind_ParticleEmitterObject_GetParticleSizeRandomness2_0"]=Module["asm"]["v2"]).apply(null,arguments)};var _emscripten_bind_ParticleEmitterObject_SetParticleAngleRandomness1_1=Module["_emscripten_bind_ParticleEmitterObject_SetParticleAngleRandomness1_1"]=function(){return(_emscripten_bind_ParticleEmitterObject_SetParticleAngleRandomness1_1=Module["_emscripten_bind_ParticleEmitterObject_SetParticleAngleRandomness1_1"]=Module["asm"]["w2"]).apply(null,arguments)};var _emscripten_bind_ParticleEmitterObject_GetParticleAngleRandomness1_0=Module["_emscripten_bind_ParticleEmitterObject_GetParticleAngleRandomness1_0"]=function(){return(_emscripten_bind_ParticleEmitterObject_GetParticleAngleRandomness1_0=Module["_emscripten_bind_ParticleEmitterObject_GetParticleAngleRandomness1_0"]=Module["asm"]["x2"]).apply(null,arguments)};var _emscripten_bind_ParticleEmitterObject_SetParticleAngleRandomness2_1=Module["_emscripten_bind_ParticleEmitterObject_SetParticleAngleRandomness2_1"]=function(){return(_emscripten_bind_ParticleEmitterObject_SetParticleAngleRandomness2_1=Module["_emscripten_bind_ParticleEmitterObject_SetParticleAngleRandomness2_1"]=Module["asm"]["y2"]).apply(null,arguments)};var _emscripten_bind_ParticleEmitterObject_GetParticleAngleRandomness2_0=Module["_emscripten_bind_ParticleEmitterObject_GetParticleAngleRandomness2_0"]=function(){return(_emscripten_bind_ParticleEmitterObject_GetParticleAngleRandomness2_0=Module["_emscripten_bind_ParticleEmitterObject_GetParticleAngleRandomness2_0"]=Module["asm"]["z2"]).apply(null,arguments)};var _emscripten_bind_ParticleEmitterObject_SetJumpForwardInTimeOnCreation_1=Module["_emscripten_bind_ParticleEmitterObject_SetJumpForwardInTimeOnCreation_1"]=function(){return(_emscripten_bind_ParticleEmitterObject_SetJumpForwardInTimeOnCreation_1=Module["_emscripten_bind_ParticleEmitterObject_SetJumpForwardInTimeOnCreation_1"]=Module["asm"]["A2"]).apply(null,arguments)};var _emscripten_bind_ParticleEmitterObject_GetJumpForwardInTimeOnCreation_0=Module["_emscripten_bind_ParticleEmitterObject_GetJumpForwardInTimeOnCreation_0"]=function(){return(_emscripten_bind_ParticleEmitterObject_GetJumpForwardInTimeOnCreation_0=Module["_emscripten_bind_ParticleEmitterObject_GetJumpForwardInTimeOnCreation_0"]=Module["asm"]["B2"]).apply(null,arguments)};var _emscripten_bind_ParticleEmitterObject_GetType_0=Module["_emscripten_bind_ParticleEmitterObject_GetType_0"]=function(){return(_emscripten_bind_ParticleEmitterObject_GetType_0=Module["_emscripten_bind_ParticleEmitterObject_GetType_0"]=Module["asm"]["C2"]).apply(null,arguments)};var _emscripten_bind_ParticleEmitterObject_SetType_1=Module["_emscripten_bind_ParticleEmitterObject_SetType_1"]=function(){return(_emscripten_bind_ParticleEmitterObject_SetType_1=Module["_emscripten_bind_ParticleEmitterObject_SetType_1"]=Module["asm"]["D2"]).apply(null,arguments)};var _emscripten_bind_ParticleEmitterObject_ExposeResources_1=Module["_emscripten_bind_ParticleEmitterObject_ExposeResources_1"]=function(){return(_emscripten_bind_ParticleEmitterObject_ExposeResources_1=Module["_emscripten_bind_ParticleEmitterObject_ExposeResources_1"]=Module["asm"]["E2"]).apply(null,arguments)};var _emscripten_bind_ParticleEmitterObject_SerializeTo_1=Module["_emscripten_bind_ParticleEmitterObject_SerializeTo_1"]=function(){return(_emscripten_bind_ParticleEmitterObject_SerializeTo_1=Module["_emscripten_bind_ParticleEmitterObject_SerializeTo_1"]=Module["asm"]["F2"]).apply(null,arguments)};var _emscripten_bind_ParticleEmitterObject_UnserializeFrom_2=Module["_emscripten_bind_ParticleEmitterObject_UnserializeFrom_2"]=function(){return(_emscripten_bind_ParticleEmitterObject_UnserializeFrom_2=Module["_emscripten_bind_ParticleEmitterObject_UnserializeFrom_2"]=Module["asm"]["G2"]).apply(null,arguments)};var _emscripten_bind_ParticleEmitterObject_GetAnimationName_1=Module["_emscripten_bind_ParticleEmitterObject_GetAnimationName_1"]=function(){return(_emscripten_bind_ParticleEmitterObject_GetAnimationName_1=Module["_emscripten_bind_ParticleEmitterObject_GetAnimationName_1"]=Module["asm"]["H2"]).apply(null,arguments)};var _emscripten_bind_ParticleEmitterObject___destroy___0=Module["_emscripten_bind_ParticleEmitterObject___destroy___0"]=function(){return(_emscripten_bind_ParticleEmitterObject___destroy___0=Module["_emscripten_bind_ParticleEmitterObject___destroy___0"]=Module["asm"]["I2"]).apply(null,arguments)};var _emscripten_bind_LayoutCodeGenerator_LayoutCodeGenerator_1=Module["_emscripten_bind_LayoutCodeGenerator_LayoutCodeGenerator_1"]=function(){return(_emscripten_bind_LayoutCodeGenerator_LayoutCodeGenerator_1=Module["_emscripten_bind_LayoutCodeGenerator_LayoutCodeGenerator_1"]=Module["asm"]["J2"]).apply(null,arguments)};var _emscripten_bind_LayoutCodeGenerator_GenerateLayoutCompleteCode_4=Module["_emscripten_bind_LayoutCodeGenerator_GenerateLayoutCompleteCode_4"]=function(){return(_emscripten_bind_LayoutCodeGenerator_GenerateLayoutCompleteCode_4=Module["_emscripten_bind_LayoutCodeGenerator_GenerateLayoutCompleteCode_4"]=Module["asm"]["K2"]).apply(null,arguments)};var _emscripten_bind_LayoutCodeGenerator___destroy___0=Module["_emscripten_bind_LayoutCodeGenerator___destroy___0"]=function(){return(_emscripten_bind_LayoutCodeGenerator___destroy___0=Module["_emscripten_bind_LayoutCodeGenerator___destroy___0"]=Module["asm"]["L2"]).apply(null,arguments)};var _emscripten_bind_BehaviorCodeGenerator_BehaviorCodeGenerator_1=Module["_emscripten_bind_BehaviorCodeGenerator_BehaviorCodeGenerator_1"]=function(){return(_emscripten_bind_BehaviorCodeGenerator_BehaviorCodeGenerator_1=Module["_emscripten_bind_BehaviorCodeGenerator_BehaviorCodeGenerator_1"]=Module["asm"]["M2"]).apply(null,arguments)};var _emscripten_bind_BehaviorCodeGenerator_GenerateRuntimeBehaviorCompleteCode_6=Module["_emscripten_bind_BehaviorCodeGenerator_GenerateRuntimeBehaviorCompleteCode_6"]=function(){return(_emscripten_bind_BehaviorCodeGenerator_GenerateRuntimeBehaviorCompleteCode_6=Module["_emscripten_bind_BehaviorCodeGenerator_GenerateRuntimeBehaviorCompleteCode_6"]=Module["asm"]["N2"]).apply(null,arguments)};var _emscripten_bind_BehaviorCodeGenerator_STATIC_GetBehaviorPropertyGetterName_1=Module["_emscripten_bind_BehaviorCodeGenerator_STATIC_GetBehaviorPropertyGetterName_1"]=function(){return(_emscripten_bind_BehaviorCodeGenerator_STATIC_GetBehaviorPropertyGetterName_1=Module["_emscripten_bind_BehaviorCodeGenerator_STATIC_GetBehaviorPropertyGetterName_1"]=Module["asm"]["O2"]).apply(null,arguments)};var _emscripten_bind_BehaviorCodeGenerator_STATIC_GetBehaviorPropertySetterName_1=Module["_emscripten_bind_BehaviorCodeGenerator_STATIC_GetBehaviorPropertySetterName_1"]=function(){return(_emscripten_bind_BehaviorCodeGenerator_STATIC_GetBehaviorPropertySetterName_1=Module["_emscripten_bind_BehaviorCodeGenerator_STATIC_GetBehaviorPropertySetterName_1"]=Module["asm"]["P2"]).apply(null,arguments)};var _emscripten_bind_BehaviorCodeGenerator_STATIC_GetBehaviorPropertyToggleFunctionName_1=Module["_emscripten_bind_BehaviorCodeGenerator_STATIC_GetBehaviorPropertyToggleFunctionName_1"]=function(){return(_emscripten_bind_BehaviorCodeGenerator_STATIC_GetBehaviorPropertyToggleFunctionName_1=Module["_emscripten_bind_BehaviorCodeGenerator_STATIC_GetBehaviorPropertyToggleFunctionName_1"]=Module["asm"]["Q2"]).apply(null,arguments)};var _emscripten_bind_BehaviorCodeGenerator_STATIC_GetBehaviorSharedPropertyGetterName_1=Module["_emscripten_bind_BehaviorCodeGenerator_STATIC_GetBehaviorSharedPropertyGetterName_1"]=function(){return(_emscripten_bind_BehaviorCodeGenerator_STATIC_GetBehaviorSharedPropertyGetterName_1=Module["_emscripten_bind_BehaviorCodeGenerator_STATIC_GetBehaviorSharedPropertyGetterName_1"]=Module["asm"]["R2"]).apply(null,arguments)};var _emscripten_bind_BehaviorCodeGenerator_STATIC_GetBehaviorSharedPropertySetterName_1=Module["_emscripten_bind_BehaviorCodeGenerator_STATIC_GetBehaviorSharedPropertySetterName_1"]=function(){return(_emscripten_bind_BehaviorCodeGenerator_STATIC_GetBehaviorSharedPropertySetterName_1=Module["_emscripten_bind_BehaviorCodeGenerator_STATIC_GetBehaviorSharedPropertySetterName_1"]=Module["asm"]["S2"]).apply(null,arguments)};var _emscripten_bind_BehaviorCodeGenerator_STATIC_GetBehaviorSharedPropertyToggleFunctionName_1=Module["_emscripten_bind_BehaviorCodeGenerator_STATIC_GetBehaviorSharedPropertyToggleFunctionName_1"]=function(){return(_emscripten_bind_BehaviorCodeGenerator_STATIC_GetBehaviorSharedPropertyToggleFunctionName_1=Module["_emscripten_bind_BehaviorCodeGenerator_STATIC_GetBehaviorSharedPropertyToggleFunctionName_1"]=Module["asm"]["T2"]).apply(null,arguments)};var _emscripten_bind_BehaviorCodeGenerator___destroy___0=Module["_emscripten_bind_BehaviorCodeGenerator___destroy___0"]=function(){return(_emscripten_bind_BehaviorCodeGenerator___destroy___0=Module["_emscripten_bind_BehaviorCodeGenerator___destroy___0"]=Module["asm"]["U2"]).apply(null,arguments)};var _emscripten_bind_ObjectCodeGenerator_ObjectCodeGenerator_1=Module["_emscripten_bind_ObjectCodeGenerator_ObjectCodeGenerator_1"]=function(){return(_emscripten_bind_ObjectCodeGenerator_ObjectCodeGenerator_1=Module["_emscripten_bind_ObjectCodeGenerator_ObjectCodeGenerator_1"]=Module["asm"]["V2"]).apply(null,arguments)};var _emscripten_bind_ObjectCodeGenerator_GenerateRuntimeObjectCompleteCode_6=Module["_emscripten_bind_ObjectCodeGenerator_GenerateRuntimeObjectCompleteCode_6"]=function(){return(_emscripten_bind_ObjectCodeGenerator_GenerateRuntimeObjectCompleteCode_6=Module["_emscripten_bind_ObjectCodeGenerator_GenerateRuntimeObjectCompleteCode_6"]=Module["asm"]["W2"]).apply(null,arguments)};var _emscripten_bind_ObjectCodeGenerator_STATIC_GetObjectPropertyGetterName_1=Module["_emscripten_bind_ObjectCodeGenerator_STATIC_GetObjectPropertyGetterName_1"]=function(){return(_emscripten_bind_ObjectCodeGenerator_STATIC_GetObjectPropertyGetterName_1=Module["_emscripten_bind_ObjectCodeGenerator_STATIC_GetObjectPropertyGetterName_1"]=Module["asm"]["X2"]).apply(null,arguments)};var _emscripten_bind_ObjectCodeGenerator_STATIC_GetObjectPropertySetterName_1=Module["_emscripten_bind_ObjectCodeGenerator_STATIC_GetObjectPropertySetterName_1"]=function(){return(_emscripten_bind_ObjectCodeGenerator_STATIC_GetObjectPropertySetterName_1=Module["_emscripten_bind_ObjectCodeGenerator_STATIC_GetObjectPropertySetterName_1"]=Module["asm"]["Y2"]).apply(null,arguments)};var _emscripten_bind_ObjectCodeGenerator_STATIC_GetObjectPropertyToggleFunctionName_1=Module["_emscripten_bind_ObjectCodeGenerator_STATIC_GetObjectPropertyToggleFunctionName_1"]=function(){return(_emscripten_bind_ObjectCodeGenerator_STATIC_GetObjectPropertyToggleFunctionName_1=Module["_emscripten_bind_ObjectCodeGenerator_STATIC_GetObjectPropertyToggleFunctionName_1"]=Module["asm"]["Z2"]).apply(null,arguments)};var _emscripten_bind_ObjectCodeGenerator___destroy___0=Module["_emscripten_bind_ObjectCodeGenerator___destroy___0"]=function(){return(_emscripten_bind_ObjectCodeGenerator___destroy___0=Module["_emscripten_bind_ObjectCodeGenerator___destroy___0"]=Module["asm"]["_2"]).apply(null,arguments)};var _emscripten_bind_EventsFunctionsExtensionCodeGenerator_EventsFunctionsExtensionCodeGenerator_1=Module["_emscripten_bind_EventsFunctionsExtensionCodeGenerator_EventsFunctionsExtensionCodeGenerator_1"]=function(){return(_emscripten_bind_EventsFunctionsExtensionCodeGenerator_EventsFunctionsExtensionCodeGenerator_1=Module["_emscripten_bind_EventsFunctionsExtensionCodeGenerator_EventsFunctionsExtensionCodeGenerator_1"]=Module["asm"]["$2"]).apply(null,arguments)};var _emscripten_bind_EventsFunctionsExtensionCodeGenerator_GenerateFreeEventsFunctionCompleteCode_5=Module["_emscripten_bind_EventsFunctionsExtensionCodeGenerator_GenerateFreeEventsFunctionCompleteCode_5"]=function(){return(_emscripten_bind_EventsFunctionsExtensionCodeGenerator_GenerateFreeEventsFunctionCompleteCode_5=Module["_emscripten_bind_EventsFunctionsExtensionCodeGenerator_GenerateFreeEventsFunctionCompleteCode_5"]=Module["asm"]["a3"]).apply(null,arguments)};var _emscripten_bind_EventsFunctionsExtensionCodeGenerator___destroy___0=Module["_emscripten_bind_EventsFunctionsExtensionCodeGenerator___destroy___0"]=function(){return(_emscripten_bind_EventsFunctionsExtensionCodeGenerator___destroy___0=Module["_emscripten_bind_EventsFunctionsExtensionCodeGenerator___destroy___0"]=Module["asm"]["b3"]).apply(null,arguments)};var _emscripten_bind_PreviewExportOptions_PreviewExportOptions_2=Module["_emscripten_bind_PreviewExportOptions_PreviewExportOptions_2"]=function(){return(_emscripten_bind_PreviewExportOptions_PreviewExportOptions_2=Module["_emscripten_bind_PreviewExportOptions_PreviewExportOptions_2"]=Module["asm"]["c3"]).apply(null,arguments)};var _emscripten_bind_PreviewExportOptions_UseWebsocketDebuggerClientWithServerAddress_2=Module["_emscripten_bind_PreviewExportOptions_UseWebsocketDebuggerClientWithServerAddress_2"]=function(){return(_emscripten_bind_PreviewExportOptions_UseWebsocketDebuggerClientWithServerAddress_2=Module["_emscripten_bind_PreviewExportOptions_UseWebsocketDebuggerClientWithServerAddress_2"]=Module["asm"]["d3"]).apply(null,arguments)};var _emscripten_bind_PreviewExportOptions_UseWindowMessageDebuggerClient_0=Module["_emscripten_bind_PreviewExportOptions_UseWindowMessageDebuggerClient_0"]=function(){return(_emscripten_bind_PreviewExportOptions_UseWindowMessageDebuggerClient_0=Module["_emscripten_bind_PreviewExportOptions_UseWindowMessageDebuggerClient_0"]=Module["asm"]["e3"]).apply(null,arguments)};var _emscripten_bind_PreviewExportOptions_UseMinimalDebuggerClient_0=Module["_emscripten_bind_PreviewExportOptions_UseMinimalDebuggerClient_0"]=function(){return(_emscripten_bind_PreviewExportOptions_UseMinimalDebuggerClient_0=Module["_emscripten_bind_PreviewExportOptions_UseMinimalDebuggerClient_0"]=Module["asm"]["f3"]).apply(null,arguments)};var _emscripten_bind_PreviewExportOptions_SetInAppTutorialMessageInPreview_2=Module["_emscripten_bind_PreviewExportOptions_SetInAppTutorialMessageInPreview_2"]=function(){return(_emscripten_bind_PreviewExportOptions_SetInAppTutorialMessageInPreview_2=Module["_emscripten_bind_PreviewExportOptions_SetInAppTutorialMessageInPreview_2"]=Module["asm"]["g3"]).apply(null,arguments)};var _emscripten_bind_PreviewExportOptions_SetLayoutName_1=Module["_emscripten_bind_PreviewExportOptions_SetLayoutName_1"]=function(){return(_emscripten_bind_PreviewExportOptions_SetLayoutName_1=Module["_emscripten_bind_PreviewExportOptions_SetLayoutName_1"]=Module["asm"]["h3"]).apply(null,arguments)};var _emscripten_bind_PreviewExportOptions_SetFallbackAuthor_2=Module["_emscripten_bind_PreviewExportOptions_SetFallbackAuthor_2"]=function(){return(_emscripten_bind_PreviewExportOptions_SetFallbackAuthor_2=Module["_emscripten_bind_PreviewExportOptions_SetFallbackAuthor_2"]=Module["asm"]["i3"]).apply(null,arguments)};var _emscripten_bind_PreviewExportOptions_SetAuthenticatedPlayer_3=Module["_emscripten_bind_PreviewExportOptions_SetAuthenticatedPlayer_3"]=function(){return(_emscripten_bind_PreviewExportOptions_SetAuthenticatedPlayer_3=Module["_emscripten_bind_PreviewExportOptions_SetAuthenticatedPlayer_3"]=Module["asm"]["j3"]).apply(null,arguments)};var _emscripten_bind_PreviewExportOptions_SetExternalLayoutName_1=Module["_emscripten_bind_PreviewExportOptions_SetExternalLayoutName_1"]=function(){return(_emscripten_bind_PreviewExportOptions_SetExternalLayoutName_1=Module["_emscripten_bind_PreviewExportOptions_SetExternalLayoutName_1"]=Module["asm"]["k3"]).apply(null,arguments)};var _emscripten_bind_PreviewExportOptions_SetEventsBasedObjectType_1=Module["_emscripten_bind_PreviewExportOptions_SetEventsBasedObjectType_1"]=function(){return(_emscripten_bind_PreviewExportOptions_SetEventsBasedObjectType_1=Module["_emscripten_bind_PreviewExportOptions_SetEventsBasedObjectType_1"]=Module["asm"]["l3"]).apply(null,arguments)};var _emscripten_bind_PreviewExportOptions_SetEventsBasedObjectVariantName_1=Module["_emscripten_bind_PreviewExportOptions_SetEventsBasedObjectVariantName_1"]=function(){return(_emscripten_bind_PreviewExportOptions_SetEventsBasedObjectVariantName_1=Module["_emscripten_bind_PreviewExportOptions_SetEventsBasedObjectVariantName_1"]=Module["asm"]["m3"]).apply(null,arguments)};var _emscripten_bind_PreviewExportOptions_SetIncludeFileHash_2=Module["_emscripten_bind_PreviewExportOptions_SetIncludeFileHash_2"]=function(){return(_emscripten_bind_PreviewExportOptions_SetIncludeFileHash_2=Module["_emscripten_bind_PreviewExportOptions_SetIncludeFileHash_2"]=Module["asm"]["n3"]).apply(null,arguments)};var _emscripten_bind_PreviewExportOptions_SetShouldClearExportFolder_1=Module["_emscripten_bind_PreviewExportOptions_SetShouldClearExportFolder_1"]=function(){return(_emscripten_bind_PreviewExportOptions_SetShouldClearExportFolder_1=Module["_emscripten_bind_PreviewExportOptions_SetShouldClearExportFolder_1"]=Module["asm"]["o3"]).apply(null,arguments)};var _emscripten_bind_PreviewExportOptions_SetShouldReloadProjectData_1=Module["_emscripten_bind_PreviewExportOptions_SetShouldReloadProjectData_1"]=function(){return(_emscripten_bind_PreviewExportOptions_SetShouldReloadProjectData_1=Module["_emscripten_bind_PreviewExportOptions_SetShouldReloadProjectData_1"]=Module["asm"]["p3"]).apply(null,arguments)};var _emscripten_bind_PreviewExportOptions_SetShouldReloadLibraries_1=Module["_emscripten_bind_PreviewExportOptions_SetShouldReloadLibraries_1"]=function(){return(_emscripten_bind_PreviewExportOptions_SetShouldReloadLibraries_1=Module["_emscripten_bind_PreviewExportOptions_SetShouldReloadLibraries_1"]=Module["asm"]["q3"]).apply(null,arguments)};var _emscripten_bind_PreviewExportOptions_SetShouldGenerateScenesEventsCode_1=Module["_emscripten_bind_PreviewExportOptions_SetShouldGenerateScenesEventsCode_1"]=function(){return(_emscripten_bind_PreviewExportOptions_SetShouldGenerateScenesEventsCode_1=Module["_emscripten_bind_PreviewExportOptions_SetShouldGenerateScenesEventsCode_1"]=Module["asm"]["r3"]).apply(null,arguments)};var _emscripten_bind_PreviewExportOptions_SetNativeMobileApp_1=Module["_emscripten_bind_PreviewExportOptions_SetNativeMobileApp_1"]=function(){return(_emscripten_bind_PreviewExportOptions_SetNativeMobileApp_1=Module["_emscripten_bind_PreviewExportOptions_SetNativeMobileApp_1"]=Module["asm"]["s3"]).apply(null,arguments)};var _emscripten_bind_PreviewExportOptions_SetFullLoadingScreen_1=Module["_emscripten_bind_PreviewExportOptions_SetFullLoadingScreen_1"]=function(){return(_emscripten_bind_PreviewExportOptions_SetFullLoadingScreen_1=Module["_emscripten_bind_PreviewExportOptions_SetFullLoadingScreen_1"]=Module["asm"]["t3"]).apply(null,arguments)};var _emscripten_bind_PreviewExportOptions_SetIsDevelopmentEnvironment_1=Module["_emscripten_bind_PreviewExportOptions_SetIsDevelopmentEnvironment_1"]=function(){return(_emscripten_bind_PreviewExportOptions_SetIsDevelopmentEnvironment_1=Module["_emscripten_bind_PreviewExportOptions_SetIsDevelopmentEnvironment_1"]=Module["asm"]["u3"]).apply(null,arguments)};var _emscripten_bind_PreviewExportOptions_SetIsInGameEdition_1=Module["_emscripten_bind_PreviewExportOptions_SetIsInGameEdition_1"]=function(){return(_emscripten_bind_PreviewExportOptions_SetIsInGameEdition_1=Module["_emscripten_bind_PreviewExportOptions_SetIsInGameEdition_1"]=Module["asm"]["v3"]).apply(null,arguments)};var _emscripten_bind_PreviewExportOptions_SetInGameEditorSettingsJson_1=Module["_emscripten_bind_PreviewExportOptions_SetInGameEditorSettingsJson_1"]=function(){return(_emscripten_bind_PreviewExportOptions_SetInGameEditorSettingsJson_1=Module["_emscripten_bind_PreviewExportOptions_SetInGameEditorSettingsJson_1"]=Module["asm"]["w3"]).apply(null,arguments)};var _emscripten_bind_PreviewExportOptions_SetEditorId_1=Module["_emscripten_bind_PreviewExportOptions_SetEditorId_1"]=function(){return(_emscripten_bind_PreviewExportOptions_SetEditorId_1=Module["_emscripten_bind_PreviewExportOptions_SetEditorId_1"]=Module["asm"]["x3"]).apply(null,arguments)};var _emscripten_bind_PreviewExportOptions_SetEditorCameraState3D_7=Module["_emscripten_bind_PreviewExportOptions_SetEditorCameraState3D_7"]=function(){return(_emscripten_bind_PreviewExportOptions_SetEditorCameraState3D_7=Module["_emscripten_bind_PreviewExportOptions_SetEditorCameraState3D_7"]=Module["asm"]["y3"]).apply(null,arguments)};var _emscripten_bind_PreviewExportOptions_SetNonRuntimeScriptsCacheBurst_1=Module["_emscripten_bind_PreviewExportOptions_SetNonRuntimeScriptsCacheBurst_1"]=function(){return(_emscripten_bind_PreviewExportOptions_SetNonRuntimeScriptsCacheBurst_1=Module["_emscripten_bind_PreviewExportOptions_SetNonRuntimeScriptsCacheBurst_1"]=Module["asm"]["z3"]).apply(null,arguments)};var _emscripten_bind_PreviewExportOptions_SetElectronRemoteRequirePath_1=Module["_emscripten_bind_PreviewExportOptions_SetElectronRemoteRequirePath_1"]=function(){return(_emscripten_bind_PreviewExportOptions_SetElectronRemoteRequirePath_1=Module["_emscripten_bind_PreviewExportOptions_SetElectronRemoteRequirePath_1"]=Module["asm"]["A3"]).apply(null,arguments)};var _emscripten_bind_PreviewExportOptions_SetGDevelopResourceToken_1=Module["_emscripten_bind_PreviewExportOptions_SetGDevelopResourceToken_1"]=function(){return(_emscripten_bind_PreviewExportOptions_SetGDevelopResourceToken_1=Module["_emscripten_bind_PreviewExportOptions_SetGDevelopResourceToken_1"]=Module["asm"]["B3"]).apply(null,arguments)};var _emscripten_bind_PreviewExportOptions_SetAllowAuthenticationUsingIframeForPreview_1=Module["_emscripten_bind_PreviewExportOptions_SetAllowAuthenticationUsingIframeForPreview_1"]=function(){return(_emscripten_bind_PreviewExportOptions_SetAllowAuthenticationUsingIframeForPreview_1=Module["_emscripten_bind_PreviewExportOptions_SetAllowAuthenticationUsingIframeForPreview_1"]=Module["asm"]["C3"]).apply(null,arguments)};var _emscripten_bind_PreviewExportOptions_SetCrashReportUploadLevel_1=Module["_emscripten_bind_PreviewExportOptions_SetCrashReportUploadLevel_1"]=function(){return(_emscripten_bind_PreviewExportOptions_SetCrashReportUploadLevel_1=Module["_emscripten_bind_PreviewExportOptions_SetCrashReportUploadLevel_1"]=Module["asm"]["D3"]).apply(null,arguments)};var _emscripten_bind_PreviewExportOptions_SetPreviewContext_1=Module["_emscripten_bind_PreviewExportOptions_SetPreviewContext_1"]=function(){return(_emscripten_bind_PreviewExportOptions_SetPreviewContext_1=Module["_emscripten_bind_PreviewExportOptions_SetPreviewContext_1"]=Module["asm"]["E3"]).apply(null,arguments)};var _emscripten_bind_PreviewExportOptions_SetGDevelopVersionWithHash_1=Module["_emscripten_bind_PreviewExportOptions_SetGDevelopVersionWithHash_1"]=function(){return(_emscripten_bind_PreviewExportOptions_SetGDevelopVersionWithHash_1=Module["_emscripten_bind_PreviewExportOptions_SetGDevelopVersionWithHash_1"]=Module["asm"]["F3"]).apply(null,arguments)};var _emscripten_bind_PreviewExportOptions_SetProjectTemplateSlug_1=Module["_emscripten_bind_PreviewExportOptions_SetProjectTemplateSlug_1"]=function(){return(_emscripten_bind_PreviewExportOptions_SetProjectTemplateSlug_1=Module["_emscripten_bind_PreviewExportOptions_SetProjectTemplateSlug_1"]=Module["asm"]["G3"]).apply(null,arguments)};var _emscripten_bind_PreviewExportOptions_SetSourceGameId_1=Module["_emscripten_bind_PreviewExportOptions_SetSourceGameId_1"]=function(){return(_emscripten_bind_PreviewExportOptions_SetSourceGameId_1=Module["_emscripten_bind_PreviewExportOptions_SetSourceGameId_1"]=Module["asm"]["H3"]).apply(null,arguments)};var _emscripten_bind_PreviewExportOptions_AddScreenshotCapture_3=Module["_emscripten_bind_PreviewExportOptions_AddScreenshotCapture_3"]=function(){return(_emscripten_bind_PreviewExportOptions_AddScreenshotCapture_3=Module["_emscripten_bind_PreviewExportOptions_AddScreenshotCapture_3"]=Module["asm"]["I3"]).apply(null,arguments)};var _emscripten_bind_PreviewExportOptions___destroy___0=Module["_emscripten_bind_PreviewExportOptions___destroy___0"]=function(){return(_emscripten_bind_PreviewExportOptions___destroy___0=Module["_emscripten_bind_PreviewExportOptions___destroy___0"]=Module["asm"]["J3"]).apply(null,arguments)};var _emscripten_bind_ExportOptions_ExportOptions_2=Module["_emscripten_bind_ExportOptions_ExportOptions_2"]=function(){return(_emscripten_bind_ExportOptions_ExportOptions_2=Module["_emscripten_bind_ExportOptions_ExportOptions_2"]=Module["asm"]["K3"]).apply(null,arguments)};var _emscripten_bind_ExportOptions_SetFallbackAuthor_2=Module["_emscripten_bind_ExportOptions_SetFallbackAuthor_2"]=function(){return(_emscripten_bind_ExportOptions_SetFallbackAuthor_2=Module["_emscripten_bind_ExportOptions_SetFallbackAuthor_2"]=Module["asm"]["L3"]).apply(null,arguments)};var _emscripten_bind_ExportOptions_SetTarget_1=Module["_emscripten_bind_ExportOptions_SetTarget_1"]=function(){return(_emscripten_bind_ExportOptions_SetTarget_1=Module["_emscripten_bind_ExportOptions_SetTarget_1"]=Module["asm"]["M3"]).apply(null,arguments)};var _emscripten_bind_ExportOptions___destroy___0=Module["_emscripten_bind_ExportOptions___destroy___0"]=function(){return(_emscripten_bind_ExportOptions___destroy___0=Module["_emscripten_bind_ExportOptions___destroy___0"]=Module["asm"]["N3"]).apply(null,arguments)};var _emscripten_bind_Exporter_Exporter_2=Module["_emscripten_bind_Exporter_Exporter_2"]=function(){return(_emscripten_bind_Exporter_Exporter_2=Module["_emscripten_bind_Exporter_Exporter_2"]=Module["asm"]["O3"]).apply(null,arguments)};var _emscripten_bind_Exporter_SetCodeOutputDirectory_1=Module["_emscripten_bind_Exporter_SetCodeOutputDirectory_1"]=function(){return(_emscripten_bind_Exporter_SetCodeOutputDirectory_1=Module["_emscripten_bind_Exporter_SetCodeOutputDirectory_1"]=Module["asm"]["P3"]).apply(null,arguments)};var _emscripten_bind_Exporter_ExportProjectForPixiPreview_1=Module["_emscripten_bind_Exporter_ExportProjectForPixiPreview_1"]=function(){return(_emscripten_bind_Exporter_ExportProjectForPixiPreview_1=Module["_emscripten_bind_Exporter_ExportProjectForPixiPreview_1"]=Module["asm"]["Q3"]).apply(null,arguments)};var _emscripten_bind_Exporter_ExportWholePixiProject_1=Module["_emscripten_bind_Exporter_ExportWholePixiProject_1"]=function(){return(_emscripten_bind_Exporter_ExportWholePixiProject_1=Module["_emscripten_bind_Exporter_ExportWholePixiProject_1"]=Module["asm"]["R3"]).apply(null,arguments)};var _emscripten_bind_Exporter_SerializeProjectData_3=Module["_emscripten_bind_Exporter_SerializeProjectData_3"]=function(){return(_emscripten_bind_Exporter_SerializeProjectData_3=Module["_emscripten_bind_Exporter_SerializeProjectData_3"]=Module["asm"]["S3"]).apply(null,arguments)};var _emscripten_bind_Exporter_SerializeRuntimeGameOptions_2=Module["_emscripten_bind_Exporter_SerializeRuntimeGameOptions_2"]=function(){return(_emscripten_bind_Exporter_SerializeRuntimeGameOptions_2=Module["_emscripten_bind_Exporter_SerializeRuntimeGameOptions_2"]=Module["asm"]["T3"]).apply(null,arguments)};var _emscripten_bind_Exporter_GetLastError_0=Module["_emscripten_bind_Exporter_GetLastError_0"]=function(){return(_emscripten_bind_Exporter_GetLastError_0=Module["_emscripten_bind_Exporter_GetLastError_0"]=Module["asm"]["U3"]).apply(null,arguments)};var _emscripten_bind_Exporter___destroy___0=Module["_emscripten_bind_Exporter___destroy___0"]=function(){return(_emscripten_bind_Exporter___destroy___0=Module["_emscripten_bind_Exporter___destroy___0"]=Module["asm"]["V3"]).apply(null,arguments)};var _emscripten_bind_JsCodeEvent_JsCodeEvent_0=Module["_emscripten_bind_JsCodeEvent_JsCodeEvent_0"]=function(){return(_emscripten_bind_JsCodeEvent_JsCodeEvent_0=Module["_emscripten_bind_JsCodeEvent_JsCodeEvent_0"]=Module["asm"]["W3"]).apply(null,arguments)};var _emscripten_bind_JsCodeEvent_GetInlineCode_0=Module["_emscripten_bind_JsCodeEvent_GetInlineCode_0"]=function(){return(_emscripten_bind_JsCodeEvent_GetInlineCode_0=Module["_emscripten_bind_JsCodeEvent_GetInlineCode_0"]=Module["asm"]["X3"]).apply(null,arguments)};var _emscripten_bind_JsCodeEvent_SetInlineCode_1=Module["_emscripten_bind_JsCodeEvent_SetInlineCode_1"]=function(){return(_emscripten_bind_JsCodeEvent_SetInlineCode_1=Module["_emscripten_bind_JsCodeEvent_SetInlineCode_1"]=Module["asm"]["Y3"]).apply(null,arguments)};var _emscripten_bind_JsCodeEvent_GetParameterObjects_0=Module["_emscripten_bind_JsCodeEvent_GetParameterObjects_0"]=function(){return(_emscripten_bind_JsCodeEvent_GetParameterObjects_0=Module["_emscripten_bind_JsCodeEvent_GetParameterObjects_0"]=Module["asm"]["Z3"]).apply(null,arguments)};var _emscripten_bind_JsCodeEvent_SetParameterObjects_1=Module["_emscripten_bind_JsCodeEvent_SetParameterObjects_1"]=function(){return(_emscripten_bind_JsCodeEvent_SetParameterObjects_1=Module["_emscripten_bind_JsCodeEvent_SetParameterObjects_1"]=Module["asm"]["_3"]).apply(null,arguments)};var _emscripten_bind_JsCodeEvent_IsEventsSheetExpanded_0=Module["_emscripten_bind_JsCodeEvent_IsEventsSheetExpanded_0"]=function(){return(_emscripten_bind_JsCodeEvent_IsEventsSheetExpanded_0=Module["_emscripten_bind_JsCodeEvent_IsEventsSheetExpanded_0"]=Module["asm"]["$3"]).apply(null,arguments)};var _emscripten_bind_JsCodeEvent_SetEventsSheetExpanded_1=Module["_emscripten_bind_JsCodeEvent_SetEventsSheetExpanded_1"]=function(){return(_emscripten_bind_JsCodeEvent_SetEventsSheetExpanded_1=Module["_emscripten_bind_JsCodeEvent_SetEventsSheetExpanded_1"]=Module["asm"]["a4"]).apply(null,arguments)};var _emscripten_bind_JsCodeEvent_Clone_0=Module["_emscripten_bind_JsCodeEvent_Clone_0"]=function(){return(_emscripten_bind_JsCodeEvent_Clone_0=Module["_emscripten_bind_JsCodeEvent_Clone_0"]=Module["asm"]["b4"]).apply(null,arguments)};var _emscripten_bind_JsCodeEvent_GetType_0=Module["_emscripten_bind_JsCodeEvent_GetType_0"]=function(){return(_emscripten_bind_JsCodeEvent_GetType_0=Module["_emscripten_bind_JsCodeEvent_GetType_0"]=Module["asm"]["c4"]).apply(null,arguments)};var _emscripten_bind_JsCodeEvent_SetType_1=Module["_emscripten_bind_JsCodeEvent_SetType_1"]=function(){return(_emscripten_bind_JsCodeEvent_SetType_1=Module["_emscripten_bind_JsCodeEvent_SetType_1"]=Module["asm"]["d4"]).apply(null,arguments)};var _emscripten_bind_JsCodeEvent_IsExecutable_0=Module["_emscripten_bind_JsCodeEvent_IsExecutable_0"]=function(){return(_emscripten_bind_JsCodeEvent_IsExecutable_0=Module["_emscripten_bind_JsCodeEvent_IsExecutable_0"]=Module["asm"]["e4"]).apply(null,arguments)};var _emscripten_bind_JsCodeEvent_CanHaveSubEvents_0=Module["_emscripten_bind_JsCodeEvent_CanHaveSubEvents_0"]=function(){return(_emscripten_bind_JsCodeEvent_CanHaveSubEvents_0=Module["_emscripten_bind_JsCodeEvent_CanHaveSubEvents_0"]=Module["asm"]["f4"]).apply(null,arguments)};var _emscripten_bind_JsCodeEvent_HasSubEvents_0=Module["_emscripten_bind_JsCodeEvent_HasSubEvents_0"]=function(){return(_emscripten_bind_JsCodeEvent_HasSubEvents_0=Module["_emscripten_bind_JsCodeEvent_HasSubEvents_0"]=Module["asm"]["g4"]).apply(null,arguments)};var _emscripten_bind_JsCodeEvent_GetSubEvents_0=Module["_emscripten_bind_JsCodeEvent_GetSubEvents_0"]=function(){return(_emscripten_bind_JsCodeEvent_GetSubEvents_0=Module["_emscripten_bind_JsCodeEvent_GetSubEvents_0"]=Module["asm"]["h4"]).apply(null,arguments)};var _emscripten_bind_JsCodeEvent_IsDisabled_0=Module["_emscripten_bind_JsCodeEvent_IsDisabled_0"]=function(){return(_emscripten_bind_JsCodeEvent_IsDisabled_0=Module["_emscripten_bind_JsCodeEvent_IsDisabled_0"]=Module["asm"]["i4"]).apply(null,arguments)};var _emscripten_bind_JsCodeEvent_SetDisabled_1=Module["_emscripten_bind_JsCodeEvent_SetDisabled_1"]=function(){return(_emscripten_bind_JsCodeEvent_SetDisabled_1=Module["_emscripten_bind_JsCodeEvent_SetDisabled_1"]=Module["asm"]["j4"]).apply(null,arguments)};var _emscripten_bind_JsCodeEvent_IsFolded_0=Module["_emscripten_bind_JsCodeEvent_IsFolded_0"]=function(){return(_emscripten_bind_JsCodeEvent_IsFolded_0=Module["_emscripten_bind_JsCodeEvent_IsFolded_0"]=Module["asm"]["k4"]).apply(null,arguments)};var _emscripten_bind_JsCodeEvent_SetFolded_1=Module["_emscripten_bind_JsCodeEvent_SetFolded_1"]=function(){return(_emscripten_bind_JsCodeEvent_SetFolded_1=Module["_emscripten_bind_JsCodeEvent_SetFolded_1"]=Module["asm"]["l4"]).apply(null,arguments)};var _emscripten_bind_JsCodeEvent_GetScrollTop_0=Module["_emscripten_bind_JsCodeEvent_GetScrollTop_0"]=function(){return(_emscripten_bind_JsCodeEvent_GetScrollTop_0=Module["_emscripten_bind_JsCodeEvent_GetScrollTop_0"]=Module["asm"]["m4"]).apply(null,arguments)};var _emscripten_bind_JsCodeEvent_SetScrollTop_1=Module["_emscripten_bind_JsCodeEvent_SetScrollTop_1"]=function(){return(_emscripten_bind_JsCodeEvent_SetScrollTop_1=Module["_emscripten_bind_JsCodeEvent_SetScrollTop_1"]=Module["asm"]["n4"]).apply(null,arguments)};var _emscripten_bind_JsCodeEvent_GetCursorColumn_0=Module["_emscripten_bind_JsCodeEvent_GetCursorColumn_0"]=function(){return(_emscripten_bind_JsCodeEvent_GetCursorColumn_0=Module["_emscripten_bind_JsCodeEvent_GetCursorColumn_0"]=Module["asm"]["o4"]).apply(null,arguments)};var _emscripten_bind_JsCodeEvent_SetCursorColumn_1=Module["_emscripten_bind_JsCodeEvent_SetCursorColumn_1"]=function(){return(_emscripten_bind_JsCodeEvent_SetCursorColumn_1=Module["_emscripten_bind_JsCodeEvent_SetCursorColumn_1"]=Module["asm"]["p4"]).apply(null,arguments)};var _emscripten_bind_JsCodeEvent_GetCursorLine_0=Module["_emscripten_bind_JsCodeEvent_GetCursorLine_0"]=function(){return(_emscripten_bind_JsCodeEvent_GetCursorLine_0=Module["_emscripten_bind_JsCodeEvent_GetCursorLine_0"]=Module["asm"]["q4"]).apply(null,arguments)};var _emscripten_bind_JsCodeEvent_SetCursorLine_1=Module["_emscripten_bind_JsCodeEvent_SetCursorLine_1"]=function(){return(_emscripten_bind_JsCodeEvent_SetCursorLine_1=Module["_emscripten_bind_JsCodeEvent_SetCursorLine_1"]=Module["asm"]["r4"]).apply(null,arguments)};var _emscripten_bind_JsCodeEvent_SerializeTo_1=Module["_emscripten_bind_JsCodeEvent_SerializeTo_1"]=function(){return(_emscripten_bind_JsCodeEvent_SerializeTo_1=Module["_emscripten_bind_JsCodeEvent_SerializeTo_1"]=Module["asm"]["s4"]).apply(null,arguments)};var _emscripten_bind_JsCodeEvent_UnserializeFrom_2=Module["_emscripten_bind_JsCodeEvent_UnserializeFrom_2"]=function(){return(_emscripten_bind_JsCodeEvent_UnserializeFrom_2=Module["_emscripten_bind_JsCodeEvent_UnserializeFrom_2"]=Module["asm"]["t4"]).apply(null,arguments)};var _emscripten_bind_JsCodeEvent___destroy___0=Module["_emscripten_bind_JsCodeEvent___destroy___0"]=function(){return(_emscripten_bind_JsCodeEvent___destroy___0=Module["_emscripten_bind_JsCodeEvent___destroy___0"]=Module["asm"]["u4"]).apply(null,arguments)};var _emscripten_bind_MetadataDeclarationHelper_MetadataDeclarationHelper_0=Module["_emscripten_bind_MetadataDeclarationHelper_MetadataDeclarationHelper_0"]=function(){return(_emscripten_bind_MetadataDeclarationHelper_MetadataDeclarationHelper_0=Module["_emscripten_bind_MetadataDeclarationHelper_MetadataDeclarationHelper_0"]=Module["asm"]["v4"]).apply(null,arguments)};var _emscripten_bind_MetadataDeclarationHelper_STATIC_DeclareExtension_2=Module["_emscripten_bind_MetadataDeclarationHelper_STATIC_DeclareExtension_2"]=function(){return(_emscripten_bind_MetadataDeclarationHelper_STATIC_DeclareExtension_2=Module["_emscripten_bind_MetadataDeclarationHelper_STATIC_DeclareExtension_2"]=Module["asm"]["w4"]).apply(null,arguments)};var _emscripten_bind_MetadataDeclarationHelper_GenerateFreeFunctionMetadata_4=Module["_emscripten_bind_MetadataDeclarationHelper_GenerateFreeFunctionMetadata_4"]=function(){return(_emscripten_bind_MetadataDeclarationHelper_GenerateFreeFunctionMetadata_4=Module["_emscripten_bind_MetadataDeclarationHelper_GenerateFreeFunctionMetadata_4"]=Module["asm"]["x4"]).apply(null,arguments)};var _emscripten_bind_MetadataDeclarationHelper_STATIC_GenerateBehaviorMetadata_5=Module["_emscripten_bind_MetadataDeclarationHelper_STATIC_GenerateBehaviorMetadata_5"]=function(){return(_emscripten_bind_MetadataDeclarationHelper_STATIC_GenerateBehaviorMetadata_5=Module["_emscripten_bind_MetadataDeclarationHelper_STATIC_GenerateBehaviorMetadata_5"]=Module["asm"]["y4"]).apply(null,arguments)};var _emscripten_bind_MetadataDeclarationHelper_STATIC_GenerateObjectMetadata_5=Module["_emscripten_bind_MetadataDeclarationHelper_STATIC_GenerateObjectMetadata_5"]=function(){return(_emscripten_bind_MetadataDeclarationHelper_STATIC_GenerateObjectMetadata_5=Module["_emscripten_bind_MetadataDeclarationHelper_STATIC_GenerateObjectMetadata_5"]=Module["asm"]["z4"]).apply(null,arguments)};var _emscripten_bind_MetadataDeclarationHelper_STATIC_GetExtensionCodeNamespacePrefix_1=Module["_emscripten_bind_MetadataDeclarationHelper_STATIC_GetExtensionCodeNamespacePrefix_1"]=function(){return(_emscripten_bind_MetadataDeclarationHelper_STATIC_GetExtensionCodeNamespacePrefix_1=Module["_emscripten_bind_MetadataDeclarationHelper_STATIC_GetExtensionCodeNamespacePrefix_1"]=Module["asm"]["A4"]).apply(null,arguments)};var _emscripten_bind_MetadataDeclarationHelper_STATIC_GetFreeFunctionCodeName_2=Module["_emscripten_bind_MetadataDeclarationHelper_STATIC_GetFreeFunctionCodeName_2"]=function(){return(_emscripten_bind_MetadataDeclarationHelper_STATIC_GetFreeFunctionCodeName_2=Module["_emscripten_bind_MetadataDeclarationHelper_STATIC_GetFreeFunctionCodeName_2"]=Module["asm"]["B4"]).apply(null,arguments)};var _emscripten_bind_MetadataDeclarationHelper_STATIC_GetFreeFunctionCodeNamespace_2=Module["_emscripten_bind_MetadataDeclarationHelper_STATIC_GetFreeFunctionCodeNamespace_2"]=function(){return(_emscripten_bind_MetadataDeclarationHelper_STATIC_GetFreeFunctionCodeNamespace_2=Module["_emscripten_bind_MetadataDeclarationHelper_STATIC_GetFreeFunctionCodeNamespace_2"]=Module["asm"]["C4"]).apply(null,arguments)};var _emscripten_bind_MetadataDeclarationHelper_STATIC_GetBehaviorFunctionCodeNamespace_2=Module["_emscripten_bind_MetadataDeclarationHelper_STATIC_GetBehaviorFunctionCodeNamespace_2"]=function(){return(_emscripten_bind_MetadataDeclarationHelper_STATIC_GetBehaviorFunctionCodeNamespace_2=Module["_emscripten_bind_MetadataDeclarationHelper_STATIC_GetBehaviorFunctionCodeNamespace_2"]=Module["asm"]["D4"]).apply(null,arguments)};var _emscripten_bind_MetadataDeclarationHelper_STATIC_GetObjectFunctionCodeNamespace_2=Module["_emscripten_bind_MetadataDeclarationHelper_STATIC_GetObjectFunctionCodeNamespace_2"]=function(){return(_emscripten_bind_MetadataDeclarationHelper_STATIC_GetObjectFunctionCodeNamespace_2=Module["_emscripten_bind_MetadataDeclarationHelper_STATIC_GetObjectFunctionCodeNamespace_2"]=Module["asm"]["E4"]).apply(null,arguments)};var _emscripten_bind_MetadataDeclarationHelper_STATIC_IsBehaviorLifecycleEventsFunction_1=Module["_emscripten_bind_MetadataDeclarationHelper_STATIC_IsBehaviorLifecycleEventsFunction_1"]=function(){return(_emscripten_bind_MetadataDeclarationHelper_STATIC_IsBehaviorLifecycleEventsFunction_1=Module["_emscripten_bind_MetadataDeclarationHelper_STATIC_IsBehaviorLifecycleEventsFunction_1"]=Module["asm"]["F4"]).apply(null,arguments)};var _emscripten_bind_MetadataDeclarationHelper_STATIC_IsObjectLifecycleEventsFunction_1=Module["_emscripten_bind_MetadataDeclarationHelper_STATIC_IsObjectLifecycleEventsFunction_1"]=function(){return(_emscripten_bind_MetadataDeclarationHelper_STATIC_IsObjectLifecycleEventsFunction_1=Module["_emscripten_bind_MetadataDeclarationHelper_STATIC_IsObjectLifecycleEventsFunction_1"]=Module["asm"]["G4"]).apply(null,arguments)};var _emscripten_bind_MetadataDeclarationHelper_STATIC_IsExtensionLifecycleEventsFunction_1=Module["_emscripten_bind_MetadataDeclarationHelper_STATIC_IsExtensionLifecycleEventsFunction_1"]=function(){return(_emscripten_bind_MetadataDeclarationHelper_STATIC_IsExtensionLifecycleEventsFunction_1=Module["_emscripten_bind_MetadataDeclarationHelper_STATIC_IsExtensionLifecycleEventsFunction_1"]=Module["asm"]["H4"]).apply(null,arguments)};var _emscripten_bind_MetadataDeclarationHelper_STATIC_ShiftSentenceParamIndexes_2=Module["_emscripten_bind_MetadataDeclarationHelper_STATIC_ShiftSentenceParamIndexes_2"]=function(){return(_emscripten_bind_MetadataDeclarationHelper_STATIC_ShiftSentenceParamIndexes_2=Module["_emscripten_bind_MetadataDeclarationHelper_STATIC_ShiftSentenceParamIndexes_2"]=Module["asm"]["I4"]).apply(null,arguments)};var _emscripten_bind_MetadataDeclarationHelper___destroy___0=Module["_emscripten_bind_MetadataDeclarationHelper___destroy___0"]=function(){return(_emscripten_bind_MetadataDeclarationHelper___destroy___0=Module["_emscripten_bind_MetadataDeclarationHelper___destroy___0"]=Module["asm"]["J4"]).apply(null,arguments)};var _emscripten_bind_MemoryTrackedRegistry_STATIC_add_2=Module["_emscripten_bind_MemoryTrackedRegistry_STATIC_add_2"]=function(){return(_emscripten_bind_MemoryTrackedRegistry_STATIC_add_2=Module["_emscripten_bind_MemoryTrackedRegistry_STATIC_add_2"]=Module["asm"]["K4"]).apply(null,arguments)};var _emscripten_bind_MemoryTrackedRegistry_STATIC_remove_2=Module["_emscripten_bind_MemoryTrackedRegistry_STATIC_remove_2"]=function(){return(_emscripten_bind_MemoryTrackedRegistry_STATIC_remove_2=Module["_emscripten_bind_MemoryTrackedRegistry_STATIC_remove_2"]=Module["asm"]["L4"]).apply(null,arguments)};var _emscripten_bind_MemoryTrackedRegistry_STATIC_isDead_2=Module["_emscripten_bind_MemoryTrackedRegistry_STATIC_isDead_2"]=function(){return(_emscripten_bind_MemoryTrackedRegistry_STATIC_isDead_2=Module["_emscripten_bind_MemoryTrackedRegistry_STATIC_isDead_2"]=Module["asm"]["M4"]).apply(null,arguments)};var _emscripten_bind_MemoryTrackedRegistry_STATIC_getDeadCount_0=Module["_emscripten_bind_MemoryTrackedRegistry_STATIC_getDeadCount_0"]=function(){return(_emscripten_bind_MemoryTrackedRegistry_STATIC_getDeadCount_0=Module["_emscripten_bind_MemoryTrackedRegistry_STATIC_getDeadCount_0"]=Module["asm"]["N4"]).apply(null,arguments)};var _emscripten_bind_MemoryTrackedRegistry_STATIC_getAliveCount_0=Module["_emscripten_bind_MemoryTrackedRegistry_STATIC_getAliveCount_0"]=function(){return(_emscripten_bind_MemoryTrackedRegistry_STATIC_getAliveCount_0=Module["_emscripten_bind_MemoryTrackedRegistry_STATIC_getAliveCount_0"]=Module["asm"]["O4"]).apply(null,arguments)};var _emscripten_bind_MemoryTrackedRegistry_STATIC_pruneDead_1=Module["_emscripten_bind_MemoryTrackedRegistry_STATIC_pruneDead_1"]=function(){return(_emscripten_bind_MemoryTrackedRegistry_STATIC_pruneDead_1=Module["_emscripten_bind_MemoryTrackedRegistry_STATIC_pruneDead_1"]=Module["asm"]["P4"]).apply(null,arguments)};var _emscripten_bind_MemoryTrackedRegistry_STATIC_getAliveCountForClass_1=Module["_emscripten_bind_MemoryTrackedRegistry_STATIC_getAliveCountForClass_1"]=function(){return(_emscripten_bind_MemoryTrackedRegistry_STATIC_getAliveCountForClass_1=Module["_emscripten_bind_MemoryTrackedRegistry_STATIC_getAliveCountForClass_1"]=Module["asm"]["Q4"]).apply(null,arguments)};var _emscripten_bind_MemoryTrackedRegistry_STATIC_getDeadCountForClass_1=Module["_emscripten_bind_MemoryTrackedRegistry_STATIC_getDeadCountForClass_1"]=function(){return(_emscripten_bind_MemoryTrackedRegistry_STATIC_getDeadCountForClass_1=Module["_emscripten_bind_MemoryTrackedRegistry_STATIC_getDeadCountForClass_1"]=Module["asm"]["R4"]).apply(null,arguments)};var _emscripten_bind_MemoryTrackedRegistry_STATIC_setCurrentCallContextId_1=Module["_emscripten_bind_MemoryTrackedRegistry_STATIC_setCurrentCallContextId_1"]=function(){return(_emscripten_bind_MemoryTrackedRegistry_STATIC_setCurrentCallContextId_1=Module["_emscripten_bind_MemoryTrackedRegistry_STATIC_setCurrentCallContextId_1"]=Module["asm"]["S4"]).apply(null,arguments)};var _emscripten_bind_MemoryTrackedRegistry_STATIC_getDeadContextId_2=Module["_emscripten_bind_MemoryTrackedRegistry_STATIC_getDeadContextId_2"]=function(){return(_emscripten_bind_MemoryTrackedRegistry_STATIC_getDeadContextId_2=Module["_emscripten_bind_MemoryTrackedRegistry_STATIC_getDeadContextId_2"]=Module["asm"]["T4"]).apply(null,arguments)};var _emscripten_bind_MemoryTrackedRegistry_STATIC_getDeadContextTimeMs_2=Module["_emscripten_bind_MemoryTrackedRegistry_STATIC_getDeadContextTimeMs_2"]=function(){return(_emscripten_bind_MemoryTrackedRegistry_STATIC_getDeadContextTimeMs_2=Module["_emscripten_bind_MemoryTrackedRegistry_STATIC_getDeadContextTimeMs_2"]=Module["asm"]["U4"]).apply(null,arguments)};var _emscripten_bind_MemoryTrackedRegistry___destroy___0=Module["_emscripten_bind_MemoryTrackedRegistry___destroy___0"]=function(){return(_emscripten_bind_MemoryTrackedRegistry___destroy___0=Module["_emscripten_bind_MemoryTrackedRegistry___destroy___0"]=Module["asm"]["V4"]).apply(null,arguments)};var _emscripten_enum_Variable_Type_Unknown=Module["_emscripten_enum_Variable_Type_Unknown"]=function(){return(_emscripten_enum_Variable_Type_Unknown=Module["_emscripten_enum_Variable_Type_Unknown"]=Module["asm"]["W4"]).apply(null,arguments)};var _emscripten_enum_Variable_Type_MixedTypes=Module["_emscripten_enum_Variable_Type_MixedTypes"]=function(){return(_emscripten_enum_Variable_Type_MixedTypes=Module["_emscripten_enum_Variable_Type_MixedTypes"]=Module["asm"]["X4"]).apply(null,arguments)};var _emscripten_enum_Variable_Type_String=Module["_emscripten_enum_Variable_Type_String"]=function(){return(_emscripten_enum_Variable_Type_String=Module["_emscripten_enum_Variable_Type_String"]=Module["asm"]["Y4"]).apply(null,arguments)};var _emscripten_enum_Variable_Type_Number=Module["_emscripten_enum_Variable_Type_Number"]=function(){return(_emscripten_enum_Variable_Type_Number=Module["_emscripten_enum_Variable_Type_Number"]=Module["asm"]["Z4"]).apply(null,arguments)};var _emscripten_enum_Variable_Type_Boolean=Module["_emscripten_enum_Variable_Type_Boolean"]=function(){return(_emscripten_enum_Variable_Type_Boolean=Module["_emscripten_enum_Variable_Type_Boolean"]=Module["asm"]["_4"]).apply(null,arguments)};var _emscripten_enum_Variable_Type_Structure=Module["_emscripten_enum_Variable_Type_Structure"]=function(){return(_emscripten_enum_Variable_Type_Structure=Module["_emscripten_enum_Variable_Type_Structure"]=Module["asm"]["$4"]).apply(null,arguments)};var _emscripten_enum_Variable_Type_Array=Module["_emscripten_enum_Variable_Type_Array"]=function(){return(_emscripten_enum_Variable_Type_Array=Module["_emscripten_enum_Variable_Type_Array"]=Module["asm"]["a5"]).apply(null,arguments)};var _emscripten_enum_VariablesContainer_SourceType_Unknown=Module["_emscripten_enum_VariablesContainer_SourceType_Unknown"]=function(){return(_emscripten_enum_VariablesContainer_SourceType_Unknown=Module["_emscripten_enum_VariablesContainer_SourceType_Unknown"]=Module["asm"]["b5"]).apply(null,arguments)};var _emscripten_enum_VariablesContainer_SourceType_Global=Module["_emscripten_enum_VariablesContainer_SourceType_Global"]=function(){return(_emscripten_enum_VariablesContainer_SourceType_Global=Module["_emscripten_enum_VariablesContainer_SourceType_Global"]=Module["asm"]["c5"]).apply(null,arguments)};var _emscripten_enum_VariablesContainer_SourceType_Scene=Module["_emscripten_enum_VariablesContainer_SourceType_Scene"]=function(){return(_emscripten_enum_VariablesContainer_SourceType_Scene=Module["_emscripten_enum_VariablesContainer_SourceType_Scene"]=Module["asm"]["d5"]).apply(null,arguments)};var _emscripten_enum_VariablesContainer_SourceType_Object=Module["_emscripten_enum_VariablesContainer_SourceType_Object"]=function(){return(_emscripten_enum_VariablesContainer_SourceType_Object=Module["_emscripten_enum_VariablesContainer_SourceType_Object"]=Module["asm"]["e5"]).apply(null,arguments)};var _emscripten_enum_VariablesContainer_SourceType_Local=Module["_emscripten_enum_VariablesContainer_SourceType_Local"]=function(){return(_emscripten_enum_VariablesContainer_SourceType_Local=Module["_emscripten_enum_VariablesContainer_SourceType_Local"]=Module["asm"]["f5"]).apply(null,arguments)};var _emscripten_enum_VariablesContainer_SourceType_ExtensionGlobal=Module["_emscripten_enum_VariablesContainer_SourceType_ExtensionGlobal"]=function(){return(_emscripten_enum_VariablesContainer_SourceType_ExtensionGlobal=Module["_emscripten_enum_VariablesContainer_SourceType_ExtensionGlobal"]=Module["asm"]["g5"]).apply(null,arguments)};var _emscripten_enum_VariablesContainer_SourceType_ExtensionScene=Module["_emscripten_enum_VariablesContainer_SourceType_ExtensionScene"]=function(){return(_emscripten_enum_VariablesContainer_SourceType_ExtensionScene=Module["_emscripten_enum_VariablesContainer_SourceType_ExtensionScene"]=Module["asm"]["h5"]).apply(null,arguments)};var _emscripten_enum_VariablesContainer_SourceType_Parameters=Module["_emscripten_enum_VariablesContainer_SourceType_Parameters"]=function(){return(_emscripten_enum_VariablesContainer_SourceType_Parameters=Module["_emscripten_enum_VariablesContainer_SourceType_Parameters"]=Module["asm"]["i5"]).apply(null,arguments)};var _emscripten_enum_VariablesContainer_SourceType_Properties=Module["_emscripten_enum_VariablesContainer_SourceType_Properties"]=function(){return(_emscripten_enum_VariablesContainer_SourceType_Properties=Module["_emscripten_enum_VariablesContainer_SourceType_Properties"]=Module["asm"]["j5"]).apply(null,arguments)};var _emscripten_enum_ObjectsContainer_SourceType_Unknown=Module["_emscripten_enum_ObjectsContainer_SourceType_Unknown"]=function(){return(_emscripten_enum_ObjectsContainer_SourceType_Unknown=Module["_emscripten_enum_ObjectsContainer_SourceType_Unknown"]=Module["asm"]["k5"]).apply(null,arguments)};var _emscripten_enum_ObjectsContainer_SourceType_Global=Module["_emscripten_enum_ObjectsContainer_SourceType_Global"]=function(){return(_emscripten_enum_ObjectsContainer_SourceType_Global=Module["_emscripten_enum_ObjectsContainer_SourceType_Global"]=Module["asm"]["l5"]).apply(null,arguments)};var _emscripten_enum_ObjectsContainer_SourceType_Scene=Module["_emscripten_enum_ObjectsContainer_SourceType_Scene"]=function(){return(_emscripten_enum_ObjectsContainer_SourceType_Scene=Module["_emscripten_enum_ObjectsContainer_SourceType_Scene"]=Module["asm"]["m5"]).apply(null,arguments)};var _emscripten_enum_ObjectsContainer_SourceType_Object=Module["_emscripten_enum_ObjectsContainer_SourceType_Object"]=function(){return(_emscripten_enum_ObjectsContainer_SourceType_Object=Module["_emscripten_enum_ObjectsContainer_SourceType_Object"]=Module["asm"]["n5"]).apply(null,arguments)};var _emscripten_enum_ObjectsContainer_SourceType_Function=Module["_emscripten_enum_ObjectsContainer_SourceType_Function"]=function(){return(_emscripten_enum_ObjectsContainer_SourceType_Function=Module["_emscripten_enum_ObjectsContainer_SourceType_Function"]=Module["asm"]["o5"]).apply(null,arguments)};var _emscripten_enum_ObjectsContainersList_VariableExistence_DoesNotExist=Module["_emscripten_enum_ObjectsContainersList_VariableExistence_DoesNotExist"]=function(){return(_emscripten_enum_ObjectsContainersList_VariableExistence_DoesNotExist=Module["_emscripten_enum_ObjectsContainersList_VariableExistence_DoesNotExist"]=Module["asm"]["p5"]).apply(null,arguments)};var _emscripten_enum_ObjectsContainersList_VariableExistence_Exists=Module["_emscripten_enum_ObjectsContainersList_VariableExistence_Exists"]=function(){return(_emscripten_enum_ObjectsContainersList_VariableExistence_Exists=Module["_emscripten_enum_ObjectsContainersList_VariableExistence_Exists"]=Module["asm"]["q5"]).apply(null,arguments)};var _emscripten_enum_ObjectsContainersList_VariableExistence_GroupIsEmpty=Module["_emscripten_enum_ObjectsContainersList_VariableExistence_GroupIsEmpty"]=function(){return(_emscripten_enum_ObjectsContainersList_VariableExistence_GroupIsEmpty=Module["_emscripten_enum_ObjectsContainersList_VariableExistence_GroupIsEmpty"]=Module["asm"]["r5"]).apply(null,arguments)};var _emscripten_enum_ObjectsContainersList_VariableExistence_ExistsOnlyOnSomeObjectsOfTheGroup=Module["_emscripten_enum_ObjectsContainersList_VariableExistence_ExistsOnlyOnSomeObjectsOfTheGroup"]=function(){return(_emscripten_enum_ObjectsContainersList_VariableExistence_ExistsOnlyOnSomeObjectsOfTheGroup=Module["_emscripten_enum_ObjectsContainersList_VariableExistence_ExistsOnlyOnSomeObjectsOfTheGroup"]=Module["asm"]["s5"]).apply(null,arguments)};var _emscripten_enum_CustomObjectConfiguration_EdgeAnchor_NoAnchor=Module["_emscripten_enum_CustomObjectConfiguration_EdgeAnchor_NoAnchor"]=function(){return(_emscripten_enum_CustomObjectConfiguration_EdgeAnchor_NoAnchor=Module["_emscripten_enum_CustomObjectConfiguration_EdgeAnchor_NoAnchor"]=Module["asm"]["t5"]).apply(null,arguments)};var _emscripten_enum_CustomObjectConfiguration_EdgeAnchor_MinEdge=Module["_emscripten_enum_CustomObjectConfiguration_EdgeAnchor_MinEdge"]=function(){return(_emscripten_enum_CustomObjectConfiguration_EdgeAnchor_MinEdge=Module["_emscripten_enum_CustomObjectConfiguration_EdgeAnchor_MinEdge"]=Module["asm"]["u5"]).apply(null,arguments)};var _emscripten_enum_CustomObjectConfiguration_EdgeAnchor_MaxEdge=Module["_emscripten_enum_CustomObjectConfiguration_EdgeAnchor_MaxEdge"]=function(){return(_emscripten_enum_CustomObjectConfiguration_EdgeAnchor_MaxEdge=Module["_emscripten_enum_CustomObjectConfiguration_EdgeAnchor_MaxEdge"]=Module["asm"]["v5"]).apply(null,arguments)};var _emscripten_enum_CustomObjectConfiguration_EdgeAnchor_Proportional=Module["_emscripten_enum_CustomObjectConfiguration_EdgeAnchor_Proportional"]=function(){return(_emscripten_enum_CustomObjectConfiguration_EdgeAnchor_Proportional=Module["_emscripten_enum_CustomObjectConfiguration_EdgeAnchor_Proportional"]=Module["asm"]["w5"]).apply(null,arguments)};var _emscripten_enum_CustomObjectConfiguration_EdgeAnchor_Center=Module["_emscripten_enum_CustomObjectConfiguration_EdgeAnchor_Center"]=function(){return(_emscripten_enum_CustomObjectConfiguration_EdgeAnchor_Center=Module["_emscripten_enum_CustomObjectConfiguration_EdgeAnchor_Center"]=Module["asm"]["x5"]).apply(null,arguments)};var _emscripten_enum_ResourcesContainer_SourceType_Unknown=Module["_emscripten_enum_ResourcesContainer_SourceType_Unknown"]=function(){return(_emscripten_enum_ResourcesContainer_SourceType_Unknown=Module["_emscripten_enum_ResourcesContainer_SourceType_Unknown"]=Module["asm"]["y5"]).apply(null,arguments)};var _emscripten_enum_ResourcesContainer_SourceType_Global=Module["_emscripten_enum_ResourcesContainer_SourceType_Global"]=function(){return(_emscripten_enum_ResourcesContainer_SourceType_Global=Module["_emscripten_enum_ResourcesContainer_SourceType_Global"]=Module["asm"]["z5"]).apply(null,arguments)};var _emscripten_enum_ResourcesContainer_SourceType_Parameters=Module["_emscripten_enum_ResourcesContainer_SourceType_Parameters"]=function(){return(_emscripten_enum_ResourcesContainer_SourceType_Parameters=Module["_emscripten_enum_ResourcesContainer_SourceType_Parameters"]=Module["asm"]["A5"]).apply(null,arguments)};var _emscripten_enum_ResourcesContainer_SourceType_Properties=Module["_emscripten_enum_ResourcesContainer_SourceType_Properties"]=function(){return(_emscripten_enum_ResourcesContainer_SourceType_Properties=Module["_emscripten_enum_ResourcesContainer_SourceType_Properties"]=Module["asm"]["B5"]).apply(null,arguments)};var _emscripten_enum_QuickCustomization_Visibility_Default=Module["_emscripten_enum_QuickCustomization_Visibility_Default"]=function(){return(_emscripten_enum_QuickCustomization_Visibility_Default=Module["_emscripten_enum_QuickCustomization_Visibility_Default"]=Module["asm"]["C5"]).apply(null,arguments)};var _emscripten_enum_QuickCustomization_Visibility_Visible=Module["_emscripten_enum_QuickCustomization_Visibility_Visible"]=function(){return(_emscripten_enum_QuickCustomization_Visibility_Visible=Module["_emscripten_enum_QuickCustomization_Visibility_Visible"]=Module["asm"]["D5"]).apply(null,arguments)};var _emscripten_enum_QuickCustomization_Visibility_Hidden=Module["_emscripten_enum_QuickCustomization_Visibility_Hidden"]=function(){return(_emscripten_enum_QuickCustomization_Visibility_Hidden=Module["_emscripten_enum_QuickCustomization_Visibility_Hidden"]=Module["asm"]["E5"]).apply(null,arguments)};var _emscripten_enum_ProjectDiagnostic_ErrorType_UndeclaredVariable=Module["_emscripten_enum_ProjectDiagnostic_ErrorType_UndeclaredVariable"]=function(){return(_emscripten_enum_ProjectDiagnostic_ErrorType_UndeclaredVariable=Module["_emscripten_enum_ProjectDiagnostic_ErrorType_UndeclaredVariable"]=Module["asm"]["F5"]).apply(null,arguments)};var _emscripten_enum_ProjectDiagnostic_ErrorType_MissingBehavior=Module["_emscripten_enum_ProjectDiagnostic_ErrorType_MissingBehavior"]=function(){return(_emscripten_enum_ProjectDiagnostic_ErrorType_MissingBehavior=Module["_emscripten_enum_ProjectDiagnostic_ErrorType_MissingBehavior"]=Module["asm"]["G5"]).apply(null,arguments)};var _emscripten_enum_ProjectDiagnostic_ErrorType_UnknownObject=Module["_emscripten_enum_ProjectDiagnostic_ErrorType_UnknownObject"]=function(){return(_emscripten_enum_ProjectDiagnostic_ErrorType_UnknownObject=Module["_emscripten_enum_ProjectDiagnostic_ErrorType_UnknownObject"]=Module["asm"]["H5"]).apply(null,arguments)};var _emscripten_enum_ProjectDiagnostic_ErrorType_MismatchedObjectType=Module["_emscripten_enum_ProjectDiagnostic_ErrorType_MismatchedObjectType"]=function(){return(_emscripten_enum_ProjectDiagnostic_ErrorType_MismatchedObjectType=Module["_emscripten_enum_ProjectDiagnostic_ErrorType_MismatchedObjectType"]=Module["asm"]["I5"]).apply(null,arguments)};var _emscripten_enum_ExpressionParserError_ErrorType_SyntaxError=Module["_emscripten_enum_ExpressionParserError_ErrorType_SyntaxError"]=function(){return(_emscripten_enum_ExpressionParserError_ErrorType_SyntaxError=Module["_emscripten_enum_ExpressionParserError_ErrorType_SyntaxError"]=Module["asm"]["J5"]).apply(null,arguments)};var _emscripten_enum_ExpressionParserError_ErrorType_InvalidOperator=Module["_emscripten_enum_ExpressionParserError_ErrorType_InvalidOperator"]=function(){return(_emscripten_enum_ExpressionParserError_ErrorType_InvalidOperator=Module["_emscripten_enum_ExpressionParserError_ErrorType_InvalidOperator"]=Module["asm"]["K5"]).apply(null,arguments)};var _emscripten_enum_ExpressionParserError_ErrorType_MismatchedType=Module["_emscripten_enum_ExpressionParserError_ErrorType_MismatchedType"]=function(){return(_emscripten_enum_ExpressionParserError_ErrorType_MismatchedType=Module["_emscripten_enum_ExpressionParserError_ErrorType_MismatchedType"]=Module["asm"]["L5"]).apply(null,arguments)};var _emscripten_enum_ExpressionParserError_ErrorType_UndeclaredVariable=Module["_emscripten_enum_ExpressionParserError_ErrorType_UndeclaredVariable"]=function(){return(_emscripten_enum_ExpressionParserError_ErrorType_UndeclaredVariable=Module["_emscripten_enum_ExpressionParserError_ErrorType_UndeclaredVariable"]=Module["asm"]["M5"]).apply(null,arguments)};var _emscripten_enum_ExpressionParserError_ErrorType_UnknownIdentifier=Module["_emscripten_enum_ExpressionParserError_ErrorType_UnknownIdentifier"]=function(){return(_emscripten_enum_ExpressionParserError_ErrorType_UnknownIdentifier=Module["_emscripten_enum_ExpressionParserError_ErrorType_UnknownIdentifier"]=Module["asm"]["N5"]).apply(null,arguments)};var _emscripten_enum_ExpressionParserError_ErrorType_BracketsNotAllowedForObjects=Module["_emscripten_enum_ExpressionParserError_ErrorType_BracketsNotAllowedForObjects"]=function(){return(_emscripten_enum_ExpressionParserError_ErrorType_BracketsNotAllowedForObjects=Module["_emscripten_enum_ExpressionParserError_ErrorType_BracketsNotAllowedForObjects"]=Module["asm"]["O5"]).apply(null,arguments)};var _emscripten_enum_ExpressionParserError_ErrorType_TooFewParameters=Module["_emscripten_enum_ExpressionParserError_ErrorType_TooFewParameters"]=function(){return(_emscripten_enum_ExpressionParserError_ErrorType_TooFewParameters=Module["_emscripten_enum_ExpressionParserError_ErrorType_TooFewParameters"]=Module["asm"]["P5"]).apply(null,arguments)};var _emscripten_enum_ExpressionParserError_ErrorType_TooManyParameters=Module["_emscripten_enum_ExpressionParserError_ErrorType_TooManyParameters"]=function(){return(_emscripten_enum_ExpressionParserError_ErrorType_TooManyParameters=Module["_emscripten_enum_ExpressionParserError_ErrorType_TooManyParameters"]=Module["asm"]["Q5"]).apply(null,arguments)};var _emscripten_enum_ExpressionParserError_ErrorType_InvalidFunctionName=Module["_emscripten_enum_ExpressionParserError_ErrorType_InvalidFunctionName"]=function(){return(_emscripten_enum_ExpressionParserError_ErrorType_InvalidFunctionName=Module["_emscripten_enum_ExpressionParserError_ErrorType_InvalidFunctionName"]=Module["asm"]["R5"]).apply(null,arguments)};var _emscripten_enum_ExpressionParserError_ErrorType_MalformedVariableParameter=Module["_emscripten_enum_ExpressionParserError_ErrorType_MalformedVariableParameter"]=function(){return(_emscripten_enum_ExpressionParserError_ErrorType_MalformedVariableParameter=Module["_emscripten_enum_ExpressionParserError_ErrorType_MalformedVariableParameter"]=Module["asm"]["S5"]).apply(null,arguments)};var _emscripten_enum_ExpressionParserError_ErrorType_MalformedObjectParameter=Module["_emscripten_enum_ExpressionParserError_ErrorType_MalformedObjectParameter"]=function(){return(_emscripten_enum_ExpressionParserError_ErrorType_MalformedObjectParameter=Module["_emscripten_enum_ExpressionParserError_ErrorType_MalformedObjectParameter"]=Module["asm"]["T5"]).apply(null,arguments)};var _emscripten_enum_ExpressionParserError_ErrorType_UnknownParameterType=Module["_emscripten_enum_ExpressionParserError_ErrorType_UnknownParameterType"]=function(){return(_emscripten_enum_ExpressionParserError_ErrorType_UnknownParameterType=Module["_emscripten_enum_ExpressionParserError_ErrorType_UnknownParameterType"]=Module["asm"]["U5"]).apply(null,arguments)};var _emscripten_enum_ExpressionParserError_ErrorType_MissingBehavior=Module["_emscripten_enum_ExpressionParserError_ErrorType_MissingBehavior"]=function(){return(_emscripten_enum_ExpressionParserError_ErrorType_MissingBehavior=Module["_emscripten_enum_ExpressionParserError_ErrorType_MissingBehavior"]=Module["asm"]["V5"]).apply(null,arguments)};var _emscripten_enum_ExpressionParserError_ErrorType_VariableNameCollision=Module["_emscripten_enum_ExpressionParserError_ErrorType_VariableNameCollision"]=function(){return(_emscripten_enum_ExpressionParserError_ErrorType_VariableNameCollision=Module["_emscripten_enum_ExpressionParserError_ErrorType_VariableNameCollision"]=Module["asm"]["W5"]).apply(null,arguments)};var _emscripten_enum_ExpressionParserError_ErrorType_DeprecatedExpression=Module["_emscripten_enum_ExpressionParserError_ErrorType_DeprecatedExpression"]=function(){return(_emscripten_enum_ExpressionParserError_ErrorType_DeprecatedExpression=Module["_emscripten_enum_ExpressionParserError_ErrorType_DeprecatedExpression"]=Module["asm"]["X5"]).apply(null,arguments)};var _emscripten_enum_ExpressionCompletionDescription_CompletionKind_Object=Module["_emscripten_enum_ExpressionCompletionDescription_CompletionKind_Object"]=function(){return(_emscripten_enum_ExpressionCompletionDescription_CompletionKind_Object=Module["_emscripten_enum_ExpressionCompletionDescription_CompletionKind_Object"]=Module["asm"]["Y5"]).apply(null,arguments)};var _emscripten_enum_ExpressionCompletionDescription_CompletionKind_BehaviorWithPrefix=Module["_emscripten_enum_ExpressionCompletionDescription_CompletionKind_BehaviorWithPrefix"]=function(){return(_emscripten_enum_ExpressionCompletionDescription_CompletionKind_BehaviorWithPrefix=Module["_emscripten_enum_ExpressionCompletionDescription_CompletionKind_BehaviorWithPrefix"]=Module["asm"]["Z5"]).apply(null,arguments)};var _emscripten_enum_ExpressionCompletionDescription_CompletionKind_ExpressionWithPrefix=Module["_emscripten_enum_ExpressionCompletionDescription_CompletionKind_ExpressionWithPrefix"]=function(){return(_emscripten_enum_ExpressionCompletionDescription_CompletionKind_ExpressionWithPrefix=Module["_emscripten_enum_ExpressionCompletionDescription_CompletionKind_ExpressionWithPrefix"]=Module["asm"]["_5"]).apply(null,arguments)};var _emscripten_enum_ExpressionCompletionDescription_CompletionKind_Variable=Module["_emscripten_enum_ExpressionCompletionDescription_CompletionKind_Variable"]=function(){return(_emscripten_enum_ExpressionCompletionDescription_CompletionKind_Variable=Module["_emscripten_enum_ExpressionCompletionDescription_CompletionKind_Variable"]=Module["asm"]["$5"]).apply(null,arguments)};var _emscripten_enum_ExpressionCompletionDescription_CompletionKind_TextWithPrefix=Module["_emscripten_enum_ExpressionCompletionDescription_CompletionKind_TextWithPrefix"]=function(){return(_emscripten_enum_ExpressionCompletionDescription_CompletionKind_TextWithPrefix=Module["_emscripten_enum_ExpressionCompletionDescription_CompletionKind_TextWithPrefix"]=Module["asm"]["a6"]).apply(null,arguments)};var _emscripten_enum_ExpressionCompletionDescription_CompletionKind_Property=Module["_emscripten_enum_ExpressionCompletionDescription_CompletionKind_Property"]=function(){return(_emscripten_enum_ExpressionCompletionDescription_CompletionKind_Property=Module["_emscripten_enum_ExpressionCompletionDescription_CompletionKind_Property"]=Module["asm"]["b6"]).apply(null,arguments)};var _emscripten_enum_ExpressionCompletionDescription_CompletionKind_Parameter=Module["_emscripten_enum_ExpressionCompletionDescription_CompletionKind_Parameter"]=function(){return(_emscripten_enum_ExpressionCompletionDescription_CompletionKind_Parameter=Module["_emscripten_enum_ExpressionCompletionDescription_CompletionKind_Parameter"]=Module["asm"]["c6"]).apply(null,arguments)};var _emscripten_enum_EventsFunction_FunctionType_Action=Module["_emscripten_enum_EventsFunction_FunctionType_Action"]=function(){return(_emscripten_enum_EventsFunction_FunctionType_Action=Module["_emscripten_enum_EventsFunction_FunctionType_Action"]=Module["asm"]["d6"]).apply(null,arguments)};var _emscripten_enum_EventsFunction_FunctionType_Condition=Module["_emscripten_enum_EventsFunction_FunctionType_Condition"]=function(){return(_emscripten_enum_EventsFunction_FunctionType_Condition=Module["_emscripten_enum_EventsFunction_FunctionType_Condition"]=Module["asm"]["e6"]).apply(null,arguments)};var _emscripten_enum_EventsFunction_FunctionType_Expression=Module["_emscripten_enum_EventsFunction_FunctionType_Expression"]=function(){return(_emscripten_enum_EventsFunction_FunctionType_Expression=Module["_emscripten_enum_EventsFunction_FunctionType_Expression"]=Module["asm"]["f6"]).apply(null,arguments)};var _emscripten_enum_EventsFunction_FunctionType_ExpressionAndCondition=Module["_emscripten_enum_EventsFunction_FunctionType_ExpressionAndCondition"]=function(){return(_emscripten_enum_EventsFunction_FunctionType_ExpressionAndCondition=Module["_emscripten_enum_EventsFunction_FunctionType_ExpressionAndCondition"]=Module["asm"]["g6"]).apply(null,arguments)};var _emscripten_enum_EventsFunction_FunctionType_ActionWithOperator=Module["_emscripten_enum_EventsFunction_FunctionType_ActionWithOperator"]=function(){return(_emscripten_enum_EventsFunction_FunctionType_ActionWithOperator=Module["_emscripten_enum_EventsFunction_FunctionType_ActionWithOperator"]=Module["asm"]["h6"]).apply(null,arguments)};var _emscripten_enum_EventsFunctionsContainer_FunctionOwner_Extension=Module["_emscripten_enum_EventsFunctionsContainer_FunctionOwner_Extension"]=function(){return(_emscripten_enum_EventsFunctionsContainer_FunctionOwner_Extension=Module["_emscripten_enum_EventsFunctionsContainer_FunctionOwner_Extension"]=Module["asm"]["i6"]).apply(null,arguments)};var _emscripten_enum_EventsFunctionsContainer_FunctionOwner_Behavior=Module["_emscripten_enum_EventsFunctionsContainer_FunctionOwner_Behavior"]=function(){return(_emscripten_enum_EventsFunctionsContainer_FunctionOwner_Behavior=Module["_emscripten_enum_EventsFunctionsContainer_FunctionOwner_Behavior"]=Module["asm"]["j6"]).apply(null,arguments)};var _emscripten_enum_EventsFunctionsContainer_FunctionOwner_Object=Module["_emscripten_enum_EventsFunctionsContainer_FunctionOwner_Object"]=function(){return(_emscripten_enum_EventsFunctionsContainer_FunctionOwner_Object=Module["_emscripten_enum_EventsFunctionsContainer_FunctionOwner_Object"]=Module["asm"]["k6"]).apply(null,arguments)};var _emscripten_enum_ParticleEmitterObject_RendererType_Point=Module["_emscripten_enum_ParticleEmitterObject_RendererType_Point"]=function(){return(_emscripten_enum_ParticleEmitterObject_RendererType_Point=Module["_emscripten_enum_ParticleEmitterObject_RendererType_Point"]=Module["asm"]["l6"]).apply(null,arguments)};var _emscripten_enum_ParticleEmitterObject_RendererType_Line=Module["_emscripten_enum_ParticleEmitterObject_RendererType_Line"]=function(){return(_emscripten_enum_ParticleEmitterObject_RendererType_Line=Module["_emscripten_enum_ParticleEmitterObject_RendererType_Line"]=Module["asm"]["m6"]).apply(null,arguments)};var _emscripten_enum_ParticleEmitterObject_RendererType_Quad=Module["_emscripten_enum_ParticleEmitterObject_RendererType_Quad"]=function(){return(_emscripten_enum_ParticleEmitterObject_RendererType_Quad=Module["_emscripten_enum_ParticleEmitterObject_RendererType_Quad"]=Module["asm"]["n6"]).apply(null,arguments)};var _malloc=Module["_malloc"]=function(){return(_malloc=Module["_malloc"]=Module["asm"]["p6"]).apply(null,arguments)};var _free=Module["_free"]=function(){return(_free=Module["_free"]=Module["asm"]["q6"]).apply(null,arguments)};var ___cxa_is_pointer_type=Module["___cxa_is_pointer_type"]=function(){return(___cxa_is_pointer_type=Module["___cxa_is_pointer_type"]=Module["asm"]["r6"]).apply(null,arguments)};var ___start_em_js=Module["___start_em_js"]=898165;var ___stop_em_js=Module["___stop_em_js"]=898263;var calledRun;dependenciesFulfilled=function runCaller(){if(!calledRun)run();if(!calledRun)dependenciesFulfilled=runCaller};function run(args){args=args||arguments_;if(runDependencies>0){return}preRun();if(runDependencies>0){return}function doRun(){if(calledRun)return;calledRun=true;Module["calledRun"]=true;if(ABORT)return;initRuntime();readyPromiseResolve(Module);if(Module["onRuntimeInitialized"])Module["onRuntimeInitialized"]();postRun()}if(Module["setStatus"]){Module["setStatus"]("Running...");setTimeout(function(){setTimeout(function(){Module["setStatus"]("")},1);doRun()},1)}else{doRun()}}if(Module["preInit"]){if(typeof Module["preInit"]=="function")Module["preInit"]=[Module["preInit"]];while(Module["preInit"].length>0){Module["preInit"].pop()()}}run();function WrapperObject(){}WrapperObject.prototype=Object.create(WrapperObject.prototype);WrapperObject.prototype.constructor=WrapperObject;WrapperObject.prototype.__class__=WrapperObject;WrapperObject.__cache__={};Module["WrapperObject"]=WrapperObject;function getCache(__class__){return(__class__||WrapperObject).__cache__}Module["getCache"]=getCache;function wrapPointer(ptr,__class__){var cache=getCache(__class__);var ret=cache[ptr];if(ret)return ret;ret=Object.create((__class__||WrapperObject).prototype);ret.ptr=ptr;return cache[ptr]=ret}Module["wrapPointer"]=wrapPointer;function castObject(obj,__class__){return wrapPointer(obj.ptr,__class__)}Module["castObject"]=castObject;Module["NULL"]=wrapPointer(0);function destroy(obj){if(!obj["__destroy__"])throw"Error: Cannot destroy object. (Did you create it yourself?)";obj["__destroy__"]();delete getCache(obj.__class__)[obj.ptr]}Module["destroy"]=destroy;function compare(obj1,obj2){return obj1.ptr===obj2.ptr}Module["compare"]=compare;function getPointer(obj){return obj.ptr}Module["getPointer"]=getPointer;function getClass(obj){return obj.__class__}Module["getClass"]=getClass;var ensureCache={buffer:0,size:0,pos:0,temps:[],needed:0,prepare:function(){if(ensureCache.needed){for(var i=0;i<ensureCache.temps.length;i++){Module["_free"](ensureCache.temps[i])}ensureCache.temps.length=0;Module["_free"](ensureCache.buffer);ensureCache.buffer=0;ensureCache.size+=ensureCache.needed;ensureCache.needed=0}if(!ensureCache.buffer){ensureCache.size+=128;ensureCache.buffer=Module["_malloc"](ensureCache.size);assert(ensureCache.buffer)}ensureCache.pos=0},alloc:function(array,view){assert(ensureCache.buffer);var bytes=view.BYTES_PER_ELEMENT;var len=array.length*bytes;len=len+7&-8;var ret;if(ensureCache.pos+len>=ensureCache.size){assert(len>0);ensureCache.needed+=len;ret=Module["_malloc"](len);ensureCache.temps.push(ret)}else{ret=ensureCache.buffer+ensureCache.pos;ensureCache.pos+=len}return ret},copy:function(array,view,offset){offset>>>=0;var bytes=view.BYTES_PER_ELEMENT;switch(bytes){case 2:offset>>>=1;break;case 4:offset>>>=2;break;case 8:offset>>>=3;break}for(var i=0;i<array.length;i++){view[offset+i]=array[i]}}};function ensureString(value){if(typeof value==="string"){var intArray=intArrayFromString(value);var offset=ensureCache.alloc(intArray,HEAP8);ensureCache.copy(intArray,HEAP8,offset);return offset}return value}function Resource(){this.ptr=_emscripten_bind_Resource_Resource_0();getCache(Resource)[this.ptr]=this}Resource.prototype=Object.create(WrapperObject.prototype);Resource.prototype.constructor=Resource;Resource.prototype.__class__=Resource;Resource.__cache__={};Module["Resource"]=Resource;Resource.prototype["Clone"]=Resource.prototype.Clone=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_Resource_Clone_0(self),Resource)};Resource.prototype["SetName"]=Resource.prototype.SetName=function(name){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);_emscripten_bind_Resource_SetName_1(self,name)};Resource.prototype["GetName"]=Resource.prototype.GetName=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_Resource_GetName_0(self))};Resource.prototype["SetKind"]=Resource.prototype.SetKind=function(kind){var self=this.ptr;ensureCache.prepare();if(kind&&typeof kind==="object")kind=kind.ptr;else kind=ensureString(kind);_emscripten_bind_Resource_SetKind_1(self,kind)};Resource.prototype["GetKind"]=Resource.prototype.GetKind=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_Resource_GetKind_0(self))};Resource.prototype["IsUserAdded"]=Resource.prototype.IsUserAdded=function(){var self=this.ptr;return!!_emscripten_bind_Resource_IsUserAdded_0(self)};Resource.prototype["SetUserAdded"]=Resource.prototype.SetUserAdded=function(yes){var self=this.ptr;if(yes&&typeof yes==="object")yes=yes.ptr;_emscripten_bind_Resource_SetUserAdded_1(self,yes)};Resource.prototype["UseFile"]=Resource.prototype.UseFile=function(){var self=this.ptr;return!!_emscripten_bind_Resource_UseFile_0(self)};Resource.prototype["SetFile"]=Resource.prototype.SetFile=function(file){var self=this.ptr;ensureCache.prepare();if(file&&typeof file==="object")file=file.ptr;else file=ensureString(file);_emscripten_bind_Resource_SetFile_1(self,file)};Resource.prototype["GetFile"]=Resource.prototype.GetFile=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_Resource_GetFile_0(self))};Resource.prototype["SetMetadata"]=Resource.prototype.SetMetadata=function(metadata){var self=this.ptr;ensureCache.prepare();if(metadata&&typeof metadata==="object")metadata=metadata.ptr;else metadata=ensureString(metadata);_emscripten_bind_Resource_SetMetadata_1(self,metadata)};Resource.prototype["GetMetadata"]=Resource.prototype.GetMetadata=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_Resource_GetMetadata_0(self))};Resource.prototype["SetOrigin"]=Resource.prototype.SetOrigin=function(originName,originIdentifier){var self=this.ptr;ensureCache.prepare();if(originName&&typeof originName==="object")originName=originName.ptr;else originName=ensureString(originName);if(originIdentifier&&typeof originIdentifier==="object")originIdentifier=originIdentifier.ptr;else originIdentifier=ensureString(originIdentifier);_emscripten_bind_Resource_SetOrigin_2(self,originName,originIdentifier)};Resource.prototype["GetOriginName"]=Resource.prototype.GetOriginName=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_Resource_GetOriginName_0(self))};Resource.prototype["GetOriginIdentifier"]=Resource.prototype.GetOriginIdentifier=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_Resource_GetOriginIdentifier_0(self))};Resource.prototype["GetProperties"]=Resource.prototype.GetProperties=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_Resource_GetProperties_0(self),MapStringPropertyDescriptor)};Resource.prototype["UpdateProperty"]=Resource.prototype.UpdateProperty=function(name,value){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);if(value&&typeof value==="object")value=value.ptr;else value=ensureString(value);return!!_emscripten_bind_Resource_UpdateProperty_2(self,name,value)};Resource.prototype["SerializeTo"]=Resource.prototype.SerializeTo=function(element){var self=this.ptr;if(element&&typeof element==="object")element=element.ptr;_emscripten_bind_Resource_SerializeTo_1(self,element)};Resource.prototype["UnserializeFrom"]=Resource.prototype.UnserializeFrom=function(element){var self=this.ptr;if(element&&typeof element==="object")element=element.ptr;_emscripten_bind_Resource_UnserializeFrom_1(self,element)};Resource.prototype["__destroy__"]=Resource.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_Resource___destroy___0(self)};function Platform(){throw"cannot construct a Platform, no constructor in IDL"}Platform.prototype=Object.create(WrapperObject.prototype);Platform.prototype.constructor=Platform;Platform.prototype.__class__=Platform;Platform.__cache__={};Module["Platform"]=Platform;Platform.prototype["GetName"]=Platform.prototype.GetName=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_Platform_GetName_0(self))};Platform.prototype["GetFullName"]=Platform.prototype.GetFullName=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_Platform_GetFullName_0(self))};Platform.prototype["GetSubtitle"]=Platform.prototype.GetSubtitle=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_Platform_GetSubtitle_0(self))};Platform.prototype["GetDescription"]=Platform.prototype.GetDescription=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_Platform_GetDescription_0(self))};Platform.prototype["GetInstructionOrExpressionGroupMetadata"]=Platform.prototype.GetInstructionOrExpressionGroupMetadata=function(name){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);return wrapPointer(_emscripten_bind_Platform_GetInstructionOrExpressionGroupMetadata_1(self,name),InstructionOrExpressionGroupMetadata)};Platform.prototype["IsExtensionLoaded"]=Platform.prototype.IsExtensionLoaded=function(name){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);return!!_emscripten_bind_Platform_IsExtensionLoaded_1(self,name)};Platform.prototype["RemoveExtension"]=Platform.prototype.RemoveExtension=function(name){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);_emscripten_bind_Platform_RemoveExtension_1(self,name)};Platform.prototype["ReloadBuiltinExtensions"]=Platform.prototype.ReloadBuiltinExtensions=function(){var self=this.ptr;_emscripten_bind_Platform_ReloadBuiltinExtensions_0(self)};Platform.prototype["CreateObjectConfiguration"]=Platform.prototype.CreateObjectConfiguration=function(type){var self=this.ptr;ensureCache.prepare();if(type&&typeof type==="object")type=type.ptr;else type=ensureString(type);return wrapPointer(_emscripten_bind_Platform_CreateObjectConfiguration_1(self,type),UniquePtrObjectConfiguration)};Platform.prototype["GetAllPlatformExtensions"]=Platform.prototype.GetAllPlatformExtensions=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_Platform_GetAllPlatformExtensions_0(self),VectorPlatformExtension)};Platform.prototype["__destroy__"]=Platform.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_Platform___destroy___0(self)};function Behavior(){this.ptr=_emscripten_bind_Behavior_Behavior_0();getCache(Behavior)[this.ptr]=this}Behavior.prototype=Object.create(WrapperObject.prototype);Behavior.prototype.constructor=Behavior;Behavior.prototype.__class__=Behavior;Behavior.__cache__={};Module["Behavior"]=Behavior;Behavior.prototype["SetName"]=Behavior.prototype.SetName=function(name){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);_emscripten_bind_Behavior_SetName_1(self,name)};Behavior.prototype["GetName"]=Behavior.prototype.GetName=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_Behavior_GetName_0(self))};Behavior.prototype["GetTypeName"]=Behavior.prototype.GetTypeName=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_Behavior_GetTypeName_0(self))};Behavior.prototype["GetProperties"]=Behavior.prototype.GetProperties=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_Behavior_GetProperties_0(self),MapStringPropertyDescriptor)};Behavior.prototype["UpdateProperty"]=Behavior.prototype.UpdateProperty=function(name,value){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);if(value&&typeof value==="object")value=value.ptr;else value=ensureString(value);return!!_emscripten_bind_Behavior_UpdateProperty_2(self,name,value)};Behavior.prototype["RemoveProperty"]=Behavior.prototype.RemoveProperty=function(name){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);_emscripten_bind_Behavior_RemoveProperty_1(self,name)};Behavior.prototype["InitializeContent"]=Behavior.prototype.InitializeContent=function(){var self=this.ptr;_emscripten_bind_Behavior_InitializeContent_0(self)};Behavior.prototype["HasPropertyValue"]=Behavior.prototype.HasPropertyValue=function(name){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);return!!_emscripten_bind_Behavior_HasPropertyValue_1(self,name)};Behavior.prototype["SerializeTo"]=Behavior.prototype.SerializeTo=function(element){var self=this.ptr;if(element&&typeof element==="object")element=element.ptr;_emscripten_bind_Behavior_SerializeTo_1(self,element)};Behavior.prototype["UnserializeFrom"]=Behavior.prototype.UnserializeFrom=function(element){var self=this.ptr;if(element&&typeof element==="object")element=element.ptr;_emscripten_bind_Behavior_UnserializeFrom_1(self,element)};Behavior.prototype["IsFolded"]=Behavior.prototype.IsFolded=function(){var self=this.ptr;return!!_emscripten_bind_Behavior_IsFolded_0(self)};Behavior.prototype["SetFolded"]=Behavior.prototype.SetFolded=function(folded){var self=this.ptr;if(folded&&typeof folded==="object")folded=folded.ptr;_emscripten_bind_Behavior_SetFolded_1(self,folded)};Behavior.prototype["IsDefaultBehavior"]=Behavior.prototype.IsDefaultBehavior=function(){var self=this.ptr;return!!_emscripten_bind_Behavior_IsDefaultBehavior_0(self)};Behavior.prototype["GetPropertiesQuickCustomizationVisibilities"]=Behavior.prototype.GetPropertiesQuickCustomizationVisibilities=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_Behavior_GetPropertiesQuickCustomizationVisibilities_0(self),QuickCustomizationVisibilitiesContainer)};Behavior.prototype["__destroy__"]=Behavior.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_Behavior___destroy___0(self)};function BehaviorsSharedData(){this.ptr=_emscripten_bind_BehaviorsSharedData_BehaviorsSharedData_0();getCache(BehaviorsSharedData)[this.ptr]=this}BehaviorsSharedData.prototype=Object.create(WrapperObject.prototype);BehaviorsSharedData.prototype.constructor=BehaviorsSharedData;BehaviorsSharedData.prototype.__class__=BehaviorsSharedData;BehaviorsSharedData.__cache__={};Module["BehaviorsSharedData"]=BehaviorsSharedData;BehaviorsSharedData.prototype["SetName"]=BehaviorsSharedData.prototype.SetName=function(name){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);_emscripten_bind_BehaviorsSharedData_SetName_1(self,name)};BehaviorsSharedData.prototype["GetName"]=BehaviorsSharedData.prototype.GetName=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_BehaviorsSharedData_GetName_0(self))};BehaviorsSharedData.prototype["GetTypeName"]=BehaviorsSharedData.prototype.GetTypeName=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_BehaviorsSharedData_GetTypeName_0(self))};BehaviorsSharedData.prototype["GetProperties"]=BehaviorsSharedData.prototype.GetProperties=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_BehaviorsSharedData_GetProperties_0(self),MapStringPropertyDescriptor)};BehaviorsSharedData.prototype["UpdateProperty"]=BehaviorsSharedData.prototype.UpdateProperty=function(name,value){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);if(value&&typeof value==="object")value=value.ptr;else value=ensureString(value);return!!_emscripten_bind_BehaviorsSharedData_UpdateProperty_2(self,name,value)};BehaviorsSharedData.prototype["InitializeContent"]=BehaviorsSharedData.prototype.InitializeContent=function(){var self=this.ptr;_emscripten_bind_BehaviorsSharedData_InitializeContent_0(self)};BehaviorsSharedData.prototype["GetPropertiesQuickCustomizationVisibilities"]=BehaviorsSharedData.prototype.GetPropertiesQuickCustomizationVisibilities=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_BehaviorsSharedData_GetPropertiesQuickCustomizationVisibilities_0(self),QuickCustomizationVisibilitiesContainer)};BehaviorsSharedData.prototype["__destroy__"]=BehaviorsSharedData.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_BehaviorsSharedData___destroy___0(self)};function ObjectConfiguration(){this.ptr=_emscripten_bind_ObjectConfiguration_ObjectConfiguration_0();getCache(ObjectConfiguration)[this.ptr]=this}ObjectConfiguration.prototype=Object.create(WrapperObject.prototype);ObjectConfiguration.prototype.constructor=ObjectConfiguration;ObjectConfiguration.prototype.__class__=ObjectConfiguration;ObjectConfiguration.__cache__={};Module["ObjectConfiguration"]=ObjectConfiguration;ObjectConfiguration.prototype["Clone"]=ObjectConfiguration.prototype.Clone=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_ObjectConfiguration_Clone_0(self),UniquePtrObjectConfiguration)};ObjectConfiguration.prototype["GetType"]=ObjectConfiguration.prototype.GetType=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_ObjectConfiguration_GetType_0(self))};ObjectConfiguration.prototype["SetType"]=ObjectConfiguration.prototype.SetType=function(typeName){var self=this.ptr;ensureCache.prepare();if(typeName&&typeof typeName==="object")typeName=typeName.ptr;else typeName=ensureString(typeName);_emscripten_bind_ObjectConfiguration_SetType_1(self,typeName)};ObjectConfiguration.prototype["GetProperties"]=ObjectConfiguration.prototype.GetProperties=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_ObjectConfiguration_GetProperties_0(self),MapStringPropertyDescriptor)};ObjectConfiguration.prototype["UpdateProperty"]=ObjectConfiguration.prototype.UpdateProperty=function(name,value){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);if(value&&typeof value==="object")value=value.ptr;else value=ensureString(value);return!!_emscripten_bind_ObjectConfiguration_UpdateProperty_2(self,name,value)};ObjectConfiguration.prototype["GetInitialInstanceProperties"]=ObjectConfiguration.prototype.GetInitialInstanceProperties=function(instance){var self=this.ptr;if(instance&&typeof instance==="object")instance=instance.ptr;return wrapPointer(_emscripten_bind_ObjectConfiguration_GetInitialInstanceProperties_1(self,instance),MapStringPropertyDescriptor)};ObjectConfiguration.prototype["UpdateInitialInstanceProperty"]=ObjectConfiguration.prototype.UpdateInitialInstanceProperty=function(instance,name,value){var self=this.ptr;ensureCache.prepare();if(instance&&typeof instance==="object")instance=instance.ptr;if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);if(value&&typeof value==="object")value=value.ptr;else value=ensureString(value);return!!_emscripten_bind_ObjectConfiguration_UpdateInitialInstanceProperty_3(self,instance,name,value)};ObjectConfiguration.prototype["ExposeResources"]=ObjectConfiguration.prototype.ExposeResources=function(worker){var self=this.ptr;if(worker&&typeof worker==="object")worker=worker.ptr;_emscripten_bind_ObjectConfiguration_ExposeResources_1(self,worker)};ObjectConfiguration.prototype["SerializeTo"]=ObjectConfiguration.prototype.SerializeTo=function(element){var self=this.ptr;if(element&&typeof element==="object")element=element.ptr;_emscripten_bind_ObjectConfiguration_SerializeTo_1(self,element)};ObjectConfiguration.prototype["UnserializeFrom"]=ObjectConfiguration.prototype.UnserializeFrom=function(project,element){var self=this.ptr;if(project&&typeof project==="object")project=project.ptr;if(element&&typeof element==="object")element=element.ptr;_emscripten_bind_ObjectConfiguration_UnserializeFrom_2(self,project,element)};ObjectConfiguration.prototype["GetAnimationsCount"]=ObjectConfiguration.prototype.GetAnimationsCount=function(){var self=this.ptr;return _emscripten_bind_ObjectConfiguration_GetAnimationsCount_0(self)};ObjectConfiguration.prototype["GetAnimationName"]=ObjectConfiguration.prototype.GetAnimationName=function(index){var self=this.ptr;if(index&&typeof index==="object")index=index.ptr;return UTF8ToString(_emscripten_bind_ObjectConfiguration_GetAnimationName_1(self,index))};ObjectConfiguration.prototype["__destroy__"]=ObjectConfiguration.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_ObjectConfiguration___destroy___0(self)};function PropertyDescriptor(propValue){ensureCache.prepare();if(propValue&&typeof propValue==="object")propValue=propValue.ptr;else propValue=ensureString(propValue);this.ptr=_emscripten_bind_PropertyDescriptor_PropertyDescriptor_1(propValue);getCache(PropertyDescriptor)[this.ptr]=this}PropertyDescriptor.prototype=Object.create(WrapperObject.prototype);PropertyDescriptor.prototype.constructor=PropertyDescriptor;PropertyDescriptor.prototype.__class__=PropertyDescriptor;PropertyDescriptor.__cache__={};Module["PropertyDescriptor"]=PropertyDescriptor;PropertyDescriptor.prototype["SetValue"]=PropertyDescriptor.prototype.SetValue=function(value){var self=this.ptr;ensureCache.prepare();if(value&&typeof value==="object")value=value.ptr;else value=ensureString(value);return wrapPointer(_emscripten_bind_PropertyDescriptor_SetValue_1(self,value),PropertyDescriptor)};PropertyDescriptor.prototype["GetValue"]=PropertyDescriptor.prototype.GetValue=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_PropertyDescriptor_GetValue_0(self))};PropertyDescriptor.prototype["SetType"]=PropertyDescriptor.prototype.SetType=function(type){var self=this.ptr;ensureCache.prepare();if(type&&typeof type==="object")type=type.ptr;else type=ensureString(type);return wrapPointer(_emscripten_bind_PropertyDescriptor_SetType_1(self,type),PropertyDescriptor)};PropertyDescriptor.prototype["GetType"]=PropertyDescriptor.prototype.GetType=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_PropertyDescriptor_GetType_0(self))};PropertyDescriptor.prototype["SetLabel"]=PropertyDescriptor.prototype.SetLabel=function(label){var self=this.ptr;ensureCache.prepare();if(label&&typeof label==="object")label=label.ptr;else label=ensureString(label);return wrapPointer(_emscripten_bind_PropertyDescriptor_SetLabel_1(self,label),PropertyDescriptor)};PropertyDescriptor.prototype["GetLabel"]=PropertyDescriptor.prototype.GetLabel=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_PropertyDescriptor_GetLabel_0(self))};PropertyDescriptor.prototype["SetDescription"]=PropertyDescriptor.prototype.SetDescription=function(label){var self=this.ptr;ensureCache.prepare();if(label&&typeof label==="object")label=label.ptr;else label=ensureString(label);return wrapPointer(_emscripten_bind_PropertyDescriptor_SetDescription_1(self,label),PropertyDescriptor)};PropertyDescriptor.prototype["GetDescription"]=PropertyDescriptor.prototype.GetDescription=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_PropertyDescriptor_GetDescription_0(self))};PropertyDescriptor.prototype["SetGroup"]=PropertyDescriptor.prototype.SetGroup=function(label){var self=this.ptr;ensureCache.prepare();if(label&&typeof label==="object")label=label.ptr;else label=ensureString(label);return wrapPointer(_emscripten_bind_PropertyDescriptor_SetGroup_1(self,label),PropertyDescriptor)};PropertyDescriptor.prototype["GetGroup"]=PropertyDescriptor.prototype.GetGroup=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_PropertyDescriptor_GetGroup_0(self))};PropertyDescriptor.prototype["ClearChoices"]=PropertyDescriptor.prototype.ClearChoices=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_PropertyDescriptor_ClearChoices_0(self),PropertyDescriptor)};PropertyDescriptor.prototype["AddChoice"]=PropertyDescriptor.prototype.AddChoice=function(value,label){var self=this.ptr;ensureCache.prepare();if(value&&typeof value==="object")value=value.ptr;else value=ensureString(value);if(label&&typeof label==="object")label=label.ptr;else label=ensureString(label);return wrapPointer(_emscripten_bind_PropertyDescriptor_AddChoice_2(self,value,label),PropertyDescriptor)};PropertyDescriptor.prototype["GetChoices"]=PropertyDescriptor.prototype.GetChoices=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_PropertyDescriptor_GetChoices_0(self),VectorPropertyDescriptorChoice)};PropertyDescriptor.prototype["AddExtraInfo"]=PropertyDescriptor.prototype.AddExtraInfo=function(type){var self=this.ptr;ensureCache.prepare();if(type&&typeof type==="object")type=type.ptr;else type=ensureString(type);return wrapPointer(_emscripten_bind_PropertyDescriptor_AddExtraInfo_1(self,type),PropertyDescriptor)};PropertyDescriptor.prototype["SetExtraInfo"]=PropertyDescriptor.prototype.SetExtraInfo=function(info){var self=this.ptr;if(info&&typeof info==="object")info=info.ptr;return wrapPointer(_emscripten_bind_PropertyDescriptor_SetExtraInfo_1(self,info),PropertyDescriptor)};PropertyDescriptor.prototype["GetExtraInfo"]=PropertyDescriptor.prototype.GetExtraInfo=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_PropertyDescriptor_GetExtraInfo_0(self),VectorString)};PropertyDescriptor.prototype["SetHidden"]=PropertyDescriptor.prototype.SetHidden=function(enable){var self=this.ptr;if(enable&&typeof enable==="object")enable=enable.ptr;return wrapPointer(_emscripten_bind_PropertyDescriptor_SetHidden_1(self,enable),PropertyDescriptor)};PropertyDescriptor.prototype["IsHidden"]=PropertyDescriptor.prototype.IsHidden=function(){var self=this.ptr;return!!_emscripten_bind_PropertyDescriptor_IsHidden_0(self)};PropertyDescriptor.prototype["SetDeprecated"]=PropertyDescriptor.prototype.SetDeprecated=function(enable){var self=this.ptr;if(enable&&typeof enable==="object")enable=enable.ptr;return wrapPointer(_emscripten_bind_PropertyDescriptor_SetDeprecated_1(self,enable),PropertyDescriptor)};PropertyDescriptor.prototype["IsDeprecated"]=PropertyDescriptor.prototype.IsDeprecated=function(){var self=this.ptr;return!!_emscripten_bind_PropertyDescriptor_IsDeprecated_0(self)};PropertyDescriptor.prototype["SetAdvanced"]=PropertyDescriptor.prototype.SetAdvanced=function(enable){var self=this.ptr;if(enable&&typeof enable==="object")enable=enable.ptr;return wrapPointer(_emscripten_bind_PropertyDescriptor_SetAdvanced_1(self,enable),PropertyDescriptor)};PropertyDescriptor.prototype["IsAdvanced"]=PropertyDescriptor.prototype.IsAdvanced=function(){var self=this.ptr;return!!_emscripten_bind_PropertyDescriptor_IsAdvanced_0(self)};PropertyDescriptor.prototype["GetMeasurementUnit"]=PropertyDescriptor.prototype.GetMeasurementUnit=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_PropertyDescriptor_GetMeasurementUnit_0(self),MeasurementUnit)};PropertyDescriptor.prototype["SetMeasurementUnit"]=PropertyDescriptor.prototype.SetMeasurementUnit=function(measurementUnit){var self=this.ptr;if(measurementUnit&&typeof measurementUnit==="object")measurementUnit=measurementUnit.ptr;return wrapPointer(_emscripten_bind_PropertyDescriptor_SetMeasurementUnit_1(self,measurementUnit),PropertyDescriptor)};PropertyDescriptor.prototype["HasImpactOnOtherProperties"]=PropertyDescriptor.prototype.HasImpactOnOtherProperties=function(){var self=this.ptr;return!!_emscripten_bind_PropertyDescriptor_HasImpactOnOtherProperties_0(self)};PropertyDescriptor.prototype["SetHasImpactOnOtherProperties"]=PropertyDescriptor.prototype.SetHasImpactOnOtherProperties=function(enable){var self=this.ptr;if(enable&&typeof enable==="object")enable=enable.ptr;return wrapPointer(_emscripten_bind_PropertyDescriptor_SetHasImpactOnOtherProperties_1(self,enable),PropertyDescriptor)};PropertyDescriptor.prototype["GetQuickCustomizationVisibility"]=PropertyDescriptor.prototype.GetQuickCustomizationVisibility=function(){var self=this.ptr;return _emscripten_bind_PropertyDescriptor_GetQuickCustomizationVisibility_0(self)};PropertyDescriptor.prototype["SetQuickCustomizationVisibility"]=PropertyDescriptor.prototype.SetQuickCustomizationVisibility=function(visibility){var self=this.ptr;if(visibility&&typeof visibility==="object")visibility=visibility.ptr;return wrapPointer(_emscripten_bind_PropertyDescriptor_SetQuickCustomizationVisibility_1(self,visibility),PropertyDescriptor)};PropertyDescriptor.prototype["SerializeTo"]=PropertyDescriptor.prototype.SerializeTo=function(element){var self=this.ptr;if(element&&typeof element==="object")element=element.ptr;_emscripten_bind_PropertyDescriptor_SerializeTo_1(self,element)};PropertyDescriptor.prototype["UnserializeFrom"]=PropertyDescriptor.prototype.UnserializeFrom=function(element){var self=this.ptr;if(element&&typeof element==="object")element=element.ptr;_emscripten_bind_PropertyDescriptor_UnserializeFrom_1(self,element)};PropertyDescriptor.prototype["SerializeValuesTo"]=PropertyDescriptor.prototype.SerializeValuesTo=function(element){var self=this.ptr;if(element&&typeof element==="object")element=element.ptr;_emscripten_bind_PropertyDescriptor_SerializeValuesTo_1(self,element)};PropertyDescriptor.prototype["UnserializeValuesFrom"]=PropertyDescriptor.prototype.UnserializeValuesFrom=function(element){var self=this.ptr;if(element&&typeof element==="object")element=element.ptr;_emscripten_bind_PropertyDescriptor_UnserializeValuesFrom_1(self,element)};PropertyDescriptor.prototype["__destroy__"]=PropertyDescriptor.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_PropertyDescriptor___destroy___0(self)};function JsonResource(){this.ptr=_emscripten_bind_JsonResource_JsonResource_0();getCache(JsonResource)[this.ptr]=this}JsonResource.prototype=Object.create(Resource.prototype);JsonResource.prototype.constructor=JsonResource;JsonResource.prototype.__class__=JsonResource;JsonResource.__cache__={};Module["JsonResource"]=JsonResource;JsonResource.prototype["Clone"]=JsonResource.prototype.Clone=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_JsonResource_Clone_0(self),Resource)};JsonResource.prototype["SetName"]=JsonResource.prototype.SetName=function(name){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);_emscripten_bind_JsonResource_SetName_1(self,name)};JsonResource.prototype["GetName"]=JsonResource.prototype.GetName=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_JsonResource_GetName_0(self))};JsonResource.prototype["SetKind"]=JsonResource.prototype.SetKind=function(kind){var self=this.ptr;ensureCache.prepare();if(kind&&typeof kind==="object")kind=kind.ptr;else kind=ensureString(kind);_emscripten_bind_JsonResource_SetKind_1(self,kind)};JsonResource.prototype["GetKind"]=JsonResource.prototype.GetKind=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_JsonResource_GetKind_0(self))};JsonResource.prototype["IsUserAdded"]=JsonResource.prototype.IsUserAdded=function(){var self=this.ptr;return!!_emscripten_bind_JsonResource_IsUserAdded_0(self)};JsonResource.prototype["SetUserAdded"]=JsonResource.prototype.SetUserAdded=function(yes){var self=this.ptr;if(yes&&typeof yes==="object")yes=yes.ptr;_emscripten_bind_JsonResource_SetUserAdded_1(self,yes)};JsonResource.prototype["UseFile"]=JsonResource.prototype.UseFile=function(){var self=this.ptr;return!!_emscripten_bind_JsonResource_UseFile_0(self)};JsonResource.prototype["SetFile"]=JsonResource.prototype.SetFile=function(file){var self=this.ptr;ensureCache.prepare();if(file&&typeof file==="object")file=file.ptr;else file=ensureString(file);_emscripten_bind_JsonResource_SetFile_1(self,file)};JsonResource.prototype["GetFile"]=JsonResource.prototype.GetFile=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_JsonResource_GetFile_0(self))};JsonResource.prototype["SetMetadata"]=JsonResource.prototype.SetMetadata=function(metadata){var self=this.ptr;ensureCache.prepare();if(metadata&&typeof metadata==="object")metadata=metadata.ptr;else metadata=ensureString(metadata);_emscripten_bind_JsonResource_SetMetadata_1(self,metadata)};JsonResource.prototype["GetMetadata"]=JsonResource.prototype.GetMetadata=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_JsonResource_GetMetadata_0(self))};JsonResource.prototype["SetOrigin"]=JsonResource.prototype.SetOrigin=function(originName,originIdentifier){var self=this.ptr;ensureCache.prepare();if(originName&&typeof originName==="object")originName=originName.ptr;else originName=ensureString(originName);if(originIdentifier&&typeof originIdentifier==="object")originIdentifier=originIdentifier.ptr;else originIdentifier=ensureString(originIdentifier);_emscripten_bind_JsonResource_SetOrigin_2(self,originName,originIdentifier)};JsonResource.prototype["GetOriginName"]=JsonResource.prototype.GetOriginName=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_JsonResource_GetOriginName_0(self))};JsonResource.prototype["GetOriginIdentifier"]=JsonResource.prototype.GetOriginIdentifier=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_JsonResource_GetOriginIdentifier_0(self))};JsonResource.prototype["GetProperties"]=JsonResource.prototype.GetProperties=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_JsonResource_GetProperties_0(self),MapStringPropertyDescriptor)};JsonResource.prototype["UpdateProperty"]=JsonResource.prototype.UpdateProperty=function(name,value){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);if(value&&typeof value==="object")value=value.ptr;else value=ensureString(value);return!!_emscripten_bind_JsonResource_UpdateProperty_2(self,name,value)};JsonResource.prototype["SerializeTo"]=JsonResource.prototype.SerializeTo=function(element){var self=this.ptr;if(element&&typeof element==="object")element=element.ptr;_emscripten_bind_JsonResource_SerializeTo_1(self,element)};JsonResource.prototype["UnserializeFrom"]=JsonResource.prototype.UnserializeFrom=function(element){var self=this.ptr;if(element&&typeof element==="object")element=element.ptr;_emscripten_bind_JsonResource_UnserializeFrom_1(self,element)};JsonResource.prototype["__destroy__"]=JsonResource.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_JsonResource___destroy___0(self)};function InitialInstanceJSFunctorWrapper(){throw"cannot construct a InitialInstanceJSFunctorWrapper, no constructor in IDL"}InitialInstanceJSFunctorWrapper.prototype=Object.create(WrapperObject.prototype);InitialInstanceJSFunctorWrapper.prototype.constructor=InitialInstanceJSFunctorWrapper;InitialInstanceJSFunctorWrapper.prototype.__class__=InitialInstanceJSFunctorWrapper;InitialInstanceJSFunctorWrapper.__cache__={};Module["InitialInstanceJSFunctorWrapper"]=InitialInstanceJSFunctorWrapper;InitialInstanceJSFunctorWrapper.prototype["__destroy__"]=InitialInstanceJSFunctorWrapper.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_InitialInstanceJSFunctorWrapper___destroy___0(self)};function AbstractFunctionMetadata(){throw"cannot construct a AbstractFunctionMetadata, no constructor in IDL"}AbstractFunctionMetadata.prototype=Object.create(WrapperObject.prototype);AbstractFunctionMetadata.prototype.constructor=AbstractFunctionMetadata;AbstractFunctionMetadata.prototype.__class__=AbstractFunctionMetadata;AbstractFunctionMetadata.__cache__={};Module["AbstractFunctionMetadata"]=AbstractFunctionMetadata;AbstractFunctionMetadata.prototype["AddParameter"]=AbstractFunctionMetadata.prototype.AddParameter=function(type,description,optionalObjectType,parameterIsOptional){var self=this.ptr;ensureCache.prepare();if(type&&typeof type==="object")type=type.ptr;else type=ensureString(type);if(description&&typeof description==="object")description=description.ptr;else description=ensureString(description);if(optionalObjectType&&typeof optionalObjectType==="object")optionalObjectType=optionalObjectType.ptr;else optionalObjectType=ensureString(optionalObjectType);if(parameterIsOptional&&typeof parameterIsOptional==="object")parameterIsOptional=parameterIsOptional.ptr;if(optionalObjectType===undefined){return wrapPointer(_emscripten_bind_AbstractFunctionMetadata_AddParameter_2(self,type,description),AbstractFunctionMetadata)}if(parameterIsOptional===undefined){return wrapPointer(_emscripten_bind_AbstractFunctionMetadata_AddParameter_3(self,type,description,optionalObjectType),AbstractFunctionMetadata)}return wrapPointer(_emscripten_bind_AbstractFunctionMetadata_AddParameter_4(self,type,description,optionalObjectType,parameterIsOptional),AbstractFunctionMetadata)};AbstractFunctionMetadata.prototype["AddCodeOnlyParameter"]=AbstractFunctionMetadata.prototype.AddCodeOnlyParameter=function(type,supplementaryInformation){var self=this.ptr;ensureCache.prepare();if(type&&typeof type==="object")type=type.ptr;else type=ensureString(type);if(supplementaryInformation&&typeof supplementaryInformation==="object")supplementaryInformation=supplementaryInformation.ptr;else supplementaryInformation=ensureString(supplementaryInformation);return wrapPointer(_emscripten_bind_AbstractFunctionMetadata_AddCodeOnlyParameter_2(self,type,supplementaryInformation),AbstractFunctionMetadata)};AbstractFunctionMetadata.prototype["SetDefaultValue"]=AbstractFunctionMetadata.prototype.SetDefaultValue=function(defaultValue){var self=this.ptr;ensureCache.prepare();if(defaultValue&&typeof defaultValue==="object")defaultValue=defaultValue.ptr;else defaultValue=ensureString(defaultValue);return wrapPointer(_emscripten_bind_AbstractFunctionMetadata_SetDefaultValue_1(self,defaultValue),AbstractFunctionMetadata)};AbstractFunctionMetadata.prototype["SetParameterLongDescription"]=AbstractFunctionMetadata.prototype.SetParameterLongDescription=function(longDescription){var self=this.ptr;ensureCache.prepare();if(longDescription&&typeof longDescription==="object")longDescription=longDescription.ptr;else longDescription=ensureString(longDescription);return wrapPointer(_emscripten_bind_AbstractFunctionMetadata_SetParameterLongDescription_1(self,longDescription),AbstractFunctionMetadata)};AbstractFunctionMetadata.prototype["SetParameterHint"]=AbstractFunctionMetadata.prototype.SetParameterHint=function(hint){var self=this.ptr;ensureCache.prepare();if(hint&&typeof hint==="object")hint=hint.ptr;else hint=ensureString(hint);return wrapPointer(_emscripten_bind_AbstractFunctionMetadata_SetParameterHint_1(self,hint),AbstractFunctionMetadata)};AbstractFunctionMetadata.prototype["SetParameterExtraInfo"]=AbstractFunctionMetadata.prototype.SetParameterExtraInfo=function(extraInfo){var self=this.ptr;ensureCache.prepare();if(extraInfo&&typeof extraInfo==="object")extraInfo=extraInfo.ptr;else extraInfo=ensureString(extraInfo);return wrapPointer(_emscripten_bind_AbstractFunctionMetadata_SetParameterExtraInfo_1(self,extraInfo),AbstractFunctionMetadata)};AbstractFunctionMetadata.prototype["SetHidden"]=AbstractFunctionMetadata.prototype.SetHidden=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_AbstractFunctionMetadata_SetHidden_0(self),AbstractFunctionMetadata)};AbstractFunctionMetadata.prototype["SetPrivate"]=AbstractFunctionMetadata.prototype.SetPrivate=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_AbstractFunctionMetadata_SetPrivate_0(self),AbstractFunctionMetadata)};AbstractFunctionMetadata.prototype["SetFunctionName"]=AbstractFunctionMetadata.prototype.SetFunctionName=function(functionName){var self=this.ptr;ensureCache.prepare();if(functionName&&typeof functionName==="object")functionName=functionName.ptr;else functionName=ensureString(functionName);return wrapPointer(_emscripten_bind_AbstractFunctionMetadata_SetFunctionName_1(self,functionName),AbstractFunctionMetadata)};AbstractFunctionMetadata.prototype["SetIncludeFile"]=AbstractFunctionMetadata.prototype.SetIncludeFile=function(includeFile){var self=this.ptr;ensureCache.prepare();if(includeFile&&typeof includeFile==="object")includeFile=includeFile.ptr;else includeFile=ensureString(includeFile);return wrapPointer(_emscripten_bind_AbstractFunctionMetadata_SetIncludeFile_1(self,includeFile),AbstractFunctionMetadata)};AbstractFunctionMetadata.prototype["AddIncludeFile"]=AbstractFunctionMetadata.prototype.AddIncludeFile=function(includeFile){var self=this.ptr;ensureCache.prepare();if(includeFile&&typeof includeFile==="object")includeFile=includeFile.ptr;else includeFile=ensureString(includeFile);return wrapPointer(_emscripten_bind_AbstractFunctionMetadata_AddIncludeFile_1(self,includeFile),AbstractFunctionMetadata)};AbstractFunctionMetadata.prototype["GetIncludeFiles"]=AbstractFunctionMetadata.prototype.GetIncludeFiles=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_AbstractFunctionMetadata_GetIncludeFiles_0(self),VectorString)};AbstractFunctionMetadata.prototype["__destroy__"]=AbstractFunctionMetadata.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_AbstractFunctionMetadata___destroy___0(self)};function BaseEvent(){this.ptr=_emscripten_bind_BaseEvent_BaseEvent_0();getCache(BaseEvent)[this.ptr]=this}BaseEvent.prototype=Object.create(WrapperObject.prototype);BaseEvent.prototype.constructor=BaseEvent;BaseEvent.prototype.__class__=BaseEvent;BaseEvent.__cache__={};Module["BaseEvent"]=BaseEvent;BaseEvent.prototype["Clone"]=BaseEvent.prototype.Clone=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_BaseEvent_Clone_0(self),BaseEvent)};BaseEvent.prototype["GetType"]=BaseEvent.prototype.GetType=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_BaseEvent_GetType_0(self))};BaseEvent.prototype["SetType"]=BaseEvent.prototype.SetType=function(type){var self=this.ptr;ensureCache.prepare();if(type&&typeof type==="object")type=type.ptr;else type=ensureString(type);_emscripten_bind_BaseEvent_SetType_1(self,type)};BaseEvent.prototype["IsExecutable"]=BaseEvent.prototype.IsExecutable=function(){var self=this.ptr;return!!_emscripten_bind_BaseEvent_IsExecutable_0(self)};BaseEvent.prototype["CanHaveSubEvents"]=BaseEvent.prototype.CanHaveSubEvents=function(){var self=this.ptr;return!!_emscripten_bind_BaseEvent_CanHaveSubEvents_0(self)};BaseEvent.prototype["HasSubEvents"]=BaseEvent.prototype.HasSubEvents=function(){var self=this.ptr;return!!_emscripten_bind_BaseEvent_HasSubEvents_0(self)};BaseEvent.prototype["GetSubEvents"]=BaseEvent.prototype.GetSubEvents=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_BaseEvent_GetSubEvents_0(self),EventsList)};BaseEvent.prototype["CanHaveVariables"]=BaseEvent.prototype.CanHaveVariables=function(){var self=this.ptr;return!!_emscripten_bind_BaseEvent_CanHaveVariables_0(self)};BaseEvent.prototype["HasVariables"]=BaseEvent.prototype.HasVariables=function(){var self=this.ptr;return!!_emscripten_bind_BaseEvent_HasVariables_0(self)};BaseEvent.prototype["GetVariables"]=BaseEvent.prototype.GetVariables=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_BaseEvent_GetVariables_0(self),VariablesContainer)};BaseEvent.prototype["IsDisabled"]=BaseEvent.prototype.IsDisabled=function(){var self=this.ptr;return!!_emscripten_bind_BaseEvent_IsDisabled_0(self)};BaseEvent.prototype["SetDisabled"]=BaseEvent.prototype.SetDisabled=function(disable){var self=this.ptr;if(disable&&typeof disable==="object")disable=disable.ptr;_emscripten_bind_BaseEvent_SetDisabled_1(self,disable)};BaseEvent.prototype["IsFolded"]=BaseEvent.prototype.IsFolded=function(){var self=this.ptr;return!!_emscripten_bind_BaseEvent_IsFolded_0(self)};BaseEvent.prototype["SetFolded"]=BaseEvent.prototype.SetFolded=function(folded){var self=this.ptr;if(folded&&typeof folded==="object")folded=folded.ptr;_emscripten_bind_BaseEvent_SetFolded_1(self,folded)};BaseEvent.prototype["SerializeTo"]=BaseEvent.prototype.SerializeTo=function(element){var self=this.ptr;if(element&&typeof element==="object")element=element.ptr;_emscripten_bind_BaseEvent_SerializeTo_1(self,element)};BaseEvent.prototype["UnserializeFrom"]=BaseEvent.prototype.UnserializeFrom=function(project,element){var self=this.ptr;if(project&&typeof project==="object")project=project.ptr;if(element&&typeof element==="object")element=element.ptr;_emscripten_bind_BaseEvent_UnserializeFrom_2(self,project,element)};BaseEvent.prototype["GetAiGeneratedEventId"]=BaseEvent.prototype.GetAiGeneratedEventId=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_BaseEvent_GetAiGeneratedEventId_0(self))};BaseEvent.prototype["SetAiGeneratedEventId"]=BaseEvent.prototype.SetAiGeneratedEventId=function(aiGeneratedEventId){var self=this.ptr;ensureCache.prepare();if(aiGeneratedEventId&&typeof aiGeneratedEventId==="object")aiGeneratedEventId=aiGeneratedEventId.ptr;else aiGeneratedEventId=ensureString(aiGeneratedEventId);_emscripten_bind_BaseEvent_SetAiGeneratedEventId_1(self,aiGeneratedEventId)};BaseEvent.prototype["__destroy__"]=BaseEvent.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_BaseEvent___destroy___0(self)};function AbstractEventsBasedEntity(){throw"cannot construct a AbstractEventsBasedEntity, no constructor in IDL"}AbstractEventsBasedEntity.prototype=Object.create(WrapperObject.prototype);AbstractEventsBasedEntity.prototype.constructor=AbstractEventsBasedEntity;AbstractEventsBasedEntity.prototype.__class__=AbstractEventsBasedEntity;AbstractEventsBasedEntity.__cache__={};Module["AbstractEventsBasedEntity"]=AbstractEventsBasedEntity;AbstractEventsBasedEntity.prototype["GetEventsFunctions"]=AbstractEventsBasedEntity.prototype.GetEventsFunctions=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_AbstractEventsBasedEntity_GetEventsFunctions_0(self),EventsFunctionsContainer)};AbstractEventsBasedEntity.prototype["GetPropertyDescriptors"]=AbstractEventsBasedEntity.prototype.GetPropertyDescriptors=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_AbstractEventsBasedEntity_GetPropertyDescriptors_0(self),PropertiesContainer)};AbstractEventsBasedEntity.prototype["GetName"]=AbstractEventsBasedEntity.prototype.GetName=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_AbstractEventsBasedEntity_GetName_0(self))};AbstractEventsBasedEntity.prototype["GetFullName"]=AbstractEventsBasedEntity.prototype.GetFullName=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_AbstractEventsBasedEntity_GetFullName_0(self))};AbstractEventsBasedEntity.prototype["GetDescription"]=AbstractEventsBasedEntity.prototype.GetDescription=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_AbstractEventsBasedEntity_GetDescription_0(self))};AbstractEventsBasedEntity.prototype["IsPrivate"]=AbstractEventsBasedEntity.prototype.IsPrivate=function(){var self=this.ptr;return!!_emscripten_bind_AbstractEventsBasedEntity_IsPrivate_0(self)};AbstractEventsBasedEntity.prototype["GetPreviewIconUrl"]=AbstractEventsBasedEntity.prototype.GetPreviewIconUrl=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_AbstractEventsBasedEntity_GetPreviewIconUrl_0(self))};AbstractEventsBasedEntity.prototype["GetIconUrl"]=AbstractEventsBasedEntity.prototype.GetIconUrl=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_AbstractEventsBasedEntity_GetIconUrl_0(self))};AbstractEventsBasedEntity.prototype["GetHelpPath"]=AbstractEventsBasedEntity.prototype.GetHelpPath=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_AbstractEventsBasedEntity_GetHelpPath_0(self))};AbstractEventsBasedEntity.prototype["SerializeTo"]=AbstractEventsBasedEntity.prototype.SerializeTo=function(element){var self=this.ptr;if(element&&typeof element==="object")element=element.ptr;_emscripten_bind_AbstractEventsBasedEntity_SerializeTo_1(self,element)};AbstractEventsBasedEntity.prototype["UnserializeFrom"]=AbstractEventsBasedEntity.prototype.UnserializeFrom=function(project,element){var self=this.ptr;if(project&&typeof project==="object")project=project.ptr;if(element&&typeof element==="object")element=element.ptr;_emscripten_bind_AbstractEventsBasedEntity_UnserializeFrom_2(self,project,element)};AbstractEventsBasedEntity.prototype["__destroy__"]=AbstractEventsBasedEntity.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_AbstractEventsBasedEntity___destroy___0(self)};function AbstractFileSystem(){throw"cannot construct a AbstractFileSystem, no constructor in IDL"}AbstractFileSystem.prototype=Object.create(WrapperObject.prototype);AbstractFileSystem.prototype.constructor=AbstractFileSystem;AbstractFileSystem.prototype.__class__=AbstractFileSystem;AbstractFileSystem.__cache__={};Module["AbstractFileSystem"]=AbstractFileSystem;AbstractFileSystem.prototype["__destroy__"]=AbstractFileSystem.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_AbstractFileSystem___destroy___0(self)};function ReadOnlyArbitraryEventsWorkerWithContext(){throw"cannot construct a ReadOnlyArbitraryEventsWorkerWithContext, no constructor in IDL"}ReadOnlyArbitraryEventsWorkerWithContext.prototype=Object.create(WrapperObject.prototype);ReadOnlyArbitraryEventsWorkerWithContext.prototype.constructor=ReadOnlyArbitraryEventsWorkerWithContext;ReadOnlyArbitraryEventsWorkerWithContext.prototype.__class__=ReadOnlyArbitraryEventsWorkerWithContext;ReadOnlyArbitraryEventsWorkerWithContext.__cache__={};Module["ReadOnlyArbitraryEventsWorkerWithContext"]=ReadOnlyArbitraryEventsWorkerWithContext;ReadOnlyArbitraryEventsWorkerWithContext.prototype["SetSkipDisabledEvents"]=ReadOnlyArbitraryEventsWorkerWithContext.prototype.SetSkipDisabledEvents=function(skip){var self=this.ptr;if(skip&&typeof skip==="object")skip=skip.ptr;_emscripten_bind_ReadOnlyArbitraryEventsWorkerWithContext_SetSkipDisabledEvents_1(self,skip)};ReadOnlyArbitraryEventsWorkerWithContext.prototype["Launch"]=ReadOnlyArbitraryEventsWorkerWithContext.prototype.Launch=function(events,projectScopedContainers){var self=this.ptr;if(events&&typeof events==="object")events=events.ptr;if(projectScopedContainers&&typeof projectScopedContainers==="object")projectScopedContainers=projectScopedContainers.ptr;_emscripten_bind_ReadOnlyArbitraryEventsWorkerWithContext_Launch_2(self,events,projectScopedContainers)};ReadOnlyArbitraryEventsWorkerWithContext.prototype["__destroy__"]=ReadOnlyArbitraryEventsWorkerWithContext.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_ReadOnlyArbitraryEventsWorkerWithContext___destroy___0(self)};function ArbitraryResourceWorker(){throw"cannot construct a ArbitraryResourceWorker, no constructor in IDL"}ArbitraryResourceWorker.prototype=Object.create(WrapperObject.prototype);ArbitraryResourceWorker.prototype.constructor=ArbitraryResourceWorker;ArbitraryResourceWorker.prototype.__class__=ArbitraryResourceWorker;ArbitraryResourceWorker.__cache__={};Module["ArbitraryResourceWorker"]=ArbitraryResourceWorker;ArbitraryResourceWorker.prototype["__destroy__"]=ArbitraryResourceWorker.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_ArbitraryResourceWorker___destroy___0(self)};function VoidPtr(){throw"cannot construct a VoidPtr, no constructor in IDL"}VoidPtr.prototype=Object.create(WrapperObject.prototype);VoidPtr.prototype.constructor=VoidPtr;VoidPtr.prototype.__class__=VoidPtr;VoidPtr.__cache__={};Module["VoidPtr"]=VoidPtr;VoidPtr.prototype["__destroy__"]=VoidPtr.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_VoidPtr___destroy___0(self)};function VectorString(){this.ptr=_emscripten_bind_VectorString_VectorString_0();getCache(VectorString)[this.ptr]=this}VectorString.prototype=Object.create(WrapperObject.prototype);VectorString.prototype.constructor=VectorString;VectorString.prototype.__class__=VectorString;VectorString.__cache__={};Module["VectorString"]=VectorString;VectorString.prototype["push_back"]=VectorString.prototype.push_back=function(str){var self=this.ptr;ensureCache.prepare();if(str&&typeof str==="object")str=str.ptr;else str=ensureString(str);_emscripten_bind_VectorString_push_back_1(self,str)};VectorString.prototype["resize"]=VectorString.prototype.resize=function(size){var self=this.ptr;if(size&&typeof size==="object")size=size.ptr;_emscripten_bind_VectorString_resize_1(self,size)};VectorString.prototype["size"]=VectorString.prototype.size=function(){var self=this.ptr;return _emscripten_bind_VectorString_size_0(self)};VectorString.prototype["at"]=VectorString.prototype.at=function(index){var self=this.ptr;if(index&&typeof index==="object")index=index.ptr;return UTF8ToString(_emscripten_bind_VectorString_at_1(self,index))};VectorString.prototype["WRAPPED_set"]=VectorString.prototype.WRAPPED_set=function(index,str){var self=this.ptr;ensureCache.prepare();if(index&&typeof index==="object")index=index.ptr;if(str&&typeof str==="object")str=str.ptr;else str=ensureString(str);_emscripten_bind_VectorString_WRAPPED_set_2(self,index,str)};VectorString.prototype["clear"]=VectorString.prototype.clear=function(){var self=this.ptr;_emscripten_bind_VectorString_clear_0(self)};VectorString.prototype["__destroy__"]=VectorString.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_VectorString___destroy___0(self)};function VectorPlatformExtension(){throw"cannot construct a VectorPlatformExtension, no constructor in IDL"}VectorPlatformExtension.prototype=Object.create(WrapperObject.prototype);VectorPlatformExtension.prototype.constructor=VectorPlatformExtension;VectorPlatformExtension.prototype.__class__=VectorPlatformExtension;VectorPlatformExtension.__cache__={};Module["VectorPlatformExtension"]=VectorPlatformExtension;VectorPlatformExtension.prototype["size"]=VectorPlatformExtension.prototype.size=function(){var self=this.ptr;return _emscripten_bind_VectorPlatformExtension_size_0(self)};VectorPlatformExtension.prototype["WRAPPED_at"]=VectorPlatformExtension.prototype.WRAPPED_at=function(index){var self=this.ptr;if(index&&typeof index==="object")index=index.ptr;return wrapPointer(_emscripten_bind_VectorPlatformExtension_WRAPPED_at_1(self,index),PlatformExtension)};VectorPlatformExtension.prototype["__destroy__"]=VectorPlatformExtension.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_VectorPlatformExtension___destroy___0(self)};function VectorDependencyMetadata(){throw"cannot construct a VectorDependencyMetadata, no constructor in IDL"}VectorDependencyMetadata.prototype=Object.create(WrapperObject.prototype);VectorDependencyMetadata.prototype.constructor=VectorDependencyMetadata;VectorDependencyMetadata.prototype.__class__=VectorDependencyMetadata;VectorDependencyMetadata.__cache__={};Module["VectorDependencyMetadata"]=VectorDependencyMetadata;VectorDependencyMetadata.prototype["size"]=VectorDependencyMetadata.prototype.size=function(){var self=this.ptr;return _emscripten_bind_VectorDependencyMetadata_size_0(self)};VectorDependencyMetadata.prototype["at"]=VectorDependencyMetadata.prototype.at=function(index){var self=this.ptr;if(index&&typeof index==="object")index=index.ptr;return wrapPointer(_emscripten_bind_VectorDependencyMetadata_at_1(self,index),DependencyMetadata)};VectorDependencyMetadata.prototype["__destroy__"]=VectorDependencyMetadata.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_VectorDependencyMetadata___destroy___0(self)};function VectorSourceFileMetadata(){throw"cannot construct a VectorSourceFileMetadata, no constructor in IDL"}VectorSourceFileMetadata.prototype=Object.create(WrapperObject.prototype);VectorSourceFileMetadata.prototype.constructor=VectorSourceFileMetadata;VectorSourceFileMetadata.prototype.__class__=VectorSourceFileMetadata;VectorSourceFileMetadata.__cache__={};Module["VectorSourceFileMetadata"]=VectorSourceFileMetadata;VectorSourceFileMetadata.prototype["size"]=VectorSourceFileMetadata.prototype.size=function(){var self=this.ptr;return _emscripten_bind_VectorSourceFileMetadata_size_0(self)};VectorSourceFileMetadata.prototype["at"]=VectorSourceFileMetadata.prototype.at=function(index){var self=this.ptr;if(index&&typeof index==="object")index=index.ptr;return wrapPointer(_emscripten_bind_VectorSourceFileMetadata_at_1(self,index),SourceFileMetadata)};VectorSourceFileMetadata.prototype["__destroy__"]=VectorSourceFileMetadata.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_VectorSourceFileMetadata___destroy___0(self)};function VectorInt(){throw"cannot construct a VectorInt, no constructor in IDL"}VectorInt.prototype=Object.create(WrapperObject.prototype);VectorInt.prototype.constructor=VectorInt;VectorInt.prototype.__class__=VectorInt;VectorInt.__cache__={};Module["VectorInt"]=VectorInt;VectorInt.prototype["size"]=VectorInt.prototype.size=function(){var self=this.ptr;return _emscripten_bind_VectorInt_size_0(self)};VectorInt.prototype["at"]=VectorInt.prototype.at=function(index){var self=this.ptr;if(index&&typeof index==="object")index=index.ptr;return _emscripten_bind_VectorInt_at_1(self,index)};VectorInt.prototype["__destroy__"]=VectorInt.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_VectorInt___destroy___0(self)};function VectorVariable(){throw"cannot construct a VectorVariable, no constructor in IDL"}VectorVariable.prototype=Object.create(WrapperObject.prototype);VectorVariable.prototype.constructor=VectorVariable;VectorVariable.prototype.__class__=VectorVariable;VectorVariable.__cache__={};Module["VectorVariable"]=VectorVariable;VectorVariable.prototype["size"]=VectorVariable.prototype.size=function(){var self=this.ptr;return _emscripten_bind_VectorVariable_size_0(self)};VectorVariable.prototype["WRAPPED_at"]=VectorVariable.prototype.WRAPPED_at=function(index){var self=this.ptr;if(index&&typeof index==="object")index=index.ptr;return wrapPointer(_emscripten_bind_VectorVariable_WRAPPED_at_1(self,index),Variable)};VectorVariable.prototype["__destroy__"]=VectorVariable.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_VectorVariable___destroy___0(self)};function VectorObjectFolderOrObject(){throw"cannot construct a VectorObjectFolderOrObject, no constructor in IDL"}VectorObjectFolderOrObject.prototype=Object.create(WrapperObject.prototype);VectorObjectFolderOrObject.prototype.constructor=VectorObjectFolderOrObject;VectorObjectFolderOrObject.prototype.__class__=VectorObjectFolderOrObject;VectorObjectFolderOrObject.__cache__={};Module["VectorObjectFolderOrObject"]=VectorObjectFolderOrObject;VectorObjectFolderOrObject.prototype["size"]=VectorObjectFolderOrObject.prototype.size=function(){var self=this.ptr;return _emscripten_bind_VectorObjectFolderOrObject_size_0(self)};VectorObjectFolderOrObject.prototype["at"]=VectorObjectFolderOrObject.prototype.at=function(index){var self=this.ptr;if(index&&typeof index==="object")index=index.ptr;return wrapPointer(_emscripten_bind_VectorObjectFolderOrObject_at_1(self,index),ObjectFolderOrObject)};VectorObjectFolderOrObject.prototype["__destroy__"]=VectorObjectFolderOrObject.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_VectorObjectFolderOrObject___destroy___0(self)};function VectorPropertyFolderOrProperty(){throw"cannot construct a VectorPropertyFolderOrProperty, no constructor in IDL"}VectorPropertyFolderOrProperty.prototype=Object.create(WrapperObject.prototype);VectorPropertyFolderOrProperty.prototype.constructor=VectorPropertyFolderOrProperty;VectorPropertyFolderOrProperty.prototype.__class__=VectorPropertyFolderOrProperty;VectorPropertyFolderOrProperty.__cache__={};Module["VectorPropertyFolderOrProperty"]=VectorPropertyFolderOrProperty;VectorPropertyFolderOrProperty.prototype["size"]=VectorPropertyFolderOrProperty.prototype.size=function(){var self=this.ptr;return _emscripten_bind_VectorPropertyFolderOrProperty_size_0(self)};VectorPropertyFolderOrProperty.prototype["at"]=VectorPropertyFolderOrProperty.prototype.at=function(index){var self=this.ptr;if(index&&typeof index==="object")index=index.ptr;return wrapPointer(_emscripten_bind_VectorPropertyFolderOrProperty_at_1(self,index),PropertyFolderOrProperty)};VectorPropertyFolderOrProperty.prototype["__destroy__"]=VectorPropertyFolderOrProperty.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_VectorPropertyFolderOrProperty___destroy___0(self)};function VectorFunctionFolderOrFunction(){throw"cannot construct a VectorFunctionFolderOrFunction, no constructor in IDL"}VectorFunctionFolderOrFunction.prototype=Object.create(WrapperObject.prototype);VectorFunctionFolderOrFunction.prototype.constructor=VectorFunctionFolderOrFunction;VectorFunctionFolderOrFunction.prototype.__class__=VectorFunctionFolderOrFunction;VectorFunctionFolderOrFunction.__cache__={};Module["VectorFunctionFolderOrFunction"]=VectorFunctionFolderOrFunction;VectorFunctionFolderOrFunction.prototype["size"]=VectorFunctionFolderOrFunction.prototype.size=function(){var self=this.ptr;return _emscripten_bind_VectorFunctionFolderOrFunction_size_0(self)};VectorFunctionFolderOrFunction.prototype["at"]=VectorFunctionFolderOrFunction.prototype.at=function(index){var self=this.ptr;if(index&&typeof index==="object")index=index.ptr;return wrapPointer(_emscripten_bind_VectorFunctionFolderOrFunction_at_1(self,index),FunctionFolderOrFunction)};VectorFunctionFolderOrFunction.prototype["__destroy__"]=VectorFunctionFolderOrFunction.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_VectorFunctionFolderOrFunction___destroy___0(self)};function VectorScreenshot(){throw"cannot construct a VectorScreenshot, no constructor in IDL"}VectorScreenshot.prototype=Object.create(WrapperObject.prototype);VectorScreenshot.prototype.constructor=VectorScreenshot;VectorScreenshot.prototype.__class__=VectorScreenshot;VectorScreenshot.__cache__={};Module["VectorScreenshot"]=VectorScreenshot;VectorScreenshot.prototype["size"]=VectorScreenshot.prototype.size=function(){var self=this.ptr;return _emscripten_bind_VectorScreenshot_size_0(self)};VectorScreenshot.prototype["at"]=VectorScreenshot.prototype.at=function(index){var self=this.ptr;if(index&&typeof index==="object")index=index.ptr;return wrapPointer(_emscripten_bind_VectorScreenshot_at_1(self,index),Screenshot)};VectorScreenshot.prototype["__destroy__"]=VectorScreenshot.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_VectorScreenshot___destroy___0(self)};function MapStringString(){this.ptr=_emscripten_bind_MapStringString_MapStringString_0();getCache(MapStringString)[this.ptr]=this}MapStringString.prototype=Object.create(WrapperObject.prototype);MapStringString.prototype.constructor=MapStringString;MapStringString.prototype.__class__=MapStringString;MapStringString.__cache__={};Module["MapStringString"]=MapStringString;MapStringString.prototype["MAP_get"]=MapStringString.prototype.MAP_get=function(name){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);return UTF8ToString(_emscripten_bind_MapStringString_MAP_get_1(self,name))};MapStringString.prototype["MAP_set"]=MapStringString.prototype.MAP_set=function(name,str){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);if(str&&typeof str==="object")str=str.ptr;else str=ensureString(str);_emscripten_bind_MapStringString_MAP_set_2(self,name,str)};MapStringString.prototype["MAP_has"]=MapStringString.prototype.MAP_has=function(name){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);return!!_emscripten_bind_MapStringString_MAP_has_1(self,name)};MapStringString.prototype["MAP_keys"]=MapStringString.prototype.MAP_keys=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_MapStringString_MAP_keys_0(self),VectorString)};MapStringString.prototype["__destroy__"]=MapStringString.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_MapStringString___destroy___0(self)};function MapStringBoolean(){this.ptr=_emscripten_bind_MapStringBoolean_MapStringBoolean_0();getCache(MapStringBoolean)[this.ptr]=this}MapStringBoolean.prototype=Object.create(WrapperObject.prototype);MapStringBoolean.prototype.constructor=MapStringBoolean;MapStringBoolean.prototype.__class__=MapStringBoolean;MapStringBoolean.__cache__={};Module["MapStringBoolean"]=MapStringBoolean;MapStringBoolean.prototype["MAP_get"]=MapStringBoolean.prototype.MAP_get=function(name){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);return!!_emscripten_bind_MapStringBoolean_MAP_get_1(self,name)};MapStringBoolean.prototype["MAP_set"]=MapStringBoolean.prototype.MAP_set=function(name,value){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);if(value&&typeof value==="object")value=value.ptr;_emscripten_bind_MapStringBoolean_MAP_set_2(self,name,value)};MapStringBoolean.prototype["MAP_has"]=MapStringBoolean.prototype.MAP_has=function(name){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);return!!_emscripten_bind_MapStringBoolean_MAP_has_1(self,name)};MapStringBoolean.prototype["MAP_keys"]=MapStringBoolean.prototype.MAP_keys=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_MapStringBoolean_MAP_keys_0(self),VectorString)};MapStringBoolean.prototype["__destroy__"]=MapStringBoolean.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_MapStringBoolean___destroy___0(self)};function MapStringDouble(){this.ptr=_emscripten_bind_MapStringDouble_MapStringDouble_0();getCache(MapStringDouble)[this.ptr]=this}MapStringDouble.prototype=Object.create(WrapperObject.prototype);MapStringDouble.prototype.constructor=MapStringDouble;MapStringDouble.prototype.__class__=MapStringDouble;MapStringDouble.__cache__={};Module["MapStringDouble"]=MapStringDouble;MapStringDouble.prototype["MAP_get"]=MapStringDouble.prototype.MAP_get=function(name){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);return _emscripten_bind_MapStringDouble_MAP_get_1(self,name)};MapStringDouble.prototype["MAP_set"]=MapStringDouble.prototype.MAP_set=function(name,value){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);if(value&&typeof value==="object")value=value.ptr;_emscripten_bind_MapStringDouble_MAP_set_2(self,name,value)};MapStringDouble.prototype["MAP_has"]=MapStringDouble.prototype.MAP_has=function(name){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);return _emscripten_bind_MapStringDouble_MAP_has_1(self,name)};MapStringDouble.prototype["MAP_keys"]=MapStringDouble.prototype.MAP_keys=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_MapStringDouble_MAP_keys_0(self),VectorString)};MapStringDouble.prototype["__destroy__"]=MapStringDouble.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_MapStringDouble___destroy___0(self)};function MapStringVariable(){throw"cannot construct a MapStringVariable, no constructor in IDL"}MapStringVariable.prototype=Object.create(WrapperObject.prototype);MapStringVariable.prototype.constructor=MapStringVariable;MapStringVariable.prototype.__class__=MapStringVariable;MapStringVariable.__cache__={};Module["MapStringVariable"]=MapStringVariable;MapStringVariable.prototype["MAP_get"]=MapStringVariable.prototype.MAP_get=function(name){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);return wrapPointer(_emscripten_bind_MapStringVariable_MAP_get_1(self,name),Variable)};MapStringVariable.prototype["MAP_set"]=MapStringVariable.prototype.MAP_set=function(name,prop){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);if(prop&&typeof prop==="object")prop=prop.ptr;_emscripten_bind_MapStringVariable_MAP_set_2(self,name,prop)};MapStringVariable.prototype["MAP_has"]=MapStringVariable.prototype.MAP_has=function(name){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);return!!_emscripten_bind_MapStringVariable_MAP_has_1(self,name)};MapStringVariable.prototype["MAP_keys"]=MapStringVariable.prototype.MAP_keys=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_MapStringVariable_MAP_keys_0(self),VectorString)};MapStringVariable.prototype["__destroy__"]=MapStringVariable.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_MapStringVariable___destroy___0(self)};function MapStringExpressionMetadata(){throw"cannot construct a MapStringExpressionMetadata, no constructor in IDL"}MapStringExpressionMetadata.prototype=Object.create(WrapperObject.prototype);MapStringExpressionMetadata.prototype.constructor=MapStringExpressionMetadata;MapStringExpressionMetadata.prototype.__class__=MapStringExpressionMetadata;MapStringExpressionMetadata.__cache__={};Module["MapStringExpressionMetadata"]=MapStringExpressionMetadata;MapStringExpressionMetadata.prototype["MAP_get"]=MapStringExpressionMetadata.prototype.MAP_get=function(name){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);return wrapPointer(_emscripten_bind_MapStringExpressionMetadata_MAP_get_1(self,name),ExpressionMetadata)};MapStringExpressionMetadata.prototype["MAP_set"]=MapStringExpressionMetadata.prototype.MAP_set=function(name,prop){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);if(prop&&typeof prop==="object")prop=prop.ptr;_emscripten_bind_MapStringExpressionMetadata_MAP_set_2(self,name,prop)};MapStringExpressionMetadata.prototype["MAP_has"]=MapStringExpressionMetadata.prototype.MAP_has=function(name){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);return!!_emscripten_bind_MapStringExpressionMetadata_MAP_has_1(self,name)};MapStringExpressionMetadata.prototype["MAP_keys"]=MapStringExpressionMetadata.prototype.MAP_keys=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_MapStringExpressionMetadata_MAP_keys_0(self),VectorString)};MapStringExpressionMetadata.prototype["__destroy__"]=MapStringExpressionMetadata.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_MapStringExpressionMetadata___destroy___0(self)};function MapStringInstructionMetadata(){throw"cannot construct a MapStringInstructionMetadata, no constructor in IDL"}MapStringInstructionMetadata.prototype=Object.create(WrapperObject.prototype);MapStringInstructionMetadata.prototype.constructor=MapStringInstructionMetadata;MapStringInstructionMetadata.prototype.__class__=MapStringInstructionMetadata;MapStringInstructionMetadata.__cache__={};Module["MapStringInstructionMetadata"]=MapStringInstructionMetadata;MapStringInstructionMetadata.prototype["MAP_get"]=MapStringInstructionMetadata.prototype.MAP_get=function(name){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);return wrapPointer(_emscripten_bind_MapStringInstructionMetadata_MAP_get_1(self,name),InstructionMetadata)};MapStringInstructionMetadata.prototype["MAP_set"]=MapStringInstructionMetadata.prototype.MAP_set=function(name,prop){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);if(prop&&typeof prop==="object")prop=prop.ptr;_emscripten_bind_MapStringInstructionMetadata_MAP_set_2(self,name,prop)};MapStringInstructionMetadata.prototype["MAP_has"]=MapStringInstructionMetadata.prototype.MAP_has=function(name){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);return!!_emscripten_bind_MapStringInstructionMetadata_MAP_has_1(self,name)};MapStringInstructionMetadata.prototype["MAP_keys"]=MapStringInstructionMetadata.prototype.MAP_keys=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_MapStringInstructionMetadata_MAP_keys_0(self),VectorString)};MapStringInstructionMetadata.prototype["__destroy__"]=MapStringInstructionMetadata.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_MapStringInstructionMetadata___destroy___0(self)};function MapStringEventMetadata(){throw"cannot construct a MapStringEventMetadata, no constructor in IDL"}MapStringEventMetadata.prototype=Object.create(WrapperObject.prototype);MapStringEventMetadata.prototype.constructor=MapStringEventMetadata;MapStringEventMetadata.prototype.__class__=MapStringEventMetadata;MapStringEventMetadata.__cache__={};Module["MapStringEventMetadata"]=MapStringEventMetadata;MapStringEventMetadata.prototype["MAP_get"]=MapStringEventMetadata.prototype.MAP_get=function(name){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);return wrapPointer(_emscripten_bind_MapStringEventMetadata_MAP_get_1(self,name),EventMetadata)};MapStringEventMetadata.prototype["MAP_set"]=MapStringEventMetadata.prototype.MAP_set=function(name,prop){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);if(prop&&typeof prop==="object")prop=prop.ptr;_emscripten_bind_MapStringEventMetadata_MAP_set_2(self,name,prop)};MapStringEventMetadata.prototype["MAP_has"]=MapStringEventMetadata.prototype.MAP_has=function(name){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);return!!_emscripten_bind_MapStringEventMetadata_MAP_has_1(self,name)};MapStringEventMetadata.prototype["MAP_keys"]=MapStringEventMetadata.prototype.MAP_keys=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_MapStringEventMetadata_MAP_keys_0(self),VectorString)};MapStringEventMetadata.prototype["__destroy__"]=MapStringEventMetadata.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_MapStringEventMetadata___destroy___0(self)};function MapExtensionProperties(){throw"cannot construct a MapExtensionProperties, no constructor in IDL"}MapExtensionProperties.prototype=Object.create(WrapperObject.prototype);MapExtensionProperties.prototype.constructor=MapExtensionProperties;MapExtensionProperties.prototype.__class__=MapExtensionProperties;MapExtensionProperties.__cache__={};Module["MapExtensionProperties"]=MapExtensionProperties;MapExtensionProperties.prototype["MAP_get"]=MapExtensionProperties.prototype.MAP_get=function(name){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);return wrapPointer(_emscripten_bind_MapExtensionProperties_MAP_get_1(self,name),MapStringPropertyDescriptor)};MapExtensionProperties.prototype["MAP_set"]=MapExtensionProperties.prototype.MAP_set=function(name,prop){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);if(prop&&typeof prop==="object")prop=prop.ptr;_emscripten_bind_MapExtensionProperties_MAP_set_2(self,name,prop)};MapExtensionProperties.prototype["MAP_has"]=MapExtensionProperties.prototype.MAP_has=function(name){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);return!!_emscripten_bind_MapExtensionProperties_MAP_has_1(self,name)};MapExtensionProperties.prototype["MAP_keys"]=MapExtensionProperties.prototype.MAP_keys=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_MapExtensionProperties_MAP_keys_0(self),VectorString)};MapExtensionProperties.prototype["__destroy__"]=MapExtensionProperties.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_MapExtensionProperties___destroy___0(self)};function SetString(){this.ptr=_emscripten_bind_SetString_SetString_0();getCache(SetString)[this.ptr]=this}SetString.prototype=Object.create(WrapperObject.prototype);SetString.prototype.constructor=SetString;SetString.prototype.__class__=SetString;SetString.__cache__={};Module["SetString"]=SetString;SetString.prototype["FREE_toNewVectorString"]=SetString.prototype.FREE_toNewVectorString=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_SetString_FREE_toNewVectorString_0(self),VectorString)};SetString.prototype["__destroy__"]=SetString.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_SetString___destroy___0(self)};function ProjectHelper(){throw"cannot construct a ProjectHelper, no constructor in IDL"}ProjectHelper.prototype=Object.create(WrapperObject.prototype);ProjectHelper.prototype.constructor=ProjectHelper;ProjectHelper.prototype.__class__=ProjectHelper;ProjectHelper.__cache__={};Module["ProjectHelper"]=ProjectHelper;ProjectHelper.prototype["STATIC_CreateNewGDJSProject"]=ProjectHelper.prototype.STATIC_CreateNewGDJSProject=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_ProjectHelper_STATIC_CreateNewGDJSProject_0(self),Project)};ProjectHelper.prototype["STATIC_InitializePlatforms"]=ProjectHelper.prototype.STATIC_InitializePlatforms=function(){var self=this.ptr;_emscripten_bind_ProjectHelper_STATIC_InitializePlatforms_0(self)};ProjectHelper.prototype["STATIC_SanityCheckBehaviorProperty"]=ProjectHelper.prototype.STATIC_SanityCheckBehaviorProperty=function(behavior,propertyName,newValue){var self=this.ptr;ensureCache.prepare();if(behavior&&typeof behavior==="object")behavior=behavior.ptr;if(propertyName&&typeof propertyName==="object")propertyName=propertyName.ptr;else propertyName=ensureString(propertyName);if(newValue&&typeof newValue==="object")newValue=newValue.ptr;else newValue=ensureString(newValue);return UTF8ToString(_emscripten_bind_ProjectHelper_STATIC_SanityCheckBehaviorProperty_3(self,behavior,propertyName,newValue))};ProjectHelper.prototype["STATIC_SanityCheckBehaviorsSharedDataProperty"]=ProjectHelper.prototype.STATIC_SanityCheckBehaviorsSharedDataProperty=function(behavior,propertyName,newValue){var self=this.ptr;ensureCache.prepare();if(behavior&&typeof behavior==="object")behavior=behavior.ptr;if(propertyName&&typeof propertyName==="object")propertyName=propertyName.ptr;else propertyName=ensureString(propertyName);if(newValue&&typeof newValue==="object")newValue=newValue.ptr;else newValue=ensureString(newValue);return UTF8ToString(_emscripten_bind_ProjectHelper_STATIC_SanityCheckBehaviorsSharedDataProperty_3(self,behavior,propertyName,newValue))};ProjectHelper.prototype["STATIC_SanityCheckObjectProperty"]=ProjectHelper.prototype.STATIC_SanityCheckObjectProperty=function(configuration,propertyName,newValue){var self=this.ptr;ensureCache.prepare();if(configuration&&typeof configuration==="object")configuration=configuration.ptr;if(propertyName&&typeof propertyName==="object")propertyName=propertyName.ptr;else propertyName=ensureString(propertyName);if(newValue&&typeof newValue==="object")newValue=newValue.ptr;else newValue=ensureString(newValue);return UTF8ToString(_emscripten_bind_ProjectHelper_STATIC_SanityCheckObjectProperty_3(self,configuration,propertyName,newValue))};ProjectHelper.prototype["STATIC_SanityCheckObjectInitialInstanceProperty"]=ProjectHelper.prototype.STATIC_SanityCheckObjectInitialInstanceProperty=function(configuration,propertyName,newValue){var self=this.ptr;ensureCache.prepare();if(configuration&&typeof configuration==="object")configuration=configuration.ptr;if(propertyName&&typeof propertyName==="object")propertyName=propertyName.ptr;else propertyName=ensureString(propertyName);if(newValue&&typeof newValue==="object")newValue=newValue.ptr;else newValue=ensureString(newValue);return UTF8ToString(_emscripten_bind_ProjectHelper_STATIC_SanityCheckObjectInitialInstanceProperty_3(self,configuration,propertyName,newValue))};ProjectHelper.prototype["__destroy__"]=ProjectHelper.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_ProjectHelper___destroy___0(self)};function EventsVariablesFinder(){this.ptr=_emscripten_bind_EventsVariablesFinder_EventsVariablesFinder_0();getCache(EventsVariablesFinder)[this.ptr]=this}EventsVariablesFinder.prototype=Object.create(WrapperObject.prototype);EventsVariablesFinder.prototype.constructor=EventsVariablesFinder;EventsVariablesFinder.prototype.__class__=EventsVariablesFinder;EventsVariablesFinder.__cache__={};Module["EventsVariablesFinder"]=EventsVariablesFinder;EventsVariablesFinder.prototype["STATIC_FindAllGlobalVariables"]=EventsVariablesFinder.prototype.STATIC_FindAllGlobalVariables=function(platform,project){var self=this.ptr;if(platform&&typeof platform==="object")platform=platform.ptr;if(project&&typeof project==="object")project=project.ptr;return wrapPointer(_emscripten_bind_EventsVariablesFinder_STATIC_FindAllGlobalVariables_2(self,platform,project),SetString)};EventsVariablesFinder.prototype["STATIC_FindAllLayoutVariables"]=EventsVariablesFinder.prototype.STATIC_FindAllLayoutVariables=function(platform,project,layout){var self=this.ptr;if(platform&&typeof platform==="object")platform=platform.ptr;if(project&&typeof project==="object")project=project.ptr;if(layout&&typeof layout==="object")layout=layout.ptr;return wrapPointer(_emscripten_bind_EventsVariablesFinder_STATIC_FindAllLayoutVariables_3(self,platform,project,layout),SetString)};EventsVariablesFinder.prototype["STATIC_FindAllObjectVariables"]=EventsVariablesFinder.prototype.STATIC_FindAllObjectVariables=function(platform,project,layout,objectName){var self=this.ptr;ensureCache.prepare();if(platform&&typeof platform==="object")platform=platform.ptr;if(project&&typeof project==="object")project=project.ptr;if(layout&&typeof layout==="object")layout=layout.ptr;if(objectName&&typeof objectName==="object")objectName=objectName.ptr;else objectName=ensureString(objectName);return wrapPointer(_emscripten_bind_EventsVariablesFinder_STATIC_FindAllObjectVariables_4(self,platform,project,layout,objectName),SetString)};EventsVariablesFinder.prototype["__destroy__"]=EventsVariablesFinder.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_EventsVariablesFinder___destroy___0(self)};function EventsIdentifiersFinder(){this.ptr=_emscripten_bind_EventsIdentifiersFinder_EventsIdentifiersFinder_0();getCache(EventsIdentifiersFinder)[this.ptr]=this}EventsIdentifiersFinder.prototype=Object.create(WrapperObject.prototype);EventsIdentifiersFinder.prototype.constructor=EventsIdentifiersFinder;EventsIdentifiersFinder.prototype.__class__=EventsIdentifiersFinder;EventsIdentifiersFinder.__cache__={};Module["EventsIdentifiersFinder"]=EventsIdentifiersFinder;EventsIdentifiersFinder.prototype["STATIC_FindAllIdentifierExpressions"]=EventsIdentifiersFinder.prototype.STATIC_FindAllIdentifierExpressions=function(platform,project,layout,identifierType,contextObjectName){var self=this.ptr;ensureCache.prepare();if(platform&&typeof platform==="object")platform=platform.ptr;if(project&&typeof project==="object")project=project.ptr;if(layout&&typeof layout==="object")layout=layout.ptr;if(identifierType&&typeof identifierType==="object")identifierType=identifierType.ptr;else identifierType=ensureString(identifierType);if(contextObjectName&&typeof contextObjectName==="object")contextObjectName=contextObjectName.ptr;else contextObjectName=ensureString(contextObjectName);return wrapPointer(_emscripten_bind_EventsIdentifiersFinder_STATIC_FindAllIdentifierExpressions_5(self,platform,project,layout,identifierType,contextObjectName),SetString)};EventsIdentifiersFinder.prototype["__destroy__"]=EventsIdentifiersFinder.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_EventsIdentifiersFinder___destroy___0(self)};function EventsFunctionSelfCallChecker(){throw"cannot construct a EventsFunctionSelfCallChecker, no constructor in IDL"}EventsFunctionSelfCallChecker.prototype=Object.create(WrapperObject.prototype);EventsFunctionSelfCallChecker.prototype.constructor=EventsFunctionSelfCallChecker;EventsFunctionSelfCallChecker.prototype.__class__=EventsFunctionSelfCallChecker;EventsFunctionSelfCallChecker.__cache__={};Module["EventsFunctionSelfCallChecker"]=EventsFunctionSelfCallChecker;EventsFunctionSelfCallChecker.prototype["STATIC_IsFreeFunctionOnlyCallingItself"]=EventsFunctionSelfCallChecker.prototype.STATIC_IsFreeFunctionOnlyCallingItself=function(project,extension,eventsFunction){var self=this.ptr;if(project&&typeof project==="object")project=project.ptr;if(extension&&typeof extension==="object")extension=extension.ptr;if(eventsFunction&&typeof eventsFunction==="object")eventsFunction=eventsFunction.ptr;return!!_emscripten_bind_EventsFunctionSelfCallChecker_STATIC_IsFreeFunctionOnlyCallingItself_3(self,project,extension,eventsFunction)};EventsFunctionSelfCallChecker.prototype["STATIC_IsBehaviorFunctionOnlyCallingItself"]=EventsFunctionSelfCallChecker.prototype.STATIC_IsBehaviorFunctionOnlyCallingItself=function(project,extension,eventsBasedBehavior,eventsFunction){var self=this.ptr;if(project&&typeof project==="object")project=project.ptr;if(extension&&typeof extension==="object")extension=extension.ptr;if(eventsBasedBehavior&&typeof eventsBasedBehavior==="object")eventsBasedBehavior=eventsBasedBehavior.ptr;if(eventsFunction&&typeof eventsFunction==="object")eventsFunction=eventsFunction.ptr;return!!_emscripten_bind_EventsFunctionSelfCallChecker_STATIC_IsBehaviorFunctionOnlyCallingItself_4(self,project,extension,eventsBasedBehavior,eventsFunction)};EventsFunctionSelfCallChecker.prototype["STATIC_IsObjectFunctionOnlyCallingItself"]=EventsFunctionSelfCallChecker.prototype.STATIC_IsObjectFunctionOnlyCallingItself=function(project,extension,eventsBasedObject,eventsFunction){var self=this.ptr;if(project&&typeof project==="object")project=project.ptr;if(extension&&typeof extension==="object")extension=extension.ptr;if(eventsBasedObject&&typeof eventsBasedObject==="object")eventsBasedObject=eventsBasedObject.ptr;if(eventsFunction&&typeof eventsFunction==="object")eventsFunction=eventsFunction.ptr;return!!_emscripten_bind_EventsFunctionSelfCallChecker_STATIC_IsObjectFunctionOnlyCallingItself_4(self,project,extension,eventsBasedObject,eventsFunction)};EventsFunctionSelfCallChecker.prototype["__destroy__"]=EventsFunctionSelfCallChecker.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_EventsFunctionSelfCallChecker___destroy___0(self)};function InstructionOrExpressionGroupMetadata(){this.ptr=_emscripten_bind_InstructionOrExpressionGroupMetadata_InstructionOrExpressionGroupMetadata_0();getCache(InstructionOrExpressionGroupMetadata)[this.ptr]=this}InstructionOrExpressionGroupMetadata.prototype=Object.create(WrapperObject.prototype);InstructionOrExpressionGroupMetadata.prototype.constructor=InstructionOrExpressionGroupMetadata;InstructionOrExpressionGroupMetadata.prototype.__class__=InstructionOrExpressionGroupMetadata;InstructionOrExpressionGroupMetadata.__cache__={};Module["InstructionOrExpressionGroupMetadata"]=InstructionOrExpressionGroupMetadata;InstructionOrExpressionGroupMetadata.prototype["SetIcon"]=InstructionOrExpressionGroupMetadata.prototype.SetIcon=function(icon){var self=this.ptr;ensureCache.prepare();if(icon&&typeof icon==="object")icon=icon.ptr;else icon=ensureString(icon);return wrapPointer(_emscripten_bind_InstructionOrExpressionGroupMetadata_SetIcon_1(self,icon),InstructionOrExpressionGroupMetadata)};InstructionOrExpressionGroupMetadata.prototype["GetIcon"]=InstructionOrExpressionGroupMetadata.prototype.GetIcon=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_InstructionOrExpressionGroupMetadata_GetIcon_0(self))};InstructionOrExpressionGroupMetadata.prototype["__destroy__"]=InstructionOrExpressionGroupMetadata.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_InstructionOrExpressionGroupMetadata___destroy___0(self)};function VersionWrapper(){throw"cannot construct a VersionWrapper, no constructor in IDL"}VersionWrapper.prototype=Object.create(WrapperObject.prototype);VersionWrapper.prototype.constructor=VersionWrapper;VersionWrapper.prototype.__class__=VersionWrapper;VersionWrapper.__cache__={};Module["VersionWrapper"]=VersionWrapper;VersionWrapper.prototype["STATIC_Major"]=VersionWrapper.prototype.STATIC_Major=function(){var self=this.ptr;return _emscripten_bind_VersionWrapper_STATIC_Major_0(self)};VersionWrapper.prototype["STATIC_Minor"]=VersionWrapper.prototype.STATIC_Minor=function(){var self=this.ptr;return _emscripten_bind_VersionWrapper_STATIC_Minor_0(self)};VersionWrapper.prototype["STATIC_Build"]=VersionWrapper.prototype.STATIC_Build=function(){var self=this.ptr;return _emscripten_bind_VersionWrapper_STATIC_Build_0(self)};VersionWrapper.prototype["STATIC_Revision"]=VersionWrapper.prototype.STATIC_Revision=function(){var self=this.ptr;return _emscripten_bind_VersionWrapper_STATIC_Revision_0(self)};VersionWrapper.prototype["STATIC_FullString"]=VersionWrapper.prototype.STATIC_FullString=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_VersionWrapper_STATIC_FullString_0(self))};VersionWrapper.prototype["STATIC_Status"]=VersionWrapper.prototype.STATIC_Status=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_VersionWrapper_STATIC_Status_0(self))};VersionWrapper.prototype["__destroy__"]=VersionWrapper.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_VersionWrapper___destroy___0(self)};function JsPlatform(){throw"cannot construct a JsPlatform, no constructor in IDL"}JsPlatform.prototype=Object.create(Platform.prototype);JsPlatform.prototype.constructor=JsPlatform;JsPlatform.prototype.__class__=JsPlatform;JsPlatform.__cache__={};Module["JsPlatform"]=JsPlatform;JsPlatform.prototype["STATIC_Get"]=JsPlatform.prototype.STATIC_Get=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_JsPlatform_STATIC_Get_0(self),JsPlatform)};JsPlatform.prototype["AddNewExtension"]=JsPlatform.prototype.AddNewExtension=function(extension){var self=this.ptr;if(extension&&typeof extension==="object")extension=extension.ptr;_emscripten_bind_JsPlatform_AddNewExtension_1(self,extension)};JsPlatform.prototype["GetName"]=JsPlatform.prototype.GetName=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_JsPlatform_GetName_0(self))};JsPlatform.prototype["GetFullName"]=JsPlatform.prototype.GetFullName=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_JsPlatform_GetFullName_0(self))};JsPlatform.prototype["GetSubtitle"]=JsPlatform.prototype.GetSubtitle=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_JsPlatform_GetSubtitle_0(self))};JsPlatform.prototype["GetDescription"]=JsPlatform.prototype.GetDescription=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_JsPlatform_GetDescription_0(self))};JsPlatform.prototype["GetInstructionOrExpressionGroupMetadata"]=JsPlatform.prototype.GetInstructionOrExpressionGroupMetadata=function(name){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);return wrapPointer(_emscripten_bind_JsPlatform_GetInstructionOrExpressionGroupMetadata_1(self,name),InstructionOrExpressionGroupMetadata)};JsPlatform.prototype["IsExtensionLoaded"]=JsPlatform.prototype.IsExtensionLoaded=function(name){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);return!!_emscripten_bind_JsPlatform_IsExtensionLoaded_1(self,name)};JsPlatform.prototype["RemoveExtension"]=JsPlatform.prototype.RemoveExtension=function(name){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);_emscripten_bind_JsPlatform_RemoveExtension_1(self,name)};JsPlatform.prototype["ReloadBuiltinExtensions"]=JsPlatform.prototype.ReloadBuiltinExtensions=function(){var self=this.ptr;_emscripten_bind_JsPlatform_ReloadBuiltinExtensions_0(self)};JsPlatform.prototype["CreateObjectConfiguration"]=JsPlatform.prototype.CreateObjectConfiguration=function(type){var self=this.ptr;ensureCache.prepare();if(type&&typeof type==="object")type=type.ptr;else type=ensureString(type);return wrapPointer(_emscripten_bind_JsPlatform_CreateObjectConfiguration_1(self,type),UniquePtrObjectConfiguration)};JsPlatform.prototype["GetAllPlatformExtensions"]=JsPlatform.prototype.GetAllPlatformExtensions=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_JsPlatform_GetAllPlatformExtensions_0(self),VectorPlatformExtension)};JsPlatform.prototype["__destroy__"]=JsPlatform.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_JsPlatform___destroy___0(self)};function PairStringVariable(){this.ptr=_emscripten_bind_PairStringVariable_PairStringVariable_0();getCache(PairStringVariable)[this.ptr]=this}PairStringVariable.prototype=Object.create(WrapperObject.prototype);PairStringVariable.prototype.constructor=PairStringVariable;PairStringVariable.prototype.__class__=PairStringVariable;PairStringVariable.__cache__={};Module["PairStringVariable"]=PairStringVariable;PairStringVariable.prototype["WRAPPED_GetName"]=PairStringVariable.prototype.WRAPPED_GetName=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_PairStringVariable_WRAPPED_GetName_0(self))};PairStringVariable.prototype["WRAPPED_GetVariable"]=PairStringVariable.prototype.WRAPPED_GetVariable=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_PairStringVariable_WRAPPED_GetVariable_0(self),Variable)};PairStringVariable.prototype["__destroy__"]=PairStringVariable.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_PairStringVariable___destroy___0(self)};function VariableInstructionSwitcher(){throw"cannot construct a VariableInstructionSwitcher, no constructor in IDL"}VariableInstructionSwitcher.prototype=Object.create(WrapperObject.prototype);VariableInstructionSwitcher.prototype.constructor=VariableInstructionSwitcher;VariableInstructionSwitcher.prototype.__class__=VariableInstructionSwitcher;VariableInstructionSwitcher.__cache__={};Module["VariableInstructionSwitcher"]=VariableInstructionSwitcher;VariableInstructionSwitcher.prototype["STATIC_IsSwitchableVariableInstruction"]=VariableInstructionSwitcher.prototype.STATIC_IsSwitchableVariableInstruction=function(instructionType){var self=this.ptr;ensureCache.prepare();if(instructionType&&typeof instructionType==="object")instructionType=instructionType.ptr;else instructionType=ensureString(instructionType);return!!_emscripten_bind_VariableInstructionSwitcher_STATIC_IsSwitchableVariableInstruction_1(self,instructionType)};VariableInstructionSwitcher.prototype["STATIC_IsSwitchableObjectVariableInstruction"]=VariableInstructionSwitcher.prototype.STATIC_IsSwitchableObjectVariableInstruction=function(instructionType){var self=this.ptr;ensureCache.prepare();if(instructionType&&typeof instructionType==="object")instructionType=instructionType.ptr;else instructionType=ensureString(instructionType);return!!_emscripten_bind_VariableInstructionSwitcher_STATIC_IsSwitchableObjectVariableInstruction_1(self,instructionType)};VariableInstructionSwitcher.prototype["STATIC_GetSwitchableVariableInstructionIdentifier"]=VariableInstructionSwitcher.prototype.STATIC_GetSwitchableVariableInstructionIdentifier=function(instructionType){var self=this.ptr;ensureCache.prepare();if(instructionType&&typeof instructionType==="object")instructionType=instructionType.ptr;else instructionType=ensureString(instructionType);return UTF8ToString(_emscripten_bind_VariableInstructionSwitcher_STATIC_GetSwitchableVariableInstructionIdentifier_1(self,instructionType))};VariableInstructionSwitcher.prototype["STATIC_GetSwitchableInstructionVariableType"]=VariableInstructionSwitcher.prototype.STATIC_GetSwitchableInstructionVariableType=function(instructionType){var self=this.ptr;ensureCache.prepare();if(instructionType&&typeof instructionType==="object")instructionType=instructionType.ptr;else instructionType=ensureString(instructionType);return _emscripten_bind_VariableInstructionSwitcher_STATIC_GetSwitchableInstructionVariableType_1(self,instructionType)};VariableInstructionSwitcher.prototype["STATIC_SwitchVariableInstructionType"]=VariableInstructionSwitcher.prototype.STATIC_SwitchVariableInstructionType=function(instruction,variableType){var self=this.ptr;if(instruction&&typeof instruction==="object")instruction=instruction.ptr;if(variableType&&typeof variableType==="object")variableType=variableType.ptr;_emscripten_bind_VariableInstructionSwitcher_STATIC_SwitchVariableInstructionType_2(self,instruction,variableType)};VariableInstructionSwitcher.prototype["STATIC_GetVariableTypeFromParameters"]=VariableInstructionSwitcher.prototype.STATIC_GetVariableTypeFromParameters=function(platform,projectScopedContainers,instruction){var self=this.ptr;if(platform&&typeof platform==="object")platform=platform.ptr;if(projectScopedContainers&&typeof projectScopedContainers==="object")projectScopedContainers=projectScopedContainers.ptr;if(instruction&&typeof instruction==="object")instruction=instruction.ptr;return _emscripten_bind_VariableInstructionSwitcher_STATIC_GetVariableTypeFromParameters_3(self,platform,projectScopedContainers,instruction)};VariableInstructionSwitcher.prototype["STATIC_SwitchBetweenUnifiedInstructionIfNeeded"]=VariableInstructionSwitcher.prototype.STATIC_SwitchBetweenUnifiedInstructionIfNeeded=function(platform,projectScopedContainers,instruction){var self=this.ptr;if(platform&&typeof platform==="object")platform=platform.ptr;if(projectScopedContainers&&typeof projectScopedContainers==="object")projectScopedContainers=projectScopedContainers.ptr;if(instruction&&typeof instruction==="object")instruction=instruction.ptr;_emscripten_bind_VariableInstructionSwitcher_STATIC_SwitchBetweenUnifiedInstructionIfNeeded_3(self,platform,projectScopedContainers,instruction)};VariableInstructionSwitcher.prototype["__destroy__"]=VariableInstructionSwitcher.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_VariableInstructionSwitcher___destroy___0(self)};function Variable(){this.ptr=_emscripten_bind_Variable_Variable_0();getCache(Variable)[this.ptr]=this}Variable.prototype=Object.create(WrapperObject.prototype);Variable.prototype.constructor=Variable;Variable.prototype.__class__=Variable;Variable.__cache__={};Module["Variable"]=Variable;Variable.prototype["STATIC_IsPrimitive"]=Variable.prototype.STATIC_IsPrimitive=function(type){var self=this.ptr;if(type&&typeof type==="object")type=type.ptr;return!!_emscripten_bind_Variable_STATIC_IsPrimitive_1(self,type)};Variable.prototype["STATIC_TypeAsString"]=Variable.prototype.STATIC_TypeAsString=function(type){var self=this.ptr;if(type&&typeof type==="object")type=type.ptr;return UTF8ToString(_emscripten_bind_Variable_STATIC_TypeAsString_1(self,type))};Variable.prototype["GetType"]=Variable.prototype.GetType=function(){var self=this.ptr;return _emscripten_bind_Variable_GetType_0(self)};Variable.prototype["CastTo"]=Variable.prototype.CastTo=function(type){var self=this.ptr;ensureCache.prepare();if(type&&typeof type==="object")type=type.ptr;else type=ensureString(type);_emscripten_bind_Variable_CastTo_1(self,type)};Variable.prototype["SetString"]=Variable.prototype.SetString=function(str){var self=this.ptr;ensureCache.prepare();if(str&&typeof str==="object")str=str.ptr;else str=ensureString(str);_emscripten_bind_Variable_SetString_1(self,str)};Variable.prototype["GetString"]=Variable.prototype.GetString=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_Variable_GetString_0(self))};Variable.prototype["SetValue"]=Variable.prototype.SetValue=function(val){var self=this.ptr;if(val&&typeof val==="object")val=val.ptr;_emscripten_bind_Variable_SetValue_1(self,val)};Variable.prototype["GetValue"]=Variable.prototype.GetValue=function(){var self=this.ptr;return _emscripten_bind_Variable_GetValue_0(self)};Variable.prototype["SetBool"]=Variable.prototype.SetBool=function(val){var self=this.ptr;if(val&&typeof val==="object")val=val.ptr;_emscripten_bind_Variable_SetBool_1(self,val)};Variable.prototype["GetBool"]=Variable.prototype.GetBool=function(){var self=this.ptr;return!!_emscripten_bind_Variable_GetBool_0(self)};Variable.prototype["HasMixedValues"]=Variable.prototype.HasMixedValues=function(){var self=this.ptr;return!!_emscripten_bind_Variable_HasMixedValues_0(self)};Variable.prototype["SetFolded"]=Variable.prototype.SetFolded=function(val){var self=this.ptr;if(val&&typeof val==="object")val=val.ptr;_emscripten_bind_Variable_SetFolded_1(self,val)};Variable.prototype["IsFolded"]=Variable.prototype.IsFolded=function(){var self=this.ptr;return!!_emscripten_bind_Variable_IsFolded_0(self)};Variable.prototype["GetChildrenCount"]=Variable.prototype.GetChildrenCount=function(){var self=this.ptr;return _emscripten_bind_Variable_GetChildrenCount_0(self)};Variable.prototype["Contains"]=Variable.prototype.Contains=function(variableToSearch,recursive){var self=this.ptr;if(variableToSearch&&typeof variableToSearch==="object")variableToSearch=variableToSearch.ptr;if(recursive&&typeof recursive==="object")recursive=recursive.ptr;return!!_emscripten_bind_Variable_Contains_2(self,variableToSearch,recursive)};Variable.prototype["HasChild"]=Variable.prototype.HasChild=function(str){var self=this.ptr;ensureCache.prepare();if(str&&typeof str==="object")str=str.ptr;else str=ensureString(str);return!!_emscripten_bind_Variable_HasChild_1(self,str)};Variable.prototype["GetChild"]=Variable.prototype.GetChild=function(str){var self=this.ptr;ensureCache.prepare();if(str&&typeof str==="object")str=str.ptr;else str=ensureString(str);return wrapPointer(_emscripten_bind_Variable_GetChild_1(self,str),Variable)};Variable.prototype["RemoveChild"]=Variable.prototype.RemoveChild=function(name){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);_emscripten_bind_Variable_RemoveChild_1(self,name)};Variable.prototype["RenameChild"]=Variable.prototype.RenameChild=function(oldName,newName){var self=this.ptr;ensureCache.prepare();if(oldName&&typeof oldName==="object")oldName=oldName.ptr;else oldName=ensureString(oldName);if(newName&&typeof newName==="object")newName=newName.ptr;else newName=ensureString(newName);return!!_emscripten_bind_Variable_RenameChild_2(self,oldName,newName)};Variable.prototype["GetAllChildrenNames"]=Variable.prototype.GetAllChildrenNames=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_Variable_GetAllChildrenNames_0(self),VectorString)};Variable.prototype["RemoveRecursively"]=Variable.prototype.RemoveRecursively=function(variableToRemove){var self=this.ptr;if(variableToRemove&&typeof variableToRemove==="object")variableToRemove=variableToRemove.ptr;_emscripten_bind_Variable_RemoveRecursively_1(self,variableToRemove)};Variable.prototype["ClearChildren"]=Variable.prototype.ClearChildren=function(){var self=this.ptr;_emscripten_bind_Variable_ClearChildren_0(self)};Variable.prototype["GetAtIndex"]=Variable.prototype.GetAtIndex=function(index){var self=this.ptr;if(index&&typeof index==="object")index=index.ptr;return wrapPointer(_emscripten_bind_Variable_GetAtIndex_1(self,index),Variable)};Variable.prototype["PushNew"]=Variable.prototype.PushNew=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_Variable_PushNew_0(self),Variable)};Variable.prototype["RemoveAtIndex"]=Variable.prototype.RemoveAtIndex=function(index){var self=this.ptr;if(index&&typeof index==="object")index=index.ptr;_emscripten_bind_Variable_RemoveAtIndex_1(self,index)};Variable.prototype["GetAllChildrenArray"]=Variable.prototype.GetAllChildrenArray=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_Variable_GetAllChildrenArray_0(self),VectorVariable)};Variable.prototype["MoveChildInArray"]=Variable.prototype.MoveChildInArray=function(oldIndex,newIndex){var self=this.ptr;if(oldIndex&&typeof oldIndex==="object")oldIndex=oldIndex.ptr;if(newIndex&&typeof newIndex==="object")newIndex=newIndex.ptr;_emscripten_bind_Variable_MoveChildInArray_2(self,oldIndex,newIndex)};Variable.prototype["InsertAtIndex"]=Variable.prototype.InsertAtIndex=function(variable,index){var self=this.ptr;if(variable&&typeof variable==="object")variable=variable.ptr;if(index&&typeof index==="object")index=index.ptr;return!!_emscripten_bind_Variable_InsertAtIndex_2(self,variable,index)};Variable.prototype["InsertChild"]=Variable.prototype.InsertChild=function(name,variable){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);if(variable&&typeof variable==="object")variable=variable.ptr;return!!_emscripten_bind_Variable_InsertChild_2(self,name,variable)};Variable.prototype["SerializeTo"]=Variable.prototype.SerializeTo=function(element){var self=this.ptr;if(element&&typeof element==="object")element=element.ptr;_emscripten_bind_Variable_SerializeTo_1(self,element)};Variable.prototype["UnserializeFrom"]=Variable.prototype.UnserializeFrom=function(element){var self=this.ptr;if(element&&typeof element==="object")element=element.ptr;_emscripten_bind_Variable_UnserializeFrom_1(self,element)};Variable.prototype["ResetPersistentUuid"]=Variable.prototype.ResetPersistentUuid=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_Variable_ResetPersistentUuid_0(self),Variable)};Variable.prototype["ClearPersistentUuid"]=Variable.prototype.ClearPersistentUuid=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_Variable_ClearPersistentUuid_0(self),Variable)};Variable.prototype["__destroy__"]=Variable.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_Variable___destroy___0(self)};function VariablesContainer(sourceType){if(sourceType&&typeof sourceType==="object")sourceType=sourceType.ptr;this.ptr=_emscripten_bind_VariablesContainer_VariablesContainer_1(sourceType);getCache(VariablesContainer)[this.ptr]=this}VariablesContainer.prototype=Object.create(WrapperObject.prototype);VariablesContainer.prototype.constructor=VariablesContainer;VariablesContainer.prototype.__class__=VariablesContainer;VariablesContainer.__cache__={};Module["VariablesContainer"]=VariablesContainer;VariablesContainer.prototype["GetSourceType"]=VariablesContainer.prototype.GetSourceType=function(){var self=this.ptr;return _emscripten_bind_VariablesContainer_GetSourceType_0(self)};VariablesContainer.prototype["Has"]=VariablesContainer.prototype.Has=function(name){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);return!!_emscripten_bind_VariablesContainer_Has_1(self,name)};VariablesContainer.prototype["Get"]=VariablesContainer.prototype.Get=function(name){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);return wrapPointer(_emscripten_bind_VariablesContainer_Get_1(self,name),Variable)};VariablesContainer.prototype["GetAt"]=VariablesContainer.prototype.GetAt=function(index){var self=this.ptr;if(index&&typeof index==="object")index=index.ptr;return wrapPointer(_emscripten_bind_VariablesContainer_GetAt_1(self,index),Variable)};VariablesContainer.prototype["GetNameAt"]=VariablesContainer.prototype.GetNameAt=function(index){var self=this.ptr;if(index&&typeof index==="object")index=index.ptr;return UTF8ToString(_emscripten_bind_VariablesContainer_GetNameAt_1(self,index))};VariablesContainer.prototype["Insert"]=VariablesContainer.prototype.Insert=function(name,variable,index){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);if(variable&&typeof variable==="object")variable=variable.ptr;if(index&&typeof index==="object")index=index.ptr;return wrapPointer(_emscripten_bind_VariablesContainer_Insert_3(self,name,variable,index),Variable)};VariablesContainer.prototype["InsertNew"]=VariablesContainer.prototype.InsertNew=function(name,index){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);if(index&&typeof index==="object")index=index.ptr;return wrapPointer(_emscripten_bind_VariablesContainer_InsertNew_2(self,name,index),Variable)};VariablesContainer.prototype["Remove"]=VariablesContainer.prototype.Remove=function(name){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);_emscripten_bind_VariablesContainer_Remove_1(self,name)};VariablesContainer.prototype["Rename"]=VariablesContainer.prototype.Rename=function(oldName,newName){var self=this.ptr;ensureCache.prepare();if(oldName&&typeof oldName==="object")oldName=oldName.ptr;else oldName=ensureString(oldName);if(newName&&typeof newName==="object")newName=newName.ptr;else newName=ensureString(newName);return!!_emscripten_bind_VariablesContainer_Rename_2(self,oldName,newName)};VariablesContainer.prototype["Swap"]=VariablesContainer.prototype.Swap=function(firstIndex,secondIndex){var self=this.ptr;if(firstIndex&&typeof firstIndex==="object")firstIndex=firstIndex.ptr;if(secondIndex&&typeof secondIndex==="object")secondIndex=secondIndex.ptr;_emscripten_bind_VariablesContainer_Swap_2(self,firstIndex,secondIndex)};VariablesContainer.prototype["Move"]=VariablesContainer.prototype.Move=function(oldIndex,newIndex){var self=this.ptr;if(oldIndex&&typeof oldIndex==="object")oldIndex=oldIndex.ptr;if(newIndex&&typeof newIndex==="object")newIndex=newIndex.ptr;_emscripten_bind_VariablesContainer_Move_2(self,oldIndex,newIndex)};VariablesContainer.prototype["GetPosition"]=VariablesContainer.prototype.GetPosition=function(name){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);return _emscripten_bind_VariablesContainer_GetPosition_1(self,name)};VariablesContainer.prototype["Count"]=VariablesContainer.prototype.Count=function(){var self=this.ptr;return _emscripten_bind_VariablesContainer_Count_0(self)};VariablesContainer.prototype["Clear"]=VariablesContainer.prototype.Clear=function(){var self=this.ptr;_emscripten_bind_VariablesContainer_Clear_0(self)};VariablesContainer.prototype["RemoveRecursively"]=VariablesContainer.prototype.RemoveRecursively=function(variableToRemove){var self=this.ptr;if(variableToRemove&&typeof variableToRemove==="object")variableToRemove=variableToRemove.ptr;_emscripten_bind_VariablesContainer_RemoveRecursively_1(self,variableToRemove)};VariablesContainer.prototype["SerializeTo"]=VariablesContainer.prototype.SerializeTo=function(element){var self=this.ptr;if(element&&typeof element==="object")element=element.ptr;_emscripten_bind_VariablesContainer_SerializeTo_1(self,element)};VariablesContainer.prototype["UnserializeFrom"]=VariablesContainer.prototype.UnserializeFrom=function(element){var self=this.ptr;if(element&&typeof element==="object")element=element.ptr;_emscripten_bind_VariablesContainer_UnserializeFrom_1(self,element)};VariablesContainer.prototype["ResetPersistentUuid"]=VariablesContainer.prototype.ResetPersistentUuid=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_VariablesContainer_ResetPersistentUuid_0(self),VariablesContainer)};VariablesContainer.prototype["ClearPersistentUuid"]=VariablesContainer.prototype.ClearPersistentUuid=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_VariablesContainer_ClearPersistentUuid_0(self),VariablesContainer)};VariablesContainer.prototype["__destroy__"]=VariablesContainer.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_VariablesContainer___destroy___0(self)};function VariablesContainersList(){throw"cannot construct a VariablesContainersList, no constructor in IDL"}VariablesContainersList.prototype=Object.create(WrapperObject.prototype);VariablesContainersList.prototype.constructor=VariablesContainersList;VariablesContainersList.prototype.__class__=VariablesContainersList;VariablesContainersList.__cache__={};Module["VariablesContainersList"]=VariablesContainersList;VariablesContainersList.prototype["Has"]=VariablesContainersList.prototype.Has=function(name){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);return!!_emscripten_bind_VariablesContainersList_Has_1(self,name)};VariablesContainersList.prototype["Get"]=VariablesContainersList.prototype.Get=function(name){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);return wrapPointer(_emscripten_bind_VariablesContainersList_Get_1(self,name),Variable)};VariablesContainersList.prototype["GetVariablesContainerFromVariableOrPropertyOrParameterName"]=VariablesContainersList.prototype.GetVariablesContainerFromVariableOrPropertyOrParameterName=function(variableName){var self=this.ptr;ensureCache.prepare();if(variableName&&typeof variableName==="object")variableName=variableName.ptr;else variableName=ensureString(variableName);return wrapPointer(_emscripten_bind_VariablesContainersList_GetVariablesContainerFromVariableOrPropertyOrParameterName_1(self,variableName),VariablesContainer)};VariablesContainersList.prototype["GetVariablesContainerFromVariableOrPropertyName"]=VariablesContainersList.prototype.GetVariablesContainerFromVariableOrPropertyName=function(variableName){var self=this.ptr;ensureCache.prepare();if(variableName&&typeof variableName==="object")variableName=variableName.ptr;else variableName=ensureString(variableName);return wrapPointer(_emscripten_bind_VariablesContainersList_GetVariablesContainerFromVariableOrPropertyName_1(self,variableName),VariablesContainer)};VariablesContainersList.prototype["GetVariablesContainerFromVariableNameOnly"]=VariablesContainersList.prototype.GetVariablesContainerFromVariableNameOnly=function(variableName){var self=this.ptr;ensureCache.prepare();if(variableName&&typeof variableName==="object")variableName=variableName.ptr;else variableName=ensureString(variableName);return wrapPointer(_emscripten_bind_VariablesContainersList_GetVariablesContainerFromVariableNameOnly_1(self,variableName),VariablesContainer)};VariablesContainersList.prototype["GetVariablesContainer"]=VariablesContainersList.prototype.GetVariablesContainer=function(index){var self=this.ptr;if(index&&typeof index==="object")index=index.ptr;return wrapPointer(_emscripten_bind_VariablesContainersList_GetVariablesContainer_1(self,index),VariablesContainer)};VariablesContainersList.prototype["GetVariablesContainersCount"]=VariablesContainersList.prototype.GetVariablesContainersCount=function(){var self=this.ptr;return _emscripten_bind_VariablesContainersList_GetVariablesContainersCount_0(self)};VariablesContainersList.prototype["__destroy__"]=VariablesContainersList.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_VariablesContainersList___destroy___0(self)};function ObjectGroup(){this.ptr=_emscripten_bind_ObjectGroup_ObjectGroup_0();getCache(ObjectGroup)[this.ptr]=this}ObjectGroup.prototype=Object.create(WrapperObject.prototype);ObjectGroup.prototype.constructor=ObjectGroup;ObjectGroup.prototype.__class__=ObjectGroup;ObjectGroup.__cache__={};Module["ObjectGroup"]=ObjectGroup;ObjectGroup.prototype["GetName"]=ObjectGroup.prototype.GetName=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_ObjectGroup_GetName_0(self))};ObjectGroup.prototype["SetName"]=ObjectGroup.prototype.SetName=function(name){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);_emscripten_bind_ObjectGroup_SetName_1(self,name)};ObjectGroup.prototype["AddObject"]=ObjectGroup.prototype.AddObject=function(objectName){var self=this.ptr;ensureCache.prepare();if(objectName&&typeof objectName==="object")objectName=objectName.ptr;else objectName=ensureString(objectName);_emscripten_bind_ObjectGroup_AddObject_1(self,objectName)};ObjectGroup.prototype["RemoveObject"]=ObjectGroup.prototype.RemoveObject=function(objectName){var self=this.ptr;ensureCache.prepare();if(objectName&&typeof objectName==="object")objectName=objectName.ptr;else objectName=ensureString(objectName);_emscripten_bind_ObjectGroup_RemoveObject_1(self,objectName)};ObjectGroup.prototype["Find"]=ObjectGroup.prototype.Find=function(objectName){var self=this.ptr;ensureCache.prepare();if(objectName&&typeof objectName==="object")objectName=objectName.ptr;else objectName=ensureString(objectName);return!!_emscripten_bind_ObjectGroup_Find_1(self,objectName)};ObjectGroup.prototype["GetAllObjectsNames"]=ObjectGroup.prototype.GetAllObjectsNames=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_ObjectGroup_GetAllObjectsNames_0(self),VectorString)};ObjectGroup.prototype["SerializeTo"]=ObjectGroup.prototype.SerializeTo=function(element){var self=this.ptr;if(element&&typeof element==="object")element=element.ptr;_emscripten_bind_ObjectGroup_SerializeTo_1(self,element)};ObjectGroup.prototype["UnserializeFrom"]=ObjectGroup.prototype.UnserializeFrom=function(element){var self=this.ptr;if(element&&typeof element==="object")element=element.ptr;_emscripten_bind_ObjectGroup_UnserializeFrom_1(self,element)};ObjectGroup.prototype["__destroy__"]=ObjectGroup.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_ObjectGroup___destroy___0(self)};function ObjectVariableHelper(){throw"cannot construct a ObjectVariableHelper, no constructor in IDL"}ObjectVariableHelper.prototype=Object.create(WrapperObject.prototype);ObjectVariableHelper.prototype.constructor=ObjectVariableHelper;ObjectVariableHelper.prototype.__class__=ObjectVariableHelper;ObjectVariableHelper.__cache__={};Module["ObjectVariableHelper"]=ObjectVariableHelper;ObjectVariableHelper.prototype["STATIC_MergeVariableContainers"]=ObjectVariableHelper.prototype.STATIC_MergeVariableContainers=function(objectsContainersList,objectGroup){var self=this.ptr;if(objectsContainersList&&typeof objectsContainersList==="object")objectsContainersList=objectsContainersList.ptr;if(objectGroup&&typeof objectGroup==="object")objectGroup=objectGroup.ptr;return wrapPointer(_emscripten_bind_ObjectVariableHelper_STATIC_MergeVariableContainers_2(self,objectsContainersList,objectGroup),VariablesContainer)};ObjectVariableHelper.prototype["STATIC_FillAnyVariableBetweenObjects"]=ObjectVariableHelper.prototype.STATIC_FillAnyVariableBetweenObjects=function(globalObjectsContainer,objectsContainer,objectGroup){var self=this.ptr;if(globalObjectsContainer&&typeof globalObjectsContainer==="object")globalObjectsContainer=globalObjectsContainer.ptr;if(objectsContainer&&typeof objectsContainer==="object")objectsContainer=objectsContainer.ptr;if(objectGroup&&typeof objectGroup==="object")objectGroup=objectGroup.ptr;_emscripten_bind_ObjectVariableHelper_STATIC_FillAnyVariableBetweenObjects_3(self,globalObjectsContainer,objectsContainer,objectGroup)};ObjectVariableHelper.prototype["STATIC_ApplyChangesToVariants"]=ObjectVariableHelper.prototype.STATIC_ApplyChangesToVariants=function(eventsBasedObject,objectName,changeset){var self=this.ptr;ensureCache.prepare();if(eventsBasedObject&&typeof eventsBasedObject==="object")eventsBasedObject=eventsBasedObject.ptr;if(objectName&&typeof objectName==="object")objectName=objectName.ptr;else objectName=ensureString(objectName);if(changeset&&typeof changeset==="object")changeset=changeset.ptr;_emscripten_bind_ObjectVariableHelper_STATIC_ApplyChangesToVariants_3(self,eventsBasedObject,objectName,changeset)};ObjectVariableHelper.prototype["__destroy__"]=ObjectVariableHelper.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_ObjectVariableHelper___destroy___0(self)};function EventsBasedObjectVariantHelper(){throw"cannot construct a EventsBasedObjectVariantHelper, no constructor in IDL"}EventsBasedObjectVariantHelper.prototype=Object.create(WrapperObject.prototype);EventsBasedObjectVariantHelper.prototype.constructor=EventsBasedObjectVariantHelper;EventsBasedObjectVariantHelper.prototype.__class__=EventsBasedObjectVariantHelper;EventsBasedObjectVariantHelper.__cache__={};Module["EventsBasedObjectVariantHelper"]=EventsBasedObjectVariantHelper;EventsBasedObjectVariantHelper.prototype["STATIC_ComplyVariantsToEventsBasedObject"]=EventsBasedObjectVariantHelper.prototype.STATIC_ComplyVariantsToEventsBasedObject=function(project,eventsBasedObject){var self=this.ptr;if(project&&typeof project==="object")project=project.ptr;if(eventsBasedObject&&typeof eventsBasedObject==="object")eventsBasedObject=eventsBasedObject.ptr;_emscripten_bind_EventsBasedObjectVariantHelper_STATIC_ComplyVariantsToEventsBasedObject_2(self,project,eventsBasedObject)};EventsBasedObjectVariantHelper.prototype["STATIC_FindAllChildrenCustomObjectType"]=EventsBasedObjectVariantHelper.prototype.STATIC_FindAllChildrenCustomObjectType=function(project,eventsBasedObject){var self=this.ptr;if(project&&typeof project==="object")project=project.ptr;if(eventsBasedObject&&typeof eventsBasedObject==="object")eventsBasedObject=eventsBasedObject.ptr;return wrapPointer(_emscripten_bind_EventsBasedObjectVariantHelper_STATIC_FindAllChildrenCustomObjectType_2(self,project,eventsBasedObject),VectorString)};EventsBasedObjectVariantHelper.prototype["__destroy__"]=EventsBasedObjectVariantHelper.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_EventsBasedObjectVariantHelper___destroy___0(self)};function ObjectGroupsContainer(){this.ptr=_emscripten_bind_ObjectGroupsContainer_ObjectGroupsContainer_0();getCache(ObjectGroupsContainer)[this.ptr]=this}ObjectGroupsContainer.prototype=Object.create(WrapperObject.prototype);ObjectGroupsContainer.prototype.constructor=ObjectGroupsContainer;ObjectGroupsContainer.prototype.__class__=ObjectGroupsContainer;ObjectGroupsContainer.__cache__={};Module["ObjectGroupsContainer"]=ObjectGroupsContainer;ObjectGroupsContainer.prototype["Has"]=ObjectGroupsContainer.prototype.Has=function(name){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);return!!_emscripten_bind_ObjectGroupsContainer_Has_1(self,name)};ObjectGroupsContainer.prototype["Insert"]=ObjectGroupsContainer.prototype.Insert=function(objectGroup,position){var self=this.ptr;if(objectGroup&&typeof objectGroup==="object")objectGroup=objectGroup.ptr;if(position&&typeof position==="object")position=position.ptr;return wrapPointer(_emscripten_bind_ObjectGroupsContainer_Insert_2(self,objectGroup,position),ObjectGroup)};ObjectGroupsContainer.prototype["InsertNew"]=ObjectGroupsContainer.prototype.InsertNew=function(name,position){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);if(position&&typeof position==="object")position=position.ptr;return wrapPointer(_emscripten_bind_ObjectGroupsContainer_InsertNew_2(self,name,position),ObjectGroup)};ObjectGroupsContainer.prototype["Count"]=ObjectGroupsContainer.prototype.Count=function(){var self=this.ptr;return _emscripten_bind_ObjectGroupsContainer_Count_0(self)};ObjectGroupsContainer.prototype["Get"]=ObjectGroupsContainer.prototype.Get=function(name){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);return wrapPointer(_emscripten_bind_ObjectGroupsContainer_Get_1(self,name),ObjectGroup)};ObjectGroupsContainer.prototype["GetAt"]=ObjectGroupsContainer.prototype.GetAt=function(index){var self=this.ptr;if(index&&typeof index==="object")index=index.ptr;return wrapPointer(_emscripten_bind_ObjectGroupsContainer_GetAt_1(self,index),ObjectGroup)};ObjectGroupsContainer.prototype["Clear"]=ObjectGroupsContainer.prototype.Clear=function(){var self=this.ptr;_emscripten_bind_ObjectGroupsContainer_Clear_0(self)};ObjectGroupsContainer.prototype["Remove"]=ObjectGroupsContainer.prototype.Remove=function(name){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);_emscripten_bind_ObjectGroupsContainer_Remove_1(self,name)};ObjectGroupsContainer.prototype["GetPosition"]=ObjectGroupsContainer.prototype.GetPosition=function(name){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);return _emscripten_bind_ObjectGroupsContainer_GetPosition_1(self,name)};ObjectGroupsContainer.prototype["Rename"]=ObjectGroupsContainer.prototype.Rename=function(oldName,newName){var self=this.ptr;ensureCache.prepare();if(oldName&&typeof oldName==="object")oldName=oldName.ptr;else oldName=ensureString(oldName);if(newName&&typeof newName==="object")newName=newName.ptr;else newName=ensureString(newName);return!!_emscripten_bind_ObjectGroupsContainer_Rename_2(self,oldName,newName)};ObjectGroupsContainer.prototype["Move"]=ObjectGroupsContainer.prototype.Move=function(oldIndex,newIndex){var self=this.ptr;if(oldIndex&&typeof oldIndex==="object")oldIndex=oldIndex.ptr;if(newIndex&&typeof newIndex==="object")newIndex=newIndex.ptr;_emscripten_bind_ObjectGroupsContainer_Move_2(self,oldIndex,newIndex)};ObjectGroupsContainer.prototype["SerializeTo"]=ObjectGroupsContainer.prototype.SerializeTo=function(element){var self=this.ptr;if(element&&typeof element==="object")element=element.ptr;_emscripten_bind_ObjectGroupsContainer_SerializeTo_1(self,element)};ObjectGroupsContainer.prototype["UnserializeFrom"]=ObjectGroupsContainer.prototype.UnserializeFrom=function(element){var self=this.ptr;if(element&&typeof element==="object")element=element.ptr;_emscripten_bind_ObjectGroupsContainer_UnserializeFrom_1(self,element)};ObjectGroupsContainer.prototype["__destroy__"]=ObjectGroupsContainer.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_ObjectGroupsContainer___destroy___0(self)};function PlatformSpecificAssets(){this.ptr=_emscripten_bind_PlatformSpecificAssets_PlatformSpecificAssets_0();getCache(PlatformSpecificAssets)[this.ptr]=this}PlatformSpecificAssets.prototype=Object.create(WrapperObject.prototype);PlatformSpecificAssets.prototype.constructor=PlatformSpecificAssets;PlatformSpecificAssets.prototype.__class__=PlatformSpecificAssets;PlatformSpecificAssets.__cache__={};Module["PlatformSpecificAssets"]=PlatformSpecificAssets;PlatformSpecificAssets.prototype["Has"]=PlatformSpecificAssets.prototype.Has=function(platform,name){var self=this.ptr;ensureCache.prepare();if(platform&&typeof platform==="object")platform=platform.ptr;else platform=ensureString(platform);if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);return!!_emscripten_bind_PlatformSpecificAssets_Has_2(self,platform,name)};PlatformSpecificAssets.prototype["Get"]=PlatformSpecificAssets.prototype.Get=function(platform,name){var self=this.ptr;ensureCache.prepare();if(platform&&typeof platform==="object")platform=platform.ptr;else platform=ensureString(platform);if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);return UTF8ToString(_emscripten_bind_PlatformSpecificAssets_Get_2(self,platform,name))};PlatformSpecificAssets.prototype["Remove"]=PlatformSpecificAssets.prototype.Remove=function(platform,name){var self=this.ptr;ensureCache.prepare();if(platform&&typeof platform==="object")platform=platform.ptr;else platform=ensureString(platform);if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);_emscripten_bind_PlatformSpecificAssets_Remove_2(self,platform,name)};PlatformSpecificAssets.prototype["Set"]=PlatformSpecificAssets.prototype.Set=function(platform,name,resourceName){var self=this.ptr;ensureCache.prepare();if(platform&&typeof platform==="object")platform=platform.ptr;else platform=ensureString(platform);if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);if(resourceName&&typeof resourceName==="object")resourceName=resourceName.ptr;else resourceName=ensureString(resourceName);_emscripten_bind_PlatformSpecificAssets_Set_3(self,platform,name,resourceName)};PlatformSpecificAssets.prototype["ExposeResources"]=PlatformSpecificAssets.prototype.ExposeResources=function(worker){var self=this.ptr;if(worker&&typeof worker==="object")worker=worker.ptr;_emscripten_bind_PlatformSpecificAssets_ExposeResources_1(self,worker)};PlatformSpecificAssets.prototype["SerializeTo"]=PlatformSpecificAssets.prototype.SerializeTo=function(element){var self=this.ptr;if(element&&typeof element==="object")element=element.ptr;_emscripten_bind_PlatformSpecificAssets_SerializeTo_1(self,element)};PlatformSpecificAssets.prototype["UnserializeFrom"]=PlatformSpecificAssets.prototype.UnserializeFrom=function(element){var self=this.ptr;if(element&&typeof element==="object")element=element.ptr;_emscripten_bind_PlatformSpecificAssets_UnserializeFrom_1(self,element)};PlatformSpecificAssets.prototype["__destroy__"]=PlatformSpecificAssets.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_PlatformSpecificAssets___destroy___0(self)};function LoadingScreen(){this.ptr=_emscripten_bind_LoadingScreen_LoadingScreen_0();getCache(LoadingScreen)[this.ptr]=this}LoadingScreen.prototype=Object.create(WrapperObject.prototype);LoadingScreen.prototype.constructor=LoadingScreen;LoadingScreen.prototype.__class__=LoadingScreen;LoadingScreen.__cache__={};Module["LoadingScreen"]=LoadingScreen;LoadingScreen.prototype["IsGDevelopLogoShownDuringLoadingScreen"]=LoadingScreen.prototype.IsGDevelopLogoShownDuringLoadingScreen=function(){var self=this.ptr;return!!_emscripten_bind_LoadingScreen_IsGDevelopLogoShownDuringLoadingScreen_0(self)};LoadingScreen.prototype["ShowGDevelopLogoDuringLoadingScreen"]=LoadingScreen.prototype.ShowGDevelopLogoDuringLoadingScreen=function(show){var self=this.ptr;if(show&&typeof show==="object")show=show.ptr;return wrapPointer(_emscripten_bind_LoadingScreen_ShowGDevelopLogoDuringLoadingScreen_1(self,show),LoadingScreen)};LoadingScreen.prototype["GetGDevelopLogoStyle"]=LoadingScreen.prototype.GetGDevelopLogoStyle=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_LoadingScreen_GetGDevelopLogoStyle_0(self))};LoadingScreen.prototype["SetGDevelopLogoStyle"]=LoadingScreen.prototype.SetGDevelopLogoStyle=function(value){var self=this.ptr;ensureCache.prepare();if(value&&typeof value==="object")value=value.ptr;else value=ensureString(value);return wrapPointer(_emscripten_bind_LoadingScreen_SetGDevelopLogoStyle_1(self,value),LoadingScreen)};LoadingScreen.prototype["GetBackgroundImageResourceName"]=LoadingScreen.prototype.GetBackgroundImageResourceName=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_LoadingScreen_GetBackgroundImageResourceName_0(self))};LoadingScreen.prototype["SetBackgroundImageResourceName"]=LoadingScreen.prototype.SetBackgroundImageResourceName=function(value){var self=this.ptr;ensureCache.prepare();if(value&&typeof value==="object")value=value.ptr;else value=ensureString(value);return wrapPointer(_emscripten_bind_LoadingScreen_SetBackgroundImageResourceName_1(self,value),LoadingScreen)};LoadingScreen.prototype["GetBackgroundColor"]=LoadingScreen.prototype.GetBackgroundColor=function(){var self=this.ptr;return _emscripten_bind_LoadingScreen_GetBackgroundColor_0(self)};LoadingScreen.prototype["SetBackgroundColor"]=LoadingScreen.prototype.SetBackgroundColor=function(value){var self=this.ptr;if(value&&typeof value==="object")value=value.ptr;return wrapPointer(_emscripten_bind_LoadingScreen_SetBackgroundColor_1(self,value),LoadingScreen)};LoadingScreen.prototype["GetBackgroundFadeInDuration"]=LoadingScreen.prototype.GetBackgroundFadeInDuration=function(){var self=this.ptr;return _emscripten_bind_LoadingScreen_GetBackgroundFadeInDuration_0(self)};LoadingScreen.prototype["SetBackgroundFadeInDuration"]=LoadingScreen.prototype.SetBackgroundFadeInDuration=function(value){var self=this.ptr;if(value&&typeof value==="object")value=value.ptr;return wrapPointer(_emscripten_bind_LoadingScreen_SetBackgroundFadeInDuration_1(self,value),LoadingScreen)};LoadingScreen.prototype["GetMinDuration"]=LoadingScreen.prototype.GetMinDuration=function(){var self=this.ptr;return _emscripten_bind_LoadingScreen_GetMinDuration_0(self)};LoadingScreen.prototype["SetMinDuration"]=LoadingScreen.prototype.SetMinDuration=function(value){var self=this.ptr;if(value&&typeof value==="object")value=value.ptr;return wrapPointer(_emscripten_bind_LoadingScreen_SetMinDuration_1(self,value),LoadingScreen)};LoadingScreen.prototype["GetLogoAndProgressFadeInDuration"]=LoadingScreen.prototype.GetLogoAndProgressFadeInDuration=function(){var self=this.ptr;return _emscripten_bind_LoadingScreen_GetLogoAndProgressFadeInDuration_0(self)};LoadingScreen.prototype["SetLogoAndProgressFadeInDuration"]=LoadingScreen.prototype.SetLogoAndProgressFadeInDuration=function(value){var self=this.ptr;if(value&&typeof value==="object")value=value.ptr;return wrapPointer(_emscripten_bind_LoadingScreen_SetLogoAndProgressFadeInDuration_1(self,value),LoadingScreen)};LoadingScreen.prototype["GetLogoAndProgressLogoFadeInDelay"]=LoadingScreen.prototype.GetLogoAndProgressLogoFadeInDelay=function(){var self=this.ptr;return _emscripten_bind_LoadingScreen_GetLogoAndProgressLogoFadeInDelay_0(self)};LoadingScreen.prototype["SetLogoAndProgressLogoFadeInDelay"]=LoadingScreen.prototype.SetLogoAndProgressLogoFadeInDelay=function(value){var self=this.ptr;if(value&&typeof value==="object")value=value.ptr;return wrapPointer(_emscripten_bind_LoadingScreen_SetLogoAndProgressLogoFadeInDelay_1(self,value),LoadingScreen)};LoadingScreen.prototype["GetShowProgressBar"]=LoadingScreen.prototype.GetShowProgressBar=function(){var self=this.ptr;return!!_emscripten_bind_LoadingScreen_GetShowProgressBar_0(self)};LoadingScreen.prototype["SetShowProgressBar"]=LoadingScreen.prototype.SetShowProgressBar=function(value){var self=this.ptr;if(value&&typeof value==="object")value=value.ptr;return wrapPointer(_emscripten_bind_LoadingScreen_SetShowProgressBar_1(self,value),LoadingScreen)};LoadingScreen.prototype["GetProgressBarMaxWidth"]=LoadingScreen.prototype.GetProgressBarMaxWidth=function(){var self=this.ptr;return _emscripten_bind_LoadingScreen_GetProgressBarMaxWidth_0(self)};LoadingScreen.prototype["SetProgressBarMaxWidth"]=LoadingScreen.prototype.SetProgressBarMaxWidth=function(value){var self=this.ptr;if(value&&typeof value==="object")value=value.ptr;return wrapPointer(_emscripten_bind_LoadingScreen_SetProgressBarMaxWidth_1(self,value),LoadingScreen)};LoadingScreen.prototype["GetProgressBarMinWidth"]=LoadingScreen.prototype.GetProgressBarMinWidth=function(){var self=this.ptr;return _emscripten_bind_LoadingScreen_GetProgressBarMinWidth_0(self)};LoadingScreen.prototype["SetProgressBarMinWidth"]=LoadingScreen.prototype.SetProgressBarMinWidth=function(value){var self=this.ptr;if(value&&typeof value==="object")value=value.ptr;return wrapPointer(_emscripten_bind_LoadingScreen_SetProgressBarMinWidth_1(self,value),LoadingScreen)};LoadingScreen.prototype["GetProgressBarWidthPercent"]=LoadingScreen.prototype.GetProgressBarWidthPercent=function(){var self=this.ptr;return _emscripten_bind_LoadingScreen_GetProgressBarWidthPercent_0(self)};LoadingScreen.prototype["SetProgressBarWidthPercent"]=LoadingScreen.prototype.SetProgressBarWidthPercent=function(value){var self=this.ptr;if(value&&typeof value==="object")value=value.ptr;return wrapPointer(_emscripten_bind_LoadingScreen_SetProgressBarWidthPercent_1(self,value),LoadingScreen)};LoadingScreen.prototype["GetProgressBarHeight"]=LoadingScreen.prototype.GetProgressBarHeight=function(){var self=this.ptr;return _emscripten_bind_LoadingScreen_GetProgressBarHeight_0(self)};LoadingScreen.prototype["SetProgressBarHeight"]=LoadingScreen.prototype.SetProgressBarHeight=function(value){var self=this.ptr;if(value&&typeof value==="object")value=value.ptr;return wrapPointer(_emscripten_bind_LoadingScreen_SetProgressBarHeight_1(self,value),LoadingScreen)};LoadingScreen.prototype["GetProgressBarColor"]=LoadingScreen.prototype.GetProgressBarColor=function(){var self=this.ptr;return _emscripten_bind_LoadingScreen_GetProgressBarColor_0(self)};LoadingScreen.prototype["SetProgressBarColor"]=LoadingScreen.prototype.SetProgressBarColor=function(value){var self=this.ptr;if(value&&typeof value==="object")value=value.ptr;return wrapPointer(_emscripten_bind_LoadingScreen_SetProgressBarColor_1(self,value),LoadingScreen)};LoadingScreen.prototype["SerializeTo"]=LoadingScreen.prototype.SerializeTo=function(element){var self=this.ptr;if(element&&typeof element==="object")element=element.ptr;_emscripten_bind_LoadingScreen_SerializeTo_1(self,element)};LoadingScreen.prototype["UnserializeFrom"]=LoadingScreen.prototype.UnserializeFrom=function(element){var self=this.ptr;if(element&&typeof element==="object")element=element.ptr;_emscripten_bind_LoadingScreen_UnserializeFrom_1(self,element)};LoadingScreen.prototype["__destroy__"]=LoadingScreen.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_LoadingScreen___destroy___0(self)};function Watermark(){this.ptr=_emscripten_bind_Watermark_Watermark_0();getCache(Watermark)[this.ptr]=this}Watermark.prototype=Object.create(WrapperObject.prototype);Watermark.prototype.constructor=Watermark;Watermark.prototype.__class__=Watermark;Watermark.__cache__={};Module["Watermark"]=Watermark;Watermark.prototype["IsGDevelopWatermarkShown"]=Watermark.prototype.IsGDevelopWatermarkShown=function(){var self=this.ptr;return!!_emscripten_bind_Watermark_IsGDevelopWatermarkShown_0(self)};Watermark.prototype["ShowGDevelopWatermark"]=Watermark.prototype.ShowGDevelopWatermark=function(show){var self=this.ptr;if(show&&typeof show==="object")show=show.ptr;return wrapPointer(_emscripten_bind_Watermark_ShowGDevelopWatermark_1(self,show),Watermark)};Watermark.prototype["GetPlacement"]=Watermark.prototype.GetPlacement=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_Watermark_GetPlacement_0(self))};Watermark.prototype["SetPlacement"]=Watermark.prototype.SetPlacement=function(value){var self=this.ptr;ensureCache.prepare();if(value&&typeof value==="object")value=value.ptr;else value=ensureString(value);return wrapPointer(_emscripten_bind_Watermark_SetPlacement_1(self,value),Watermark)};Watermark.prototype["SerializeTo"]=Watermark.prototype.SerializeTo=function(element){var self=this.ptr;if(element&&typeof element==="object")element=element.ptr;_emscripten_bind_Watermark_SerializeTo_1(self,element)};Watermark.prototype["UnserializeFrom"]=Watermark.prototype.UnserializeFrom=function(element){var self=this.ptr;if(element&&typeof element==="object")element=element.ptr;_emscripten_bind_Watermark_UnserializeFrom_1(self,element)};Watermark.prototype["__destroy__"]=Watermark.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_Watermark___destroy___0(self)};function ObjectFolderOrObject(){this.ptr=_emscripten_bind_ObjectFolderOrObject_ObjectFolderOrObject_0();getCache(ObjectFolderOrObject)[this.ptr]=this}ObjectFolderOrObject.prototype=Object.create(WrapperObject.prototype);ObjectFolderOrObject.prototype.constructor=ObjectFolderOrObject;ObjectFolderOrObject.prototype.__class__=ObjectFolderOrObject;ObjectFolderOrObject.__cache__={};Module["ObjectFolderOrObject"]=ObjectFolderOrObject;ObjectFolderOrObject.prototype["IsFolder"]=ObjectFolderOrObject.prototype.IsFolder=function(){var self=this.ptr;return!!_emscripten_bind_ObjectFolderOrObject_IsFolder_0(self)};ObjectFolderOrObject.prototype["IsRootFolder"]=ObjectFolderOrObject.prototype.IsRootFolder=function(){var self=this.ptr;return!!_emscripten_bind_ObjectFolderOrObject_IsRootFolder_0(self)};ObjectFolderOrObject.prototype["GetObject"]=ObjectFolderOrObject.prototype.GetObject=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_ObjectFolderOrObject_GetObject_0(self),gdObject)};ObjectFolderOrObject.prototype["GetFolderName"]=ObjectFolderOrObject.prototype.GetFolderName=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_ObjectFolderOrObject_GetFolderName_0(self))};ObjectFolderOrObject.prototype["SetFolderName"]=ObjectFolderOrObject.prototype.SetFolderName=function(name){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);_emscripten_bind_ObjectFolderOrObject_SetFolderName_1(self,name)};ObjectFolderOrObject.prototype["HasObjectNamed"]=ObjectFolderOrObject.prototype.HasObjectNamed=function(name){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);return!!_emscripten_bind_ObjectFolderOrObject_HasObjectNamed_1(self,name)};ObjectFolderOrObject.prototype["GetObjectNamed"]=ObjectFolderOrObject.prototype.GetObjectNamed=function(name){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);return wrapPointer(_emscripten_bind_ObjectFolderOrObject_GetObjectNamed_1(self,name),ObjectFolderOrObject)};ObjectFolderOrObject.prototype["GetChildrenCount"]=ObjectFolderOrObject.prototype.GetChildrenCount=function(){var self=this.ptr;return _emscripten_bind_ObjectFolderOrObject_GetChildrenCount_0(self)};ObjectFolderOrObject.prototype["GetChildAt"]=ObjectFolderOrObject.prototype.GetChildAt=function(pos){var self=this.ptr;if(pos&&typeof pos==="object")pos=pos.ptr;return wrapPointer(_emscripten_bind_ObjectFolderOrObject_GetChildAt_1(self,pos),ObjectFolderOrObject)};ObjectFolderOrObject.prototype["GetObjectChild"]=ObjectFolderOrObject.prototype.GetObjectChild=function(name){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);return wrapPointer(_emscripten_bind_ObjectFolderOrObject_GetObjectChild_1(self,name),ObjectFolderOrObject)};ObjectFolderOrObject.prototype["GetChildPosition"]=ObjectFolderOrObject.prototype.GetChildPosition=function(child){var self=this.ptr;if(child&&typeof child==="object")child=child.ptr;return _emscripten_bind_ObjectFolderOrObject_GetChildPosition_1(self,child)};ObjectFolderOrObject.prototype["GetParent"]=ObjectFolderOrObject.prototype.GetParent=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_ObjectFolderOrObject_GetParent_0(self),ObjectFolderOrObject)};ObjectFolderOrObject.prototype["InsertNewFolder"]=ObjectFolderOrObject.prototype.InsertNewFolder=function(name,newPosition){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);if(newPosition&&typeof newPosition==="object")newPosition=newPosition.ptr;return wrapPointer(_emscripten_bind_ObjectFolderOrObject_InsertNewFolder_2(self,name,newPosition),ObjectFolderOrObject)};ObjectFolderOrObject.prototype["GetOrCreateFolderChild"]=ObjectFolderOrObject.prototype.GetOrCreateFolderChild=function(name){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);return wrapPointer(_emscripten_bind_ObjectFolderOrObject_GetOrCreateFolderChild_1(self,name),ObjectFolderOrObject)};ObjectFolderOrObject.prototype["MoveObjectFolderOrObjectToAnotherFolder"]=ObjectFolderOrObject.prototype.MoveObjectFolderOrObjectToAnotherFolder=function(objectFolderOrObject,newParentFolder,newPosition){var self=this.ptr;if(objectFolderOrObject&&typeof objectFolderOrObject==="object")objectFolderOrObject=objectFolderOrObject.ptr;if(newParentFolder&&typeof newParentFolder==="object")newParentFolder=newParentFolder.ptr;if(newPosition&&typeof newPosition==="object")newPosition=newPosition.ptr;_emscripten_bind_ObjectFolderOrObject_MoveObjectFolderOrObjectToAnotherFolder_3(self,objectFolderOrObject,newParentFolder,newPosition)};ObjectFolderOrObject.prototype["MoveChild"]=ObjectFolderOrObject.prototype.MoveChild=function(oldIndex,newIndex){var self=this.ptr;if(oldIndex&&typeof oldIndex==="object")oldIndex=oldIndex.ptr;if(newIndex&&typeof newIndex==="object")newIndex=newIndex.ptr;_emscripten_bind_ObjectFolderOrObject_MoveChild_2(self,oldIndex,newIndex)};ObjectFolderOrObject.prototype["RemoveFolderChild"]=ObjectFolderOrObject.prototype.RemoveFolderChild=function(childToRemove){var self=this.ptr;if(childToRemove&&typeof childToRemove==="object")childToRemove=childToRemove.ptr;_emscripten_bind_ObjectFolderOrObject_RemoveFolderChild_1(self,childToRemove)};ObjectFolderOrObject.prototype["IsADescendantOf"]=ObjectFolderOrObject.prototype.IsADescendantOf=function(otherObjectFolderOrObject){var self=this.ptr;if(otherObjectFolderOrObject&&typeof otherObjectFolderOrObject==="object")otherObjectFolderOrObject=otherObjectFolderOrObject.ptr;return!!_emscripten_bind_ObjectFolderOrObject_IsADescendantOf_1(self,otherObjectFolderOrObject)};ObjectFolderOrObject.prototype["GetQuickCustomizationVisibility"]=ObjectFolderOrObject.prototype.GetQuickCustomizationVisibility=function(){var self=this.ptr;return _emscripten_bind_ObjectFolderOrObject_GetQuickCustomizationVisibility_0(self)};ObjectFolderOrObject.prototype["SetQuickCustomizationVisibility"]=ObjectFolderOrObject.prototype.SetQuickCustomizationVisibility=function(visibility){var self=this.ptr;if(visibility&&typeof visibility==="object")visibility=visibility.ptr;_emscripten_bind_ObjectFolderOrObject_SetQuickCustomizationVisibility_1(self,visibility)};ObjectFolderOrObject.prototype["__destroy__"]=ObjectFolderOrObject.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_ObjectFolderOrObject___destroy___0(self)};function ObjectsContainer(sourceType){if(sourceType&&typeof sourceType==="object")sourceType=sourceType.ptr;this.ptr=_emscripten_bind_ObjectsContainer_ObjectsContainer_1(sourceType);getCache(ObjectsContainer)[this.ptr]=this}ObjectsContainer.prototype=Object.create(WrapperObject.prototype);ObjectsContainer.prototype.constructor=ObjectsContainer;ObjectsContainer.prototype.__class__=ObjectsContainer;ObjectsContainer.__cache__={};Module["ObjectsContainer"]=ObjectsContainer;ObjectsContainer.prototype["GetSourceType"]=ObjectsContainer.prototype.GetSourceType=function(){var self=this.ptr;return _emscripten_bind_ObjectsContainer_GetSourceType_0(self)};ObjectsContainer.prototype["InsertNewObject"]=ObjectsContainer.prototype.InsertNewObject=function(project,type,name,pos){var self=this.ptr;ensureCache.prepare();if(project&&typeof project==="object")project=project.ptr;if(type&&typeof type==="object")type=type.ptr;else type=ensureString(type);if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);if(pos&&typeof pos==="object")pos=pos.ptr;return wrapPointer(_emscripten_bind_ObjectsContainer_InsertNewObject_4(self,project,type,name,pos),gdObject)};ObjectsContainer.prototype["InsertNewObjectInFolder"]=ObjectsContainer.prototype.InsertNewObjectInFolder=function(project,type,name,folder,pos){var self=this.ptr;ensureCache.prepare();if(project&&typeof project==="object")project=project.ptr;if(type&&typeof type==="object")type=type.ptr;else type=ensureString(type);if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);if(folder&&typeof folder==="object")folder=folder.ptr;if(pos&&typeof pos==="object")pos=pos.ptr;return wrapPointer(_emscripten_bind_ObjectsContainer_InsertNewObjectInFolder_5(self,project,type,name,folder,pos),gdObject)};ObjectsContainer.prototype["InsertObject"]=ObjectsContainer.prototype.InsertObject=function(obj,pos){var self=this.ptr;if(obj&&typeof obj==="object")obj=obj.ptr;if(pos&&typeof pos==="object")pos=pos.ptr;return wrapPointer(_emscripten_bind_ObjectsContainer_InsertObject_2(self,obj,pos),gdObject)};ObjectsContainer.prototype["HasObjectNamed"]=ObjectsContainer.prototype.HasObjectNamed=function(name){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);return!!_emscripten_bind_ObjectsContainer_HasObjectNamed_1(self,name)};ObjectsContainer.prototype["GetObject"]=ObjectsContainer.prototype.GetObject=function(name){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);return wrapPointer(_emscripten_bind_ObjectsContainer_GetObject_1(self,name),gdObject)};ObjectsContainer.prototype["GetObjectAt"]=ObjectsContainer.prototype.GetObjectAt=function(pos){var self=this.ptr;if(pos&&typeof pos==="object")pos=pos.ptr;return wrapPointer(_emscripten_bind_ObjectsContainer_GetObjectAt_1(self,pos),gdObject)};ObjectsContainer.prototype["GetObjectPosition"]=ObjectsContainer.prototype.GetObjectPosition=function(name){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);return _emscripten_bind_ObjectsContainer_GetObjectPosition_1(self,name)};ObjectsContainer.prototype["RemoveObject"]=ObjectsContainer.prototype.RemoveObject=function(name){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);_emscripten_bind_ObjectsContainer_RemoveObject_1(self,name)};ObjectsContainer.prototype["MoveObject"]=ObjectsContainer.prototype.MoveObject=function(oldIndex,newIndex){var self=this.ptr;if(oldIndex&&typeof oldIndex==="object")oldIndex=oldIndex.ptr;if(newIndex&&typeof newIndex==="object")newIndex=newIndex.ptr;_emscripten_bind_ObjectsContainer_MoveObject_2(self,oldIndex,newIndex)};ObjectsContainer.prototype["MoveObjectFolderOrObjectToAnotherContainerInFolder"]=ObjectsContainer.prototype.MoveObjectFolderOrObjectToAnotherContainerInFolder=function(objectFolderOrObject,newObjectsContainer,parentObjectFolderOrObject,newPosition){var self=this.ptr;if(objectFolderOrObject&&typeof objectFolderOrObject==="object")objectFolderOrObject=objectFolderOrObject.ptr;if(newObjectsContainer&&typeof newObjectsContainer==="object")newObjectsContainer=newObjectsContainer.ptr;if(parentObjectFolderOrObject&&typeof parentObjectFolderOrObject==="object")parentObjectFolderOrObject=parentObjectFolderOrObject.ptr;if(newPosition&&typeof newPosition==="object")newPosition=newPosition.ptr;_emscripten_bind_ObjectsContainer_MoveObjectFolderOrObjectToAnotherContainerInFolder_4(self,objectFolderOrObject,newObjectsContainer,parentObjectFolderOrObject,newPosition)};ObjectsContainer.prototype["GetObjectsCount"]=ObjectsContainer.prototype.GetObjectsCount=function(){var self=this.ptr;return _emscripten_bind_ObjectsContainer_GetObjectsCount_0(self)};ObjectsContainer.prototype["GetRootFolder"]=ObjectsContainer.prototype.GetRootFolder=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_ObjectsContainer_GetRootFolder_0(self),ObjectFolderOrObject)};ObjectsContainer.prototype["GetAllObjectFolderOrObjects"]=ObjectsContainer.prototype.GetAllObjectFolderOrObjects=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_ObjectsContainer_GetAllObjectFolderOrObjects_0(self),VectorObjectFolderOrObject)};ObjectsContainer.prototype["GetObjectGroups"]=ObjectsContainer.prototype.GetObjectGroups=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_ObjectsContainer_GetObjectGroups_0(self),ObjectGroupsContainer)};ObjectsContainer.prototype["FREE_GetTypeOfBehavior"]=ObjectsContainer.prototype.FREE_GetTypeOfBehavior=function(layout,name,searchInGroups){var self=this.ptr;ensureCache.prepare();if(layout&&typeof layout==="object")layout=layout.ptr;if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);if(searchInGroups&&typeof searchInGroups==="object")searchInGroups=searchInGroups.ptr;return UTF8ToString(_emscripten_bind_ObjectsContainer_FREE_GetTypeOfBehavior_3(self,layout,name,searchInGroups))};ObjectsContainer.prototype["FREE_GetTypeOfObject"]=ObjectsContainer.prototype.FREE_GetTypeOfObject=function(layout,name,searchInGroups){var self=this.ptr;ensureCache.prepare();if(layout&&typeof layout==="object")layout=layout.ptr;if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);if(searchInGroups&&typeof searchInGroups==="object")searchInGroups=searchInGroups.ptr;return UTF8ToString(_emscripten_bind_ObjectsContainer_FREE_GetTypeOfObject_3(self,layout,name,searchInGroups))};ObjectsContainer.prototype["FREE_GetBehaviorsOfObject"]=ObjectsContainer.prototype.FREE_GetBehaviorsOfObject=function(layout,name,searchInGroups){var self=this.ptr;ensureCache.prepare();if(layout&&typeof layout==="object")layout=layout.ptr;if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);if(searchInGroups&&typeof searchInGroups==="object")searchInGroups=searchInGroups.ptr;return wrapPointer(_emscripten_bind_ObjectsContainer_FREE_GetBehaviorsOfObject_3(self,layout,name,searchInGroups),VectorString)};ObjectsContainer.prototype["FREE_IsDefaultBehavior"]=ObjectsContainer.prototype.FREE_IsDefaultBehavior=function(layout,objectOrGroupName,behaviorName,searchInGroups){var self=this.ptr;ensureCache.prepare();if(layout&&typeof layout==="object")layout=layout.ptr;if(objectOrGroupName&&typeof objectOrGroupName==="object")objectOrGroupName=objectOrGroupName.ptr;else objectOrGroupName=ensureString(objectOrGroupName);if(behaviorName&&typeof behaviorName==="object")behaviorName=behaviorName.ptr;else behaviorName=ensureString(behaviorName);if(searchInGroups&&typeof searchInGroups==="object")searchInGroups=searchInGroups.ptr;return!!_emscripten_bind_ObjectsContainer_FREE_IsDefaultBehavior_4(self,layout,objectOrGroupName,behaviorName,searchInGroups)};ObjectsContainer.prototype["FREE_GetTypeOfBehaviorInObjectOrGroup"]=ObjectsContainer.prototype.FREE_GetTypeOfBehaviorInObjectOrGroup=function(layout,objectOrGroupName,behaviorName,searchInGroups){var self=this.ptr;ensureCache.prepare();if(layout&&typeof layout==="object")layout=layout.ptr;if(objectOrGroupName&&typeof objectOrGroupName==="object")objectOrGroupName=objectOrGroupName.ptr;else objectOrGroupName=ensureString(objectOrGroupName);if(behaviorName&&typeof behaviorName==="object")behaviorName=behaviorName.ptr;else behaviorName=ensureString(behaviorName);if(searchInGroups&&typeof searchInGroups==="object")searchInGroups=searchInGroups.ptr;return UTF8ToString(_emscripten_bind_ObjectsContainer_FREE_GetTypeOfBehaviorInObjectOrGroup_4(self,layout,objectOrGroupName,behaviorName,searchInGroups))};ObjectsContainer.prototype["FREE_GetBehaviorNamesInObjectOrGroup"]=ObjectsContainer.prototype.FREE_GetBehaviorNamesInObjectOrGroup=function(layout,objectOrGroupName,behaviorType,searchInGroups){var self=this.ptr;ensureCache.prepare();if(layout&&typeof layout==="object")layout=layout.ptr;if(objectOrGroupName&&typeof objectOrGroupName==="object")objectOrGroupName=objectOrGroupName.ptr;else objectOrGroupName=ensureString(objectOrGroupName);if(behaviorType&&typeof behaviorType==="object")behaviorType=behaviorType.ptr;else behaviorType=ensureString(behaviorType);if(searchInGroups&&typeof searchInGroups==="object")searchInGroups=searchInGroups.ptr;return wrapPointer(_emscripten_bind_ObjectsContainer_FREE_GetBehaviorNamesInObjectOrGroup_4(self,layout,objectOrGroupName,behaviorType,searchInGroups),VectorString)};ObjectsContainer.prototype["__destroy__"]=ObjectsContainer.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_ObjectsContainer___destroy___0(self)};function Project(){this.ptr=_emscripten_bind_Project_Project_0();getCache(Project)[this.ptr]=this}Project.prototype=Object.create(WrapperObject.prototype);Project.prototype.constructor=Project;Project.prototype.__class__=Project;Project.__cache__={};Module["Project"]=Project;Project.prototype["SetName"]=Project.prototype.SetName=function(name){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);_emscripten_bind_Project_SetName_1(self,name)};Project.prototype["GetName"]=Project.prototype.GetName=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_Project_GetName_0(self))};Project.prototype["GetCategories"]=Project.prototype.GetCategories=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_Project_GetCategories_0(self),VectorString)};Project.prototype["SetDescription"]=Project.prototype.SetDescription=function(description){var self=this.ptr;ensureCache.prepare();if(description&&typeof description==="object")description=description.ptr;else description=ensureString(description);_emscripten_bind_Project_SetDescription_1(self,description)};Project.prototype["GetDescription"]=Project.prototype.GetDescription=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_Project_GetDescription_0(self))};Project.prototype["SetVersion"]=Project.prototype.SetVersion=function(authorName){var self=this.ptr;ensureCache.prepare();if(authorName&&typeof authorName==="object")authorName=authorName.ptr;else authorName=ensureString(authorName);_emscripten_bind_Project_SetVersion_1(self,authorName)};Project.prototype["GetVersion"]=Project.prototype.GetVersion=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_Project_GetVersion_0(self))};Project.prototype["SetAuthor"]=Project.prototype.SetAuthor=function(authorName){var self=this.ptr;ensureCache.prepare();if(authorName&&typeof authorName==="object")authorName=authorName.ptr;else authorName=ensureString(authorName);_emscripten_bind_Project_SetAuthor_1(self,authorName)};Project.prototype["GetAuthor"]=Project.prototype.GetAuthor=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_Project_GetAuthor_0(self))};Project.prototype["GetAuthorIds"]=Project.prototype.GetAuthorIds=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_Project_GetAuthorIds_0(self),VectorString)};Project.prototype["GetAuthorUsernames"]=Project.prototype.GetAuthorUsernames=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_Project_GetAuthorUsernames_0(self),VectorString)};Project.prototype["IsPlayableWithKeyboard"]=Project.prototype.IsPlayableWithKeyboard=function(){var self=this.ptr;return!!_emscripten_bind_Project_IsPlayableWithKeyboard_0(self)};Project.prototype["SetPlayableWithKeyboard"]=Project.prototype.SetPlayableWithKeyboard=function(playable){var self=this.ptr;if(playable&&typeof playable==="object")playable=playable.ptr;_emscripten_bind_Project_SetPlayableWithKeyboard_1(self,playable)};Project.prototype["IsPlayableWithGamepad"]=Project.prototype.IsPlayableWithGamepad=function(){var self=this.ptr;return!!_emscripten_bind_Project_IsPlayableWithGamepad_0(self)};Project.prototype["SetPlayableWithGamepad"]=Project.prototype.SetPlayableWithGamepad=function(playable){var self=this.ptr;if(playable&&typeof playable==="object")playable=playable.ptr;_emscripten_bind_Project_SetPlayableWithGamepad_1(self,playable)};Project.prototype["IsPlayableWithMobile"]=Project.prototype.IsPlayableWithMobile=function(){var self=this.ptr;return!!_emscripten_bind_Project_IsPlayableWithMobile_0(self)};Project.prototype["SetPlayableWithMobile"]=Project.prototype.SetPlayableWithMobile=function(playable){var self=this.ptr;if(playable&&typeof playable==="object")playable=playable.ptr;_emscripten_bind_Project_SetPlayableWithMobile_1(self,playable)};Project.prototype["SetPackageName"]=Project.prototype.SetPackageName=function(packageName){var self=this.ptr;ensureCache.prepare();if(packageName&&typeof packageName==="object")packageName=packageName.ptr;else packageName=ensureString(packageName);_emscripten_bind_Project_SetPackageName_1(self,packageName)};Project.prototype["GetPackageName"]=Project.prototype.GetPackageName=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_Project_GetPackageName_0(self))};Project.prototype["SetTemplateSlug"]=Project.prototype.SetTemplateSlug=function(templateSlug){var self=this.ptr;ensureCache.prepare();if(templateSlug&&typeof templateSlug==="object")templateSlug=templateSlug.ptr;else templateSlug=ensureString(templateSlug);_emscripten_bind_Project_SetTemplateSlug_1(self,templateSlug)};Project.prototype["GetTemplateSlug"]=Project.prototype.GetTemplateSlug=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_Project_GetTemplateSlug_0(self))};Project.prototype["SetOrientation"]=Project.prototype.SetOrientation=function(orientation){var self=this.ptr;ensureCache.prepare();if(orientation&&typeof orientation==="object")orientation=orientation.ptr;else orientation=ensureString(orientation);_emscripten_bind_Project_SetOrientation_1(self,orientation)};Project.prototype["GetOrientation"]=Project.prototype.GetOrientation=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_Project_GetOrientation_0(self))};Project.prototype["SetProjectUuid"]=Project.prototype.SetProjectUuid=function(projectUuid){var self=this.ptr;ensureCache.prepare();if(projectUuid&&typeof projectUuid==="object")projectUuid=projectUuid.ptr;else projectUuid=ensureString(projectUuid);_emscripten_bind_Project_SetProjectUuid_1(self,projectUuid)};Project.prototype["GetProjectUuid"]=Project.prototype.GetProjectUuid=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_Project_GetProjectUuid_0(self))};Project.prototype["ResetProjectUuid"]=Project.prototype.ResetProjectUuid=function(){var self=this.ptr;_emscripten_bind_Project_ResetProjectUuid_0(self)};Project.prototype["SetProjectFile"]=Project.prototype.SetProjectFile=function(file){var self=this.ptr;ensureCache.prepare();if(file&&typeof file==="object")file=file.ptr;else file=ensureString(file);_emscripten_bind_Project_SetProjectFile_1(self,file)};Project.prototype["GetProjectFile"]=Project.prototype.GetProjectFile=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_Project_GetProjectFile_0(self))};Project.prototype["SetGameResolutionSize"]=Project.prototype.SetGameResolutionSize=function(width,height){var self=this.ptr;if(width&&typeof width==="object")width=width.ptr;if(height&&typeof height==="object")height=height.ptr;_emscripten_bind_Project_SetGameResolutionSize_2(self,width,height)};Project.prototype["GetGameResolutionWidth"]=Project.prototype.GetGameResolutionWidth=function(){var self=this.ptr;return _emscripten_bind_Project_GetGameResolutionWidth_0(self)};Project.prototype["GetGameResolutionHeight"]=Project.prototype.GetGameResolutionHeight=function(){var self=this.ptr;return _emscripten_bind_Project_GetGameResolutionHeight_0(self)};Project.prototype["GetAdaptGameResolutionAtRuntime"]=Project.prototype.GetAdaptGameResolutionAtRuntime=function(){var self=this.ptr;return!!_emscripten_bind_Project_GetAdaptGameResolutionAtRuntime_0(self)};Project.prototype["SetAdaptGameResolutionAtRuntime"]=Project.prototype.SetAdaptGameResolutionAtRuntime=function(adaptGameResolutionAtRuntime){var self=this.ptr;if(adaptGameResolutionAtRuntime&&typeof adaptGameResolutionAtRuntime==="object")adaptGameResolutionAtRuntime=adaptGameResolutionAtRuntime.ptr;_emscripten_bind_Project_SetAdaptGameResolutionAtRuntime_1(self,adaptGameResolutionAtRuntime)};Project.prototype["SetScaleMode"]=Project.prototype.SetScaleMode=function(scaleMode){var self=this.ptr;ensureCache.prepare();if(scaleMode&&typeof scaleMode==="object")scaleMode=scaleMode.ptr;else scaleMode=ensureString(scaleMode);_emscripten_bind_Project_SetScaleMode_1(self,scaleMode)};Project.prototype["GetScaleMode"]=Project.prototype.GetScaleMode=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_Project_GetScaleMode_0(self))};Project.prototype["SetPixelsRounding"]=Project.prototype.SetPixelsRounding=function(pixelsRounding){var self=this.ptr;if(pixelsRounding&&typeof pixelsRounding==="object")pixelsRounding=pixelsRounding.ptr;_emscripten_bind_Project_SetPixelsRounding_1(self,pixelsRounding)};Project.prototype["GetPixelsRounding"]=Project.prototype.GetPixelsRounding=function(){var self=this.ptr;return!!_emscripten_bind_Project_GetPixelsRounding_0(self)};Project.prototype["SetSizeOnStartupMode"]=Project.prototype.SetSizeOnStartupMode=function(orientation){var self=this.ptr;ensureCache.prepare();if(orientation&&typeof orientation==="object")orientation=orientation.ptr;else orientation=ensureString(orientation);_emscripten_bind_Project_SetSizeOnStartupMode_1(self,orientation)};Project.prototype["GetSizeOnStartupMode"]=Project.prototype.GetSizeOnStartupMode=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_Project_GetSizeOnStartupMode_0(self))};Project.prototype["SetAntialiasingMode"]=Project.prototype.SetAntialiasingMode=function(antialiasingMode){var self=this.ptr;ensureCache.prepare();if(antialiasingMode&&typeof antialiasingMode==="object")antialiasingMode=antialiasingMode.ptr;else antialiasingMode=ensureString(antialiasingMode);_emscripten_bind_Project_SetAntialiasingMode_1(self,antialiasingMode)};Project.prototype["GetAntialiasingMode"]=Project.prototype.GetAntialiasingMode=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_Project_GetAntialiasingMode_0(self))};Project.prototype["SetAntialisingEnabledOnMobile"]=Project.prototype.SetAntialisingEnabledOnMobile=function(pixelsRounding){var self=this.ptr;if(pixelsRounding&&typeof pixelsRounding==="object")pixelsRounding=pixelsRounding.ptr;_emscripten_bind_Project_SetAntialisingEnabledOnMobile_1(self,pixelsRounding)};Project.prototype["IsAntialisingEnabledOnMobile"]=Project.prototype.IsAntialisingEnabledOnMobile=function(){var self=this.ptr;return!!_emscripten_bind_Project_IsAntialisingEnabledOnMobile_0(self)};Project.prototype["GetMaximumFPS"]=Project.prototype.GetMaximumFPS=function(){var self=this.ptr;return _emscripten_bind_Project_GetMaximumFPS_0(self)};Project.prototype["SetMaximumFPS"]=Project.prototype.SetMaximumFPS=function(fps){var self=this.ptr;if(fps&&typeof fps==="object")fps=fps.ptr;_emscripten_bind_Project_SetMaximumFPS_1(self,fps)};Project.prototype["GetMinimumFPS"]=Project.prototype.GetMinimumFPS=function(){var self=this.ptr;return _emscripten_bind_Project_GetMinimumFPS_0(self)};Project.prototype["SetMinimumFPS"]=Project.prototype.SetMinimumFPS=function(fps){var self=this.ptr;if(fps&&typeof fps==="object")fps=fps.ptr;_emscripten_bind_Project_SetMinimumFPS_1(self,fps)};Project.prototype["SetFolderProject"]=Project.prototype.SetFolderProject=function(enable){var self=this.ptr;if(enable&&typeof enable==="object")enable=enable.ptr;_emscripten_bind_Project_SetFolderProject_1(self,enable)};Project.prototype["IsFolderProject"]=Project.prototype.IsFolderProject=function(){var self=this.ptr;return!!_emscripten_bind_Project_IsFolderProject_0(self)};Project.prototype["SetUseDeprecatedZeroAsDefaultZOrder"]=Project.prototype.SetUseDeprecatedZeroAsDefaultZOrder=function(enable){var self=this.ptr;if(enable&&typeof enable==="object")enable=enable.ptr;_emscripten_bind_Project_SetUseDeprecatedZeroAsDefaultZOrder_1(self,enable)};Project.prototype["GetUseDeprecatedZeroAsDefaultZOrder"]=Project.prototype.GetUseDeprecatedZeroAsDefaultZOrder=function(){var self=this.ptr;return!!_emscripten_bind_Project_GetUseDeprecatedZeroAsDefaultZOrder_0(self)};Project.prototype["SetUseDeprecatedZeroAsDefaultStringVariable"]=Project.prototype.SetUseDeprecatedZeroAsDefaultStringVariable=function(enable){var self=this.ptr;if(enable&&typeof enable==="object")enable=enable.ptr;_emscripten_bind_Project_SetUseDeprecatedZeroAsDefaultStringVariable_1(self,enable)};Project.prototype["GetUseDeprecatedZeroAsDefaultStringVariable"]=Project.prototype.GetUseDeprecatedZeroAsDefaultStringVariable=function(){var self=this.ptr;return!!_emscripten_bind_Project_GetUseDeprecatedZeroAsDefaultStringVariable_0(self)};Project.prototype["AreEffectsHiddenInEditor"]=Project.prototype.AreEffectsHiddenInEditor=function(){var self=this.ptr;return!!_emscripten_bind_Project_AreEffectsHiddenInEditor_0(self)};Project.prototype["SetEffectsHiddenInEditor"]=Project.prototype.SetEffectsHiddenInEditor=function(enable){var self=this.ptr;if(enable&&typeof enable==="object")enable=enable.ptr;_emscripten_bind_Project_SetEffectsHiddenInEditor_1(self,enable)};Project.prototype["SetLastCompilationDirectory"]=Project.prototype.SetLastCompilationDirectory=function(path){var self=this.ptr;ensureCache.prepare();if(path&&typeof path==="object")path=path.ptr;else path=ensureString(path);_emscripten_bind_Project_SetLastCompilationDirectory_1(self,path)};Project.prototype["GetLastCompilationDirectory"]=Project.prototype.GetLastCompilationDirectory=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_Project_GetLastCompilationDirectory_0(self))};Project.prototype["GetExtensionProperties"]=Project.prototype.GetExtensionProperties=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_Project_GetExtensionProperties_0(self),ExtensionProperties)};Project.prototype["AddPlatform"]=Project.prototype.AddPlatform=function(platform){var self=this.ptr;if(platform&&typeof platform==="object")platform=platform.ptr;_emscripten_bind_Project_AddPlatform_1(self,platform)};Project.prototype["GetCurrentPlatform"]=Project.prototype.GetCurrentPlatform=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_Project_GetCurrentPlatform_0(self),Platform)};Project.prototype["GetPlatformSpecificAssets"]=Project.prototype.GetPlatformSpecificAssets=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_Project_GetPlatformSpecificAssets_0(self),PlatformSpecificAssets)};Project.prototype["GetLoadingScreen"]=Project.prototype.GetLoadingScreen=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_Project_GetLoadingScreen_0(self),LoadingScreen)};Project.prototype["GetWatermark"]=Project.prototype.GetWatermark=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_Project_GetWatermark_0(self),Watermark)};Project.prototype["HasLayoutNamed"]=Project.prototype.HasLayoutNamed=function(name){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);return!!_emscripten_bind_Project_HasLayoutNamed_1(self,name)};Project.prototype["GetLayout"]=Project.prototype.GetLayout=function(name){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);return wrapPointer(_emscripten_bind_Project_GetLayout_1(self,name),Layout)};Project.prototype["GetLayoutAt"]=Project.prototype.GetLayoutAt=function(index){var self=this.ptr;if(index&&typeof index==="object")index=index.ptr;return wrapPointer(_emscripten_bind_Project_GetLayoutAt_1(self,index),Layout)};Project.prototype["MoveLayout"]=Project.prototype.MoveLayout=function(oldIndex,newIndex){var self=this.ptr;if(oldIndex&&typeof oldIndex==="object")oldIndex=oldIndex.ptr;if(newIndex&&typeof newIndex==="object")newIndex=newIndex.ptr;_emscripten_bind_Project_MoveLayout_2(self,oldIndex,newIndex)};Project.prototype["SwapLayouts"]=Project.prototype.SwapLayouts=function(first,second){var self=this.ptr;if(first&&typeof first==="object")first=first.ptr;if(second&&typeof second==="object")second=second.ptr;_emscripten_bind_Project_SwapLayouts_2(self,first,second)};Project.prototype["GetLayoutsCount"]=Project.prototype.GetLayoutsCount=function(){var self=this.ptr;return _emscripten_bind_Project_GetLayoutsCount_0(self)};Project.prototype["InsertNewLayout"]=Project.prototype.InsertNewLayout=function(name,position){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);if(position&&typeof position==="object")position=position.ptr;return wrapPointer(_emscripten_bind_Project_InsertNewLayout_2(self,name,position),Layout)};Project.prototype["RemoveLayout"]=Project.prototype.RemoveLayout=function(name){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);_emscripten_bind_Project_RemoveLayout_1(self,name)};Project.prototype["SetFirstLayout"]=Project.prototype.SetFirstLayout=function(name){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);_emscripten_bind_Project_SetFirstLayout_1(self,name)};Project.prototype["GetFirstLayout"]=Project.prototype.GetFirstLayout=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_Project_GetFirstLayout_0(self))};Project.prototype["GetLayoutPosition"]=Project.prototype.GetLayoutPosition=function(name){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);return _emscripten_bind_Project_GetLayoutPosition_1(self,name)};Project.prototype["HasExternalEventsNamed"]=Project.prototype.HasExternalEventsNamed=function(name){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);return!!_emscripten_bind_Project_HasExternalEventsNamed_1(self,name)};Project.prototype["GetExternalEvents"]=Project.prototype.GetExternalEvents=function(name){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);return wrapPointer(_emscripten_bind_Project_GetExternalEvents_1(self,name),ExternalEvents)};Project.prototype["GetExternalEventsAt"]=Project.prototype.GetExternalEventsAt=function(index){var self=this.ptr;if(index&&typeof index==="object")index=index.ptr;return wrapPointer(_emscripten_bind_Project_GetExternalEventsAt_1(self,index),ExternalEvents)};Project.prototype["MoveExternalEvents"]=Project.prototype.MoveExternalEvents=function(oldIndex,newIndex){var self=this.ptr;if(oldIndex&&typeof oldIndex==="object")oldIndex=oldIndex.ptr;if(newIndex&&typeof newIndex==="object")newIndex=newIndex.ptr;_emscripten_bind_Project_MoveExternalEvents_2(self,oldIndex,newIndex)};Project.prototype["SwapExternalEvents"]=Project.prototype.SwapExternalEvents=function(first,second){var self=this.ptr;if(first&&typeof first==="object")first=first.ptr;if(second&&typeof second==="object")second=second.ptr;_emscripten_bind_Project_SwapExternalEvents_2(self,first,second)};Project.prototype["GetExternalEventsCount"]=Project.prototype.GetExternalEventsCount=function(){var self=this.ptr;return _emscripten_bind_Project_GetExternalEventsCount_0(self)};Project.prototype["InsertNewExternalEvents"]=Project.prototype.InsertNewExternalEvents=function(name,position){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);if(position&&typeof position==="object")position=position.ptr;return wrapPointer(_emscripten_bind_Project_InsertNewExternalEvents_2(self,name,position),ExternalEvents)};Project.prototype["RemoveExternalEvents"]=Project.prototype.RemoveExternalEvents=function(name){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);_emscripten_bind_Project_RemoveExternalEvents_1(self,name)};Project.prototype["GetExternalEventsPosition"]=Project.prototype.GetExternalEventsPosition=function(name){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);return _emscripten_bind_Project_GetExternalEventsPosition_1(self,name)};Project.prototype["HasExternalLayoutNamed"]=Project.prototype.HasExternalLayoutNamed=function(name){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);return!!_emscripten_bind_Project_HasExternalLayoutNamed_1(self,name)};Project.prototype["GetExternalLayout"]=Project.prototype.GetExternalLayout=function(name){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);return wrapPointer(_emscripten_bind_Project_GetExternalLayout_1(self,name),ExternalLayout)};Project.prototype["GetExternalLayoutAt"]=Project.prototype.GetExternalLayoutAt=function(index){var self=this.ptr;if(index&&typeof index==="object")index=index.ptr;return wrapPointer(_emscripten_bind_Project_GetExternalLayoutAt_1(self,index),ExternalLayout)};Project.prototype["MoveExternalLayout"]=Project.prototype.MoveExternalLayout=function(oldIndex,newIndex){var self=this.ptr;if(oldIndex&&typeof oldIndex==="object")oldIndex=oldIndex.ptr;if(newIndex&&typeof newIndex==="object")newIndex=newIndex.ptr;_emscripten_bind_Project_MoveExternalLayout_2(self,oldIndex,newIndex)};Project.prototype["SwapExternalLayouts"]=Project.prototype.SwapExternalLayouts=function(first,second){var self=this.ptr;if(first&&typeof first==="object")first=first.ptr;if(second&&typeof second==="object")second=second.ptr;_emscripten_bind_Project_SwapExternalLayouts_2(self,first,second)};Project.prototype["GetExternalLayoutsCount"]=Project.prototype.GetExternalLayoutsCount=function(){var self=this.ptr;return _emscripten_bind_Project_GetExternalLayoutsCount_0(self)};Project.prototype["InsertNewExternalLayout"]=Project.prototype.InsertNewExternalLayout=function(name,position){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);if(position&&typeof position==="object")position=position.ptr;return wrapPointer(_emscripten_bind_Project_InsertNewExternalLayout_2(self,name,position),ExternalLayout)};Project.prototype["RemoveExternalLayout"]=Project.prototype.RemoveExternalLayout=function(name){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);_emscripten_bind_Project_RemoveExternalLayout_1(self,name)};Project.prototype["GetExternalLayoutPosition"]=Project.prototype.GetExternalLayoutPosition=function(name){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);return _emscripten_bind_Project_GetExternalLayoutPosition_1(self,name)};Project.prototype["HasEventsFunctionsExtensionNamed"]=Project.prototype.HasEventsFunctionsExtensionNamed=function(name){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);return!!_emscripten_bind_Project_HasEventsFunctionsExtensionNamed_1(self,name)};Project.prototype["GetEventsFunctionsExtension"]=Project.prototype.GetEventsFunctionsExtension=function(name){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);return wrapPointer(_emscripten_bind_Project_GetEventsFunctionsExtension_1(self,name),EventsFunctionsExtension)};Project.prototype["GetEventsFunctionsExtensionAt"]=Project.prototype.GetEventsFunctionsExtensionAt=function(index){var self=this.ptr;if(index&&typeof index==="object")index=index.ptr;return wrapPointer(_emscripten_bind_Project_GetEventsFunctionsExtensionAt_1(self,index),EventsFunctionsExtension)};Project.prototype["MoveEventsFunctionsExtension"]=Project.prototype.MoveEventsFunctionsExtension=function(oldIndex,newIndex){var self=this.ptr;if(oldIndex&&typeof oldIndex==="object")oldIndex=oldIndex.ptr;if(newIndex&&typeof newIndex==="object")newIndex=newIndex.ptr;_emscripten_bind_Project_MoveEventsFunctionsExtension_2(self,oldIndex,newIndex)};Project.prototype["SwapEventsFunctionsExtensions"]=Project.prototype.SwapEventsFunctionsExtensions=function(first,second){var self=this.ptr;if(first&&typeof first==="object")first=first.ptr;if(second&&typeof second==="object")second=second.ptr;_emscripten_bind_Project_SwapEventsFunctionsExtensions_2(self,first,second)};Project.prototype["GetEventsFunctionsExtensionsCount"]=Project.prototype.GetEventsFunctionsExtensionsCount=function(){var self=this.ptr;return _emscripten_bind_Project_GetEventsFunctionsExtensionsCount_0(self)};Project.prototype["InsertNewEventsFunctionsExtension"]=Project.prototype.InsertNewEventsFunctionsExtension=function(name,position){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);if(position&&typeof position==="object")position=position.ptr;return wrapPointer(_emscripten_bind_Project_InsertNewEventsFunctionsExtension_2(self,name,position),EventsFunctionsExtension)};Project.prototype["InsertEventsFunctionsExtension"]=Project.prototype.InsertEventsFunctionsExtension=function(eventsFunctionsExtension,position){var self=this.ptr;if(eventsFunctionsExtension&&typeof eventsFunctionsExtension==="object")eventsFunctionsExtension=eventsFunctionsExtension.ptr;if(position&&typeof position==="object")position=position.ptr;return wrapPointer(_emscripten_bind_Project_InsertEventsFunctionsExtension_2(self,eventsFunctionsExtension,position),EventsFunctionsExtension)};Project.prototype["RemoveEventsFunctionsExtension"]=Project.prototype.RemoveEventsFunctionsExtension=function(name){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);_emscripten_bind_Project_RemoveEventsFunctionsExtension_1(self,name)};Project.prototype["GetEventsFunctionsExtensionPosition"]=Project.prototype.GetEventsFunctionsExtensionPosition=function(name){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);return _emscripten_bind_Project_GetEventsFunctionsExtensionPosition_1(self,name)};Project.prototype["UnserializeAndInsertExtensionsFrom"]=Project.prototype.UnserializeAndInsertExtensionsFrom=function(eventsFunctionsExtensionsElement){var self=this.ptr;if(eventsFunctionsExtensionsElement&&typeof eventsFunctionsExtensionsElement==="object")eventsFunctionsExtensionsElement=eventsFunctionsExtensionsElement.ptr;_emscripten_bind_Project_UnserializeAndInsertExtensionsFrom_1(self,eventsFunctionsExtensionsElement)};Project.prototype["HasEventsBasedBehavior"]=Project.prototype.HasEventsBasedBehavior=function(type){var self=this.ptr;ensureCache.prepare();if(type&&typeof type==="object")type=type.ptr;else type=ensureString(type);return!!_emscripten_bind_Project_HasEventsBasedBehavior_1(self,type)};Project.prototype["GetEventsBasedBehavior"]=Project.prototype.GetEventsBasedBehavior=function(type){var self=this.ptr;ensureCache.prepare();if(type&&typeof type==="object")type=type.ptr;else type=ensureString(type);return wrapPointer(_emscripten_bind_Project_GetEventsBasedBehavior_1(self,type),EventsBasedBehavior)};Project.prototype["HasEventsBasedObject"]=Project.prototype.HasEventsBasedObject=function(type){var self=this.ptr;ensureCache.prepare();if(type&&typeof type==="object")type=type.ptr;else type=ensureString(type);return!!_emscripten_bind_Project_HasEventsBasedObject_1(self,type)};Project.prototype["GetEventsBasedObject"]=Project.prototype.GetEventsBasedObject=function(type){var self=this.ptr;ensureCache.prepare();if(type&&typeof type==="object")type=type.ptr;else type=ensureString(type);return wrapPointer(_emscripten_bind_Project_GetEventsBasedObject_1(self,type),EventsBasedObject)};Project.prototype["GetVariables"]=Project.prototype.GetVariables=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_Project_GetVariables_0(self),VariablesContainer)};Project.prototype["GetObjects"]=Project.prototype.GetObjects=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_Project_GetObjects_0(self),ObjectsContainer)};Project.prototype["GetResourcesManager"]=Project.prototype.GetResourcesManager=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_Project_GetResourcesManager_0(self),ResourcesContainer)};Project.prototype["SetSceneResourcesPreloading"]=Project.prototype.SetSceneResourcesPreloading=function(resourcesPreloading){var self=this.ptr;ensureCache.prepare();if(resourcesPreloading&&typeof resourcesPreloading==="object")resourcesPreloading=resourcesPreloading.ptr;else resourcesPreloading=ensureString(resourcesPreloading);_emscripten_bind_Project_SetSceneResourcesPreloading_1(self,resourcesPreloading)};Project.prototype["GetSceneResourcesPreloading"]=Project.prototype.GetSceneResourcesPreloading=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_Project_GetSceneResourcesPreloading_0(self))};Project.prototype["SetSceneResourcesUnloading"]=Project.prototype.SetSceneResourcesUnloading=function(resourcesUnloading){var self=this.ptr;ensureCache.prepare();if(resourcesUnloading&&typeof resourcesUnloading==="object")resourcesUnloading=resourcesUnloading.ptr;else resourcesUnloading=ensureString(resourcesUnloading);_emscripten_bind_Project_SetSceneResourcesUnloading_1(self,resourcesUnloading)};Project.prototype["GetSceneResourcesUnloading"]=Project.prototype.GetSceneResourcesUnloading=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_Project_GetSceneResourcesUnloading_0(self))};Project.prototype["SerializeTo"]=Project.prototype.SerializeTo=function(element){var self=this.ptr;if(element&&typeof element==="object")element=element.ptr;_emscripten_bind_Project_SerializeTo_1(self,element)};Project.prototype["UnserializeFrom"]=Project.prototype.UnserializeFrom=function(element){var self=this.ptr;if(element&&typeof element==="object")element=element.ptr;_emscripten_bind_Project_UnserializeFrom_1(self,element)};Project.prototype["GetWholeProjectDiagnosticReport"]=Project.prototype.GetWholeProjectDiagnosticReport=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_Project_GetWholeProjectDiagnosticReport_0(self),WholeProjectDiagnosticReport)};Project.prototype["STATIC_IsNameSafe"]=Project.prototype.STATIC_IsNameSafe=function(name){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);return!!_emscripten_bind_Project_STATIC_IsNameSafe_1(self,name)};Project.prototype["STATIC_GetSafeName"]=Project.prototype.STATIC_GetSafeName=function(name){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);return UTF8ToString(_emscripten_bind_Project_STATIC_GetSafeName_1(self,name))};Project.prototype["__destroy__"]=Project.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_Project___destroy___0(self)};function ObjectsContainersList(){throw"cannot construct a ObjectsContainersList, no constructor in IDL"}ObjectsContainersList.prototype=Object.create(WrapperObject.prototype);ObjectsContainersList.prototype.constructor=ObjectsContainersList;ObjectsContainersList.prototype.__class__=ObjectsContainersList;ObjectsContainersList.__cache__={};Module["ObjectsContainersList"]=ObjectsContainersList;ObjectsContainersList.prototype["STATIC_MakeNewObjectsContainersListForProjectAndLayout"]=ObjectsContainersList.prototype.STATIC_MakeNewObjectsContainersListForProjectAndLayout=function(project,layout){var self=this.ptr;if(project&&typeof project==="object")project=project.ptr;if(layout&&typeof layout==="object")layout=layout.ptr;return wrapPointer(_emscripten_bind_ObjectsContainersList_STATIC_MakeNewObjectsContainersListForProjectAndLayout_2(self,project,layout),ObjectsContainersList)};ObjectsContainersList.prototype["STATIC_MakeNewObjectsContainersListForContainers"]=ObjectsContainersList.prototype.STATIC_MakeNewObjectsContainersListForContainers=function(globalObjectsContainer,objectsContainer){var self=this.ptr;if(globalObjectsContainer&&typeof globalObjectsContainer==="object")globalObjectsContainer=globalObjectsContainer.ptr;if(objectsContainer&&typeof objectsContainer==="object")objectsContainer=objectsContainer.ptr;return wrapPointer(_emscripten_bind_ObjectsContainersList_STATIC_MakeNewObjectsContainersListForContainers_2(self,globalObjectsContainer,objectsContainer),ObjectsContainersList)};ObjectsContainersList.prototype["GetTypeOfObject"]=ObjectsContainersList.prototype.GetTypeOfObject=function(objectName){var self=this.ptr;ensureCache.prepare();if(objectName&&typeof objectName==="object")objectName=objectName.ptr;else objectName=ensureString(objectName);return UTF8ToString(_emscripten_bind_ObjectsContainersList_GetTypeOfObject_1(self,objectName))};ObjectsContainersList.prototype["GetTypeOfBehavior"]=ObjectsContainersList.prototype.GetTypeOfBehavior=function(name,searchInGroups){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);if(searchInGroups&&typeof searchInGroups==="object")searchInGroups=searchInGroups.ptr;return UTF8ToString(_emscripten_bind_ObjectsContainersList_GetTypeOfBehavior_2(self,name,searchInGroups))};ObjectsContainersList.prototype["GetBehaviorsOfObject"]=ObjectsContainersList.prototype.GetBehaviorsOfObject=function(objectOrGroupName,searchInGroups){var self=this.ptr;ensureCache.prepare();if(objectOrGroupName&&typeof objectOrGroupName==="object")objectOrGroupName=objectOrGroupName.ptr;else objectOrGroupName=ensureString(objectOrGroupName);if(searchInGroups&&typeof searchInGroups==="object")searchInGroups=searchInGroups.ptr;return wrapPointer(_emscripten_bind_ObjectsContainersList_GetBehaviorsOfObject_2(self,objectOrGroupName,searchInGroups),VectorString)};ObjectsContainersList.prototype["GetBehaviorNamesInObjectOrGroup"]=ObjectsContainersList.prototype.GetBehaviorNamesInObjectOrGroup=function(objectOrGroupName,behaviorType,searchInGroups){var self=this.ptr;ensureCache.prepare();if(objectOrGroupName&&typeof objectOrGroupName==="object")objectOrGroupName=objectOrGroupName.ptr;else objectOrGroupName=ensureString(objectOrGroupName);if(behaviorType&&typeof behaviorType==="object")behaviorType=behaviorType.ptr;else behaviorType=ensureString(behaviorType);if(searchInGroups&&typeof searchInGroups==="object")searchInGroups=searchInGroups.ptr;return wrapPointer(_emscripten_bind_ObjectsContainersList_GetBehaviorNamesInObjectOrGroup_3(self,objectOrGroupName,behaviorType,searchInGroups),VectorString)};ObjectsContainersList.prototype["IsDefaultBehavior"]=ObjectsContainersList.prototype.IsDefaultBehavior=function(objectOrGroupName,behaviorType,searchInGroups){var self=this.ptr;ensureCache.prepare();if(objectOrGroupName&&typeof objectOrGroupName==="object")objectOrGroupName=objectOrGroupName.ptr;else objectOrGroupName=ensureString(objectOrGroupName);if(behaviorType&&typeof behaviorType==="object")behaviorType=behaviorType.ptr;else behaviorType=ensureString(behaviorType);if(searchInGroups&&typeof searchInGroups==="object")searchInGroups=searchInGroups.ptr;return!!_emscripten_bind_ObjectsContainersList_IsDefaultBehavior_3(self,objectOrGroupName,behaviorType,searchInGroups)};ObjectsContainersList.prototype["GetAnimationNamesOfObject"]=ObjectsContainersList.prototype.GetAnimationNamesOfObject=function(name){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);return wrapPointer(_emscripten_bind_ObjectsContainersList_GetAnimationNamesOfObject_1(self,name),VectorString)};ObjectsContainersList.prototype["GetTypeOfBehaviorInObjectOrGroup"]=ObjectsContainersList.prototype.GetTypeOfBehaviorInObjectOrGroup=function(objectOrGroupName,behaviorName,searchInGroups){var self=this.ptr;ensureCache.prepare();if(objectOrGroupName&&typeof objectOrGroupName==="object")objectOrGroupName=objectOrGroupName.ptr;else objectOrGroupName=ensureString(objectOrGroupName);if(behaviorName&&typeof behaviorName==="object")behaviorName=behaviorName.ptr;else behaviorName=ensureString(behaviorName);if(searchInGroups&&typeof searchInGroups==="object")searchInGroups=searchInGroups.ptr;return UTF8ToString(_emscripten_bind_ObjectsContainersList_GetTypeOfBehaviorInObjectOrGroup_3(self,objectOrGroupName,behaviorName,searchInGroups))};ObjectsContainersList.prototype["HasObjectOrGroupNamed"]=ObjectsContainersList.prototype.HasObjectOrGroupNamed=function(name){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);return!!_emscripten_bind_ObjectsContainersList_HasObjectOrGroupNamed_1(self,name)};ObjectsContainersList.prototype["HasObjectNamed"]=ObjectsContainersList.prototype.HasObjectNamed=function(name){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);return!!_emscripten_bind_ObjectsContainersList_HasObjectNamed_1(self,name)};ObjectsContainersList.prototype["HasObjectOrGroupWithVariableNamed"]=ObjectsContainersList.prototype.HasObjectOrGroupWithVariableNamed=function(objectName,variableName){var self=this.ptr;ensureCache.prepare();if(objectName&&typeof objectName==="object")objectName=objectName.ptr;else objectName=ensureString(objectName);if(variableName&&typeof variableName==="object")variableName=variableName.ptr;else variableName=ensureString(variableName);return _emscripten_bind_ObjectsContainersList_HasObjectOrGroupWithVariableNamed_2(self,objectName,variableName)};ObjectsContainersList.prototype["GetObjectsContainerSourceType"]=ObjectsContainersList.prototype.GetObjectsContainerSourceType=function(objectOrGroupName){var self=this.ptr;ensureCache.prepare();if(objectOrGroupName&&typeof objectOrGroupName==="object")objectOrGroupName=objectOrGroupName.ptr;else objectOrGroupName=ensureString(objectOrGroupName);return _emscripten_bind_ObjectsContainersList_GetObjectsContainerSourceType_1(self,objectOrGroupName)};ObjectsContainersList.prototype["GetObjectsContainer"]=ObjectsContainersList.prototype.GetObjectsContainer=function(index){var self=this.ptr;if(index&&typeof index==="object")index=index.ptr;return wrapPointer(_emscripten_bind_ObjectsContainersList_GetObjectsContainer_1(self,index),ObjectsContainer)};ObjectsContainersList.prototype["GetObjectsContainersCount"]=ObjectsContainersList.prototype.GetObjectsContainersCount=function(){var self=this.ptr;return _emscripten_bind_ObjectsContainersList_GetObjectsContainersCount_0(self)};ObjectsContainersList.prototype["__destroy__"]=ObjectsContainersList.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_ObjectsContainersList___destroy___0(self)};function ProjectScopedContainers(){throw"cannot construct a ProjectScopedContainers, no constructor in IDL"}ProjectScopedContainers.prototype=Object.create(WrapperObject.prototype);ProjectScopedContainers.prototype.constructor=ProjectScopedContainers;ProjectScopedContainers.prototype.__class__=ProjectScopedContainers;ProjectScopedContainers.__cache__={};Module["ProjectScopedContainers"]=ProjectScopedContainers;ProjectScopedContainers.prototype["STATIC_MakeNewProjectScopedContainersForProjectAndLayout"]=ProjectScopedContainers.prototype.STATIC_MakeNewProjectScopedContainersForProjectAndLayout=function(project,layout){var self=this.ptr;if(project&&typeof project==="object")project=project.ptr;if(layout&&typeof layout==="object")layout=layout.ptr;return wrapPointer(_emscripten_bind_ProjectScopedContainers_STATIC_MakeNewProjectScopedContainersForProjectAndLayout_2(self,project,layout),ProjectScopedContainers)};ProjectScopedContainers.prototype["STATIC_MakeNewProjectScopedContainersForProject"]=ProjectScopedContainers.prototype.STATIC_MakeNewProjectScopedContainersForProject=function(project){var self=this.ptr;if(project&&typeof project==="object")project=project.ptr;return wrapPointer(_emscripten_bind_ProjectScopedContainers_STATIC_MakeNewProjectScopedContainersForProject_1(self,project),ProjectScopedContainers)};ProjectScopedContainers.prototype["STATIC_MakeNewProjectScopedContainersForEventsFunctionsExtension"]=ProjectScopedContainers.prototype.STATIC_MakeNewProjectScopedContainersForEventsFunctionsExtension=function(project,eventsFunctionsExtension){var self=this.ptr;if(project&&typeof project==="object")project=project.ptr;if(eventsFunctionsExtension&&typeof eventsFunctionsExtension==="object")eventsFunctionsExtension=eventsFunctionsExtension.ptr;return wrapPointer(_emscripten_bind_ProjectScopedContainers_STATIC_MakeNewProjectScopedContainersForEventsFunctionsExtension_2(self,project,eventsFunctionsExtension),ProjectScopedContainers)};ProjectScopedContainers.prototype["STATIC_MakeNewProjectScopedContainersForFreeEventsFunction"]=ProjectScopedContainers.prototype.STATIC_MakeNewProjectScopedContainersForFreeEventsFunction=function(project,eventsFunctionsExtension,eventsFunction,parameterObjectsContainer,parameterVariablesContainer,parameterResourcesContainer){var self=this.ptr;if(project&&typeof project==="object")project=project.ptr;if(eventsFunctionsExtension&&typeof eventsFunctionsExtension==="object")eventsFunctionsExtension=eventsFunctionsExtension.ptr;if(eventsFunction&&typeof eventsFunction==="object")eventsFunction=eventsFunction.ptr;if(parameterObjectsContainer&&typeof parameterObjectsContainer==="object")parameterObjectsContainer=parameterObjectsContainer.ptr;if(parameterVariablesContainer&&typeof parameterVariablesContainer==="object")parameterVariablesContainer=parameterVariablesContainer.ptr;if(parameterResourcesContainer&&typeof parameterResourcesContainer==="object")parameterResourcesContainer=parameterResourcesContainer.ptr;return wrapPointer(_emscripten_bind_ProjectScopedContainers_STATIC_MakeNewProjectScopedContainersForFreeEventsFunction_6(self,project,eventsFunctionsExtension,eventsFunction,parameterObjectsContainer,parameterVariablesContainer,parameterResourcesContainer),ProjectScopedContainers)};ProjectScopedContainers.prototype["STATIC_MakeNewProjectScopedContainersForBehaviorEventsFunction"]=ProjectScopedContainers.prototype.STATIC_MakeNewProjectScopedContainersForBehaviorEventsFunction=function(project,eventsFunctionsExtension,eventsBasedBehavior,eventsFunction,parameterObjectsContainer,parameterVariablesContainer,propertyVariablesContainer,parameterResourcesContainer,propertyResourcesContainer){var self=this.ptr;if(project&&typeof project==="object")project=project.ptr;if(eventsFunctionsExtension&&typeof eventsFunctionsExtension==="object")eventsFunctionsExtension=eventsFunctionsExtension.ptr;if(eventsBasedBehavior&&typeof eventsBasedBehavior==="object")eventsBasedBehavior=eventsBasedBehavior.ptr;if(eventsFunction&&typeof eventsFunction==="object")eventsFunction=eventsFunction.ptr;if(parameterObjectsContainer&&typeof parameterObjectsContainer==="object")parameterObjectsContainer=parameterObjectsContainer.ptr;if(parameterVariablesContainer&&typeof parameterVariablesContainer==="object")parameterVariablesContainer=parameterVariablesContainer.ptr;if(propertyVariablesContainer&&typeof propertyVariablesContainer==="object")propertyVariablesContainer=propertyVariablesContainer.ptr;if(parameterResourcesContainer&&typeof parameterResourcesContainer==="object")parameterResourcesContainer=parameterResourcesContainer.ptr;if(propertyResourcesContainer&&typeof propertyResourcesContainer==="object")propertyResourcesContainer=propertyResourcesContainer.ptr;return wrapPointer(_emscripten_bind_ProjectScopedContainers_STATIC_MakeNewProjectScopedContainersForBehaviorEventsFunction_9(self,project,eventsFunctionsExtension,eventsBasedBehavior,eventsFunction,parameterObjectsContainer,parameterVariablesContainer,propertyVariablesContainer,parameterResourcesContainer,propertyResourcesContainer),ProjectScopedContainers)};ProjectScopedContainers.prototype["STATIC_MakeNewProjectScopedContainersForObjectEventsFunction"]=ProjectScopedContainers.prototype.STATIC_MakeNewProjectScopedContainersForObjectEventsFunction=function(project,eventsFunctionsExtension,eventsBasedObject,eventsFunction,parameterObjectsContainer,parameterVariablesContainer,propertyVariablesContainer,parameterResourcesContainer,propertyResourcesContainer){var self=this.ptr;if(project&&typeof project==="object")project=project.ptr;if(eventsFunctionsExtension&&typeof eventsFunctionsExtension==="object")eventsFunctionsExtension=eventsFunctionsExtension.ptr;if(eventsBasedObject&&typeof eventsBasedObject==="object")eventsBasedObject=eventsBasedObject.ptr;if(eventsFunction&&typeof eventsFunction==="object")eventsFunction=eventsFunction.ptr;if(parameterObjectsContainer&&typeof parameterObjectsContainer==="object")parameterObjectsContainer=parameterObjectsContainer.ptr;if(parameterVariablesContainer&&typeof parameterVariablesContainer==="object")parameterVariablesContainer=parameterVariablesContainer.ptr;if(propertyVariablesContainer&&typeof propertyVariablesContainer==="object")propertyVariablesContainer=propertyVariablesContainer.ptr;if(parameterResourcesContainer&&typeof parameterResourcesContainer==="object")parameterResourcesContainer=parameterResourcesContainer.ptr;if(propertyResourcesContainer&&typeof propertyResourcesContainer==="object")propertyResourcesContainer=propertyResourcesContainer.ptr;return wrapPointer(_emscripten_bind_ProjectScopedContainers_STATIC_MakeNewProjectScopedContainersForObjectEventsFunction_9(self,project,eventsFunctionsExtension,eventsBasedObject,eventsFunction,parameterObjectsContainer,parameterVariablesContainer,propertyVariablesContainer,parameterResourcesContainer,propertyResourcesContainer),ProjectScopedContainers)};ProjectScopedContainers.prototype["STATIC_MakeNewProjectScopedContainersForEventsBasedObject"]=ProjectScopedContainers.prototype.STATIC_MakeNewProjectScopedContainersForEventsBasedObject=function(project,eventsFunctionsExtension,eventsBasedObject,outputObjectsContainer){var self=this.ptr;if(project&&typeof project==="object")project=project.ptr;if(eventsFunctionsExtension&&typeof eventsFunctionsExtension==="object")eventsFunctionsExtension=eventsFunctionsExtension.ptr;if(eventsBasedObject&&typeof eventsBasedObject==="object")eventsBasedObject=eventsBasedObject.ptr;if(outputObjectsContainer&&typeof outputObjectsContainer==="object")outputObjectsContainer=outputObjectsContainer.ptr;return wrapPointer(_emscripten_bind_ProjectScopedContainers_STATIC_MakeNewProjectScopedContainersForEventsBasedObject_4(self,project,eventsFunctionsExtension,eventsBasedObject,outputObjectsContainer),ProjectScopedContainers)};ProjectScopedContainers.prototype["STATIC_MakeNewProjectScopedContainersWithLocalVariables"]=ProjectScopedContainers.prototype.STATIC_MakeNewProjectScopedContainersWithLocalVariables=function(projectScopedContainers,event){var self=this.ptr;if(projectScopedContainers&&typeof projectScopedContainers==="object")projectScopedContainers=projectScopedContainers.ptr;if(event&&typeof event==="object")event=event.ptr;return wrapPointer(_emscripten_bind_ProjectScopedContainers_STATIC_MakeNewProjectScopedContainersWithLocalVariables_2(self,projectScopedContainers,event),ProjectScopedContainers)};ProjectScopedContainers.prototype["AddPropertiesContainer"]=ProjectScopedContainers.prototype.AddPropertiesContainer=function(propertiesContainer){var self=this.ptr;if(propertiesContainer&&typeof propertiesContainer==="object")propertiesContainer=propertiesContainer.ptr;return wrapPointer(_emscripten_bind_ProjectScopedContainers_AddPropertiesContainer_1(self,propertiesContainer),ProjectScopedContainers)};ProjectScopedContainers.prototype["AddParameters"]=ProjectScopedContainers.prototype.AddParameters=function(parameters){var self=this.ptr;if(parameters&&typeof parameters==="object")parameters=parameters.ptr;return wrapPointer(_emscripten_bind_ProjectScopedContainers_AddParameters_1(self,parameters),ProjectScopedContainers)};ProjectScopedContainers.prototype["GetObjectsContainersList"]=ProjectScopedContainers.prototype.GetObjectsContainersList=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_ProjectScopedContainers_GetObjectsContainersList_0(self),ObjectsContainersList)};ProjectScopedContainers.prototype["GetVariablesContainersList"]=ProjectScopedContainers.prototype.GetVariablesContainersList=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_ProjectScopedContainers_GetVariablesContainersList_0(self),VariablesContainersList)};ProjectScopedContainers.prototype["GetResourcesContainersList"]=ProjectScopedContainers.prototype.GetResourcesContainersList=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_ProjectScopedContainers_GetResourcesContainersList_0(self),ResourcesContainersList)};ProjectScopedContainers.prototype["GetScopeSceneName"]=ProjectScopedContainers.prototype.GetScopeSceneName=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_ProjectScopedContainers_GetScopeSceneName_0(self))};ProjectScopedContainers.prototype["GetScopeExternalEventsName"]=ProjectScopedContainers.prototype.GetScopeExternalEventsName=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_ProjectScopedContainers_GetScopeExternalEventsName_0(self))};ProjectScopedContainers.prototype["GetScopeExtensionName"]=ProjectScopedContainers.prototype.GetScopeExtensionName=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_ProjectScopedContainers_GetScopeExtensionName_0(self))};ProjectScopedContainers.prototype["GetScopeFunctionName"]=ProjectScopedContainers.prototype.GetScopeFunctionName=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_ProjectScopedContainers_GetScopeFunctionName_0(self))};ProjectScopedContainers.prototype["GetScopeBehaviorName"]=ProjectScopedContainers.prototype.GetScopeBehaviorName=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_ProjectScopedContainers_GetScopeBehaviorName_0(self))};ProjectScopedContainers.prototype["GetScopeObjectName"]=ProjectScopedContainers.prototype.GetScopeObjectName=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_ProjectScopedContainers_GetScopeObjectName_0(self))};ProjectScopedContainers.prototype["__destroy__"]=ProjectScopedContainers.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_ProjectScopedContainers___destroy___0(self)};function ExtensionProperties(){throw"cannot construct a ExtensionProperties, no constructor in IDL"}ExtensionProperties.prototype=Object.create(WrapperObject.prototype);ExtensionProperties.prototype.constructor=ExtensionProperties;ExtensionProperties.prototype.__class__=ExtensionProperties;ExtensionProperties.__cache__={};Module["ExtensionProperties"]=ExtensionProperties;ExtensionProperties.prototype["GetValue"]=ExtensionProperties.prototype.GetValue=function(extension,property){var self=this.ptr;ensureCache.prepare();if(extension&&typeof extension==="object")extension=extension.ptr;else extension=ensureString(extension);if(property&&typeof property==="object")property=property.ptr;else property=ensureString(property);return UTF8ToString(_emscripten_bind_ExtensionProperties_GetValue_2(self,extension,property))};ExtensionProperties.prototype["SetValue"]=ExtensionProperties.prototype.SetValue=function(extension,property,newValue){var self=this.ptr;ensureCache.prepare();if(extension&&typeof extension==="object")extension=extension.ptr;else extension=ensureString(extension);if(property&&typeof property==="object")property=property.ptr;else property=ensureString(property);if(newValue&&typeof newValue==="object")newValue=newValue.ptr;else newValue=ensureString(newValue);_emscripten_bind_ExtensionProperties_SetValue_3(self,extension,property,newValue)};ExtensionProperties.prototype["HasProperty"]=ExtensionProperties.prototype.HasProperty=function(extension,property){var self=this.ptr;ensureCache.prepare();if(extension&&typeof extension==="object")extension=extension.ptr;else extension=ensureString(extension);if(property&&typeof property==="object")property=property.ptr;else property=ensureString(property);return!!_emscripten_bind_ExtensionProperties_HasProperty_2(self,extension,property)};ExtensionProperties.prototype["GetAllExtensionProperties"]=ExtensionProperties.prototype.GetAllExtensionProperties=function(extension,project){var self=this.ptr;ensureCache.prepare();if(extension&&typeof extension==="object")extension=extension.ptr;else extension=ensureString(extension);if(project&&typeof project==="object")project=project.ptr;return wrapPointer(_emscripten_bind_ExtensionProperties_GetAllExtensionProperties_2(self,extension,project),MapStringPropertyDescriptor)};ExtensionProperties.prototype["SerializeTo"]=ExtensionProperties.prototype.SerializeTo=function(element){var self=this.ptr;if(element&&typeof element==="object")element=element.ptr;_emscripten_bind_ExtensionProperties_SerializeTo_1(self,element)};ExtensionProperties.prototype["UnserializeFrom"]=ExtensionProperties.prototype.UnserializeFrom=function(element){var self=this.ptr;if(element&&typeof element==="object")element=element.ptr;_emscripten_bind_ExtensionProperties_UnserializeFrom_1(self,element)};ExtensionProperties.prototype["__destroy__"]=ExtensionProperties.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_ExtensionProperties___destroy___0(self)};function BehaviorDefaultFlagClearer(){throw"cannot construct a BehaviorDefaultFlagClearer, no constructor in IDL"}BehaviorDefaultFlagClearer.prototype=Object.create(WrapperObject.prototype);BehaviorDefaultFlagClearer.prototype.constructor=BehaviorDefaultFlagClearer;BehaviorDefaultFlagClearer.prototype.__class__=BehaviorDefaultFlagClearer;BehaviorDefaultFlagClearer.__cache__={};Module["BehaviorDefaultFlagClearer"]=BehaviorDefaultFlagClearer;BehaviorDefaultFlagClearer.prototype["STATIC_SerializeObjectWithCleanDefaultBehaviorFlags"]=BehaviorDefaultFlagClearer.prototype.STATIC_SerializeObjectWithCleanDefaultBehaviorFlags=function(obj,serializerElement){var self=this.ptr;if(obj&&typeof obj==="object")obj=obj.ptr;if(serializerElement&&typeof serializerElement==="object")serializerElement=serializerElement.ptr;_emscripten_bind_BehaviorDefaultFlagClearer_STATIC_SerializeObjectWithCleanDefaultBehaviorFlags_2(self,obj,serializerElement)};BehaviorDefaultFlagClearer.prototype["__destroy__"]=BehaviorDefaultFlagClearer.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_BehaviorDefaultFlagClearer___destroy___0(self)};function BehaviorJsImplementation(){this.ptr=_emscripten_bind_BehaviorJsImplementation_BehaviorJsImplementation_0();getCache(BehaviorJsImplementation)[this.ptr]=this}BehaviorJsImplementation.prototype=Object.create(Behavior.prototype);BehaviorJsImplementation.prototype.constructor=BehaviorJsImplementation;BehaviorJsImplementation.prototype.__class__=BehaviorJsImplementation;BehaviorJsImplementation.__cache__={};Module["BehaviorJsImplementation"]=BehaviorJsImplementation;BehaviorJsImplementation.prototype["GetProperties"]=BehaviorJsImplementation.prototype.GetProperties=function(behaviorContent){var self=this.ptr;if(behaviorContent&&typeof behaviorContent==="object")behaviorContent=behaviorContent.ptr;return wrapPointer(_emscripten_bind_BehaviorJsImplementation_GetProperties_1(self,behaviorContent),MapStringPropertyDescriptor)};BehaviorJsImplementation.prototype["UpdateProperty"]=BehaviorJsImplementation.prototype.UpdateProperty=function(behaviorContent,name,value){var self=this.ptr;ensureCache.prepare();if(behaviorContent&&typeof behaviorContent==="object")behaviorContent=behaviorContent.ptr;if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);if(value&&typeof value==="object")value=value.ptr;else value=ensureString(value);return!!_emscripten_bind_BehaviorJsImplementation_UpdateProperty_3(self,behaviorContent,name,value)};BehaviorJsImplementation.prototype["InitializeContent"]=BehaviorJsImplementation.prototype.InitializeContent=function(behaviorContent){var self=this.ptr;if(behaviorContent&&typeof behaviorContent==="object")behaviorContent=behaviorContent.ptr;_emscripten_bind_BehaviorJsImplementation_InitializeContent_1(self,behaviorContent)};BehaviorJsImplementation.prototype["__destroy__"]=BehaviorJsImplementation.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_BehaviorJsImplementation___destroy___0(self)};function BehaviorSharedDataJsImplementation(){this.ptr=_emscripten_bind_BehaviorSharedDataJsImplementation_BehaviorSharedDataJsImplementation_0();getCache(BehaviorSharedDataJsImplementation)[this.ptr]=this}BehaviorSharedDataJsImplementation.prototype=Object.create(BehaviorsSharedData.prototype);BehaviorSharedDataJsImplementation.prototype.constructor=BehaviorSharedDataJsImplementation;BehaviorSharedDataJsImplementation.prototype.__class__=BehaviorSharedDataJsImplementation;BehaviorSharedDataJsImplementation.__cache__={};Module["BehaviorSharedDataJsImplementation"]=BehaviorSharedDataJsImplementation;BehaviorSharedDataJsImplementation.prototype["GetProperties"]=BehaviorSharedDataJsImplementation.prototype.GetProperties=function(behaviorSharedDataContent){var self=this.ptr;if(behaviorSharedDataContent&&typeof behaviorSharedDataContent==="object")behaviorSharedDataContent=behaviorSharedDataContent.ptr;return wrapPointer(_emscripten_bind_BehaviorSharedDataJsImplementation_GetProperties_1(self,behaviorSharedDataContent),MapStringPropertyDescriptor)};BehaviorSharedDataJsImplementation.prototype["UpdateProperty"]=BehaviorSharedDataJsImplementation.prototype.UpdateProperty=function(behaviorSharedDataContent,name,value){var self=this.ptr;ensureCache.prepare();if(behaviorSharedDataContent&&typeof behaviorSharedDataContent==="object")behaviorSharedDataContent=behaviorSharedDataContent.ptr;if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);if(value&&typeof value==="object")value=value.ptr;else value=ensureString(value);return!!_emscripten_bind_BehaviorSharedDataJsImplementation_UpdateProperty_3(self,behaviorSharedDataContent,name,value)};BehaviorSharedDataJsImplementation.prototype["InitializeContent"]=BehaviorSharedDataJsImplementation.prototype.InitializeContent=function(behaviorSharedDataContent){var self=this.ptr;if(behaviorSharedDataContent&&typeof behaviorSharedDataContent==="object")behaviorSharedDataContent=behaviorSharedDataContent.ptr;_emscripten_bind_BehaviorSharedDataJsImplementation_InitializeContent_1(self,behaviorSharedDataContent)};BehaviorSharedDataJsImplementation.prototype["__destroy__"]=BehaviorSharedDataJsImplementation.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_BehaviorSharedDataJsImplementation___destroy___0(self)};function UniquePtrObjectConfiguration(){throw"cannot construct a UniquePtrObjectConfiguration, no constructor in IDL"}UniquePtrObjectConfiguration.prototype=Object.create(WrapperObject.prototype);UniquePtrObjectConfiguration.prototype.constructor=UniquePtrObjectConfiguration;UniquePtrObjectConfiguration.prototype.__class__=UniquePtrObjectConfiguration;UniquePtrObjectConfiguration.__cache__={};Module["UniquePtrObjectConfiguration"]=UniquePtrObjectConfiguration;UniquePtrObjectConfiguration.prototype["get"]=UniquePtrObjectConfiguration.prototype.get=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_UniquePtrObjectConfiguration_get_0(self),ObjectConfiguration)};UniquePtrObjectConfiguration.prototype["release"]=UniquePtrObjectConfiguration.prototype.release=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_UniquePtrObjectConfiguration_release_0(self),ObjectConfiguration)};UniquePtrObjectConfiguration.prototype["__destroy__"]=UniquePtrObjectConfiguration.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_UniquePtrObjectConfiguration___destroy___0(self)};function gdObject(name,type,configuration){ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);if(type&&typeof type==="object")type=type.ptr;else type=ensureString(type);if(configuration&&typeof configuration==="object")configuration=configuration.ptr;this.ptr=_emscripten_bind_gdObject_gdObject_3(name,type,configuration);getCache(gdObject)[this.ptr]=this}gdObject.prototype=Object.create(WrapperObject.prototype);gdObject.prototype.constructor=gdObject;gdObject.prototype.__class__=gdObject;gdObject.__cache__={};Module["gdObject"]=gdObject;gdObject.prototype["Clone"]=gdObject.prototype.Clone=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_gdObject_Clone_0(self),UniquePtrObject)};gdObject.prototype["SetName"]=gdObject.prototype.SetName=function(name){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);_emscripten_bind_gdObject_SetName_1(self,name)};gdObject.prototype["GetName"]=gdObject.prototype.GetName=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_gdObject_GetName_0(self))};gdObject.prototype["SetAssetStoreId"]=gdObject.prototype.SetAssetStoreId=function(assetStoreId){var self=this.ptr;ensureCache.prepare();if(assetStoreId&&typeof assetStoreId==="object")assetStoreId=assetStoreId.ptr;else assetStoreId=ensureString(assetStoreId);_emscripten_bind_gdObject_SetAssetStoreId_1(self,assetStoreId)};gdObject.prototype["GetAssetStoreId"]=gdObject.prototype.GetAssetStoreId=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_gdObject_GetAssetStoreId_0(self))};gdObject.prototype["SetType"]=gdObject.prototype.SetType=function(type){var self=this.ptr;ensureCache.prepare();if(type&&typeof type==="object")type=type.ptr;else type=ensureString(type);_emscripten_bind_gdObject_SetType_1(self,type)};gdObject.prototype["GetType"]=gdObject.prototype.GetType=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_gdObject_GetType_0(self))};gdObject.prototype["SetResourcesPreloading"]=gdObject.prototype.SetResourcesPreloading=function(value){var self=this.ptr;ensureCache.prepare();if(value&&typeof value==="object")value=value.ptr;else value=ensureString(value);_emscripten_bind_gdObject_SetResourcesPreloading_1(self,value)};gdObject.prototype["GetResourcesPreloading"]=gdObject.prototype.GetResourcesPreloading=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_gdObject_GetResourcesPreloading_0(self))};gdObject.prototype["GetConfiguration"]=gdObject.prototype.GetConfiguration=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_gdObject_GetConfiguration_0(self),ObjectConfiguration)};gdObject.prototype["GetVariables"]=gdObject.prototype.GetVariables=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_gdObject_GetVariables_0(self),VariablesContainer)};gdObject.prototype["GetEffects"]=gdObject.prototype.GetEffects=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_gdObject_GetEffects_0(self),EffectsContainer)};gdObject.prototype["GetAllBehaviorNames"]=gdObject.prototype.GetAllBehaviorNames=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_gdObject_GetAllBehaviorNames_0(self),VectorString)};gdObject.prototype["HasBehaviorNamed"]=gdObject.prototype.HasBehaviorNamed=function(name){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);return!!_emscripten_bind_gdObject_HasBehaviorNamed_1(self,name)};gdObject.prototype["AddNewBehavior"]=gdObject.prototype.AddNewBehavior=function(project,type,name){var self=this.ptr;ensureCache.prepare();if(project&&typeof project==="object")project=project.ptr;if(type&&typeof type==="object")type=type.ptr;else type=ensureString(type);if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);return wrapPointer(_emscripten_bind_gdObject_AddNewBehavior_3(self,project,type,name),Behavior)};gdObject.prototype["GetBehavior"]=gdObject.prototype.GetBehavior=function(name){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);return wrapPointer(_emscripten_bind_gdObject_GetBehavior_1(self,name),Behavior)};gdObject.prototype["RemoveBehavior"]=gdObject.prototype.RemoveBehavior=function(name){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);_emscripten_bind_gdObject_RemoveBehavior_1(self,name)};gdObject.prototype["RenameBehavior"]=gdObject.prototype.RenameBehavior=function(oldName,name){var self=this.ptr;ensureCache.prepare();if(oldName&&typeof oldName==="object")oldName=oldName.ptr;else oldName=ensureString(oldName);if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);return!!_emscripten_bind_gdObject_RenameBehavior_2(self,oldName,name)};gdObject.prototype["SerializeTo"]=gdObject.prototype.SerializeTo=function(element){var self=this.ptr;if(element&&typeof element==="object")element=element.ptr;_emscripten_bind_gdObject_SerializeTo_1(self,element)};gdObject.prototype["UnserializeFrom"]=gdObject.prototype.UnserializeFrom=function(project,element){var self=this.ptr;if(project&&typeof project==="object")project=project.ptr;if(element&&typeof element==="object")element=element.ptr;_emscripten_bind_gdObject_UnserializeFrom_2(self,project,element)};gdObject.prototype["ResetPersistentUuid"]=gdObject.prototype.ResetPersistentUuid=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_gdObject_ResetPersistentUuid_0(self),gdObject)};gdObject.prototype["GetPersistentUuid"]=gdObject.prototype.GetPersistentUuid=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_gdObject_GetPersistentUuid_0(self))};gdObject.prototype["__destroy__"]=gdObject.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_gdObject___destroy___0(self)};function UniquePtrObject(){throw"cannot construct a UniquePtrObject, no constructor in IDL"}UniquePtrObject.prototype=Object.create(WrapperObject.prototype);UniquePtrObject.prototype.constructor=UniquePtrObject;UniquePtrObject.prototype.__class__=UniquePtrObject;UniquePtrObject.__cache__={};Module["UniquePtrObject"]=UniquePtrObject;UniquePtrObject.prototype["get"]=UniquePtrObject.prototype.get=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_UniquePtrObject_get_0(self),gdObject)};UniquePtrObject.prototype["release"]=UniquePtrObject.prototype.release=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_UniquePtrObject_release_0(self),gdObject)};UniquePtrObject.prototype["__destroy__"]=UniquePtrObject.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_UniquePtrObject___destroy___0(self)};function ObjectJsImplementation(){this.ptr=_emscripten_bind_ObjectJsImplementation_ObjectJsImplementation_0();getCache(ObjectJsImplementation)[this.ptr]=this}ObjectJsImplementation.prototype=Object.create(ObjectConfiguration.prototype);ObjectJsImplementation.prototype.constructor=ObjectJsImplementation;ObjectJsImplementation.prototype.__class__=ObjectJsImplementation;ObjectJsImplementation.__cache__={};Module["ObjectJsImplementation"]=ObjectJsImplementation;ObjectJsImplementation.prototype["Clone"]=ObjectJsImplementation.prototype.Clone=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_ObjectJsImplementation_Clone_0(self),UniquePtrObjectConfiguration)};ObjectJsImplementation.prototype["GetProperties"]=ObjectJsImplementation.prototype.GetProperties=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_ObjectJsImplementation_GetProperties_0(self),MapStringPropertyDescriptor)};ObjectJsImplementation.prototype["UpdateProperty"]=ObjectJsImplementation.prototype.UpdateProperty=function(name,value){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);if(value&&typeof value==="object")value=value.ptr;else value=ensureString(value);return!!_emscripten_bind_ObjectJsImplementation_UpdateProperty_2(self,name,value)};ObjectJsImplementation.prototype["GetInitialInstanceProperties"]=ObjectJsImplementation.prototype.GetInitialInstanceProperties=function(instance){var self=this.ptr;if(instance&&typeof instance==="object")instance=instance.ptr;return wrapPointer(_emscripten_bind_ObjectJsImplementation_GetInitialInstanceProperties_1(self,instance),MapStringPropertyDescriptor)};ObjectJsImplementation.prototype["UpdateInitialInstanceProperty"]=ObjectJsImplementation.prototype.UpdateInitialInstanceProperty=function(instance,name,value){var self=this.ptr;ensureCache.prepare();if(instance&&typeof instance==="object")instance=instance.ptr;if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);if(value&&typeof value==="object")value=value.ptr;else value=ensureString(value);return!!_emscripten_bind_ObjectJsImplementation_UpdateInitialInstanceProperty_3(self,instance,name,value)};ObjectJsImplementation.prototype["SerializeTo"]=ObjectJsImplementation.prototype.SerializeTo=function(element){var self=this.ptr;if(element&&typeof element==="object")element=element.ptr;_emscripten_bind_ObjectJsImplementation_SerializeTo_1(self,element)};ObjectJsImplementation.prototype["UnserializeFrom"]=ObjectJsImplementation.prototype.UnserializeFrom=function(project,element){var self=this.ptr;if(project&&typeof project==="object")project=project.ptr;if(element&&typeof element==="object")element=element.ptr;_emscripten_bind_ObjectJsImplementation_UnserializeFrom_2(self,project,element)};ObjectJsImplementation.prototype["__destroy__"]=ObjectJsImplementation.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_ObjectJsImplementation___destroy___0(self)};function CustomObjectConfiguration(){throw"cannot construct a CustomObjectConfiguration, no constructor in IDL"}CustomObjectConfiguration.prototype=Object.create(ObjectConfiguration.prototype);CustomObjectConfiguration.prototype.constructor=CustomObjectConfiguration;CustomObjectConfiguration.prototype.__class__=CustomObjectConfiguration;CustomObjectConfiguration.__cache__={};Module["CustomObjectConfiguration"]=CustomObjectConfiguration;CustomObjectConfiguration.prototype["Clone"]=CustomObjectConfiguration.prototype.Clone=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_CustomObjectConfiguration_Clone_0(self),UniquePtrObjectConfiguration)};CustomObjectConfiguration.prototype["GetVariantName"]=CustomObjectConfiguration.prototype.GetVariantName=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_CustomObjectConfiguration_GetVariantName_0(self))};CustomObjectConfiguration.prototype["SetVariantName"]=CustomObjectConfiguration.prototype.SetVariantName=function(name){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);_emscripten_bind_CustomObjectConfiguration_SetVariantName_1(self,name)};CustomObjectConfiguration.prototype["IsForcedToOverrideEventsBasedObjectChildrenConfiguration"]=CustomObjectConfiguration.prototype.IsForcedToOverrideEventsBasedObjectChildrenConfiguration=function(){var self=this.ptr;return!!_emscripten_bind_CustomObjectConfiguration_IsForcedToOverrideEventsBasedObjectChildrenConfiguration_0(self)};CustomObjectConfiguration.prototype["IsMarkedAsOverridingEventsBasedObjectChildrenConfiguration"]=CustomObjectConfiguration.prototype.IsMarkedAsOverridingEventsBasedObjectChildrenConfiguration=function(){var self=this.ptr;return!!_emscripten_bind_CustomObjectConfiguration_IsMarkedAsOverridingEventsBasedObjectChildrenConfiguration_0(self)};CustomObjectConfiguration.prototype["SetMarkedAsOverridingEventsBasedObjectChildrenConfiguration"]=CustomObjectConfiguration.prototype.SetMarkedAsOverridingEventsBasedObjectChildrenConfiguration=function(isOverridingEventsBasedObjectChildrenConfiguration){var self=this.ptr;if(isOverridingEventsBasedObjectChildrenConfiguration&&typeof isOverridingEventsBasedObjectChildrenConfiguration==="object")isOverridingEventsBasedObjectChildrenConfiguration=isOverridingEventsBasedObjectChildrenConfiguration.ptr;_emscripten_bind_CustomObjectConfiguration_SetMarkedAsOverridingEventsBasedObjectChildrenConfiguration_1(self,isOverridingEventsBasedObjectChildrenConfiguration)};CustomObjectConfiguration.prototype["ClearChildrenConfiguration"]=CustomObjectConfiguration.prototype.ClearChildrenConfiguration=function(){var self=this.ptr;_emscripten_bind_CustomObjectConfiguration_ClearChildrenConfiguration_0(self)};CustomObjectConfiguration.prototype["GetChildObjectConfiguration"]=CustomObjectConfiguration.prototype.GetChildObjectConfiguration=function(objectName){var self=this.ptr;ensureCache.prepare();if(objectName&&typeof objectName==="object")objectName=objectName.ptr;else objectName=ensureString(objectName);return wrapPointer(_emscripten_bind_CustomObjectConfiguration_GetChildObjectConfiguration_1(self,objectName),ObjectConfiguration)};CustomObjectConfiguration.prototype["GetProperties"]=CustomObjectConfiguration.prototype.GetProperties=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_CustomObjectConfiguration_GetProperties_0(self),MapStringPropertyDescriptor)};CustomObjectConfiguration.prototype["UpdateProperty"]=CustomObjectConfiguration.prototype.UpdateProperty=function(name,value){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);if(value&&typeof value==="object")value=value.ptr;else value=ensureString(value);return!!_emscripten_bind_CustomObjectConfiguration_UpdateProperty_2(self,name,value)};CustomObjectConfiguration.prototype["GetInitialInstanceProperties"]=CustomObjectConfiguration.prototype.GetInitialInstanceProperties=function(instance){var self=this.ptr;if(instance&&typeof instance==="object")instance=instance.ptr;return wrapPointer(_emscripten_bind_CustomObjectConfiguration_GetInitialInstanceProperties_1(self,instance),MapStringPropertyDescriptor)};CustomObjectConfiguration.prototype["UpdateInitialInstanceProperty"]=CustomObjectConfiguration.prototype.UpdateInitialInstanceProperty=function(instance,name,value){var self=this.ptr;ensureCache.prepare();if(instance&&typeof instance==="object")instance=instance.ptr;if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);if(value&&typeof value==="object")value=value.ptr;else value=ensureString(value);return!!_emscripten_bind_CustomObjectConfiguration_UpdateInitialInstanceProperty_3(self,instance,name,value)};CustomObjectConfiguration.prototype["GetAnimations"]=CustomObjectConfiguration.prototype.GetAnimations=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_CustomObjectConfiguration_GetAnimations_0(self),SpriteAnimationList)};CustomObjectConfiguration.prototype["IsChildObjectFolded"]=CustomObjectConfiguration.prototype.IsChildObjectFolded=function(childName){var self=this.ptr;ensureCache.prepare();if(childName&&typeof childName==="object")childName=childName.ptr;else childName=ensureString(childName);return!!_emscripten_bind_CustomObjectConfiguration_IsChildObjectFolded_1(self,childName)};CustomObjectConfiguration.prototype["SetChildObjectFolded"]=CustomObjectConfiguration.prototype.SetChildObjectFolded=function(childName,folded){var self=this.ptr;ensureCache.prepare();if(childName&&typeof childName==="object")childName=childName.ptr;else childName=ensureString(childName);if(folded&&typeof folded==="object")folded=folded.ptr;_emscripten_bind_CustomObjectConfiguration_SetChildObjectFolded_2(self,childName,folded)};CustomObjectConfiguration.prototype["STATIC_GetEdgeAnchorFromString"]=CustomObjectConfiguration.prototype.STATIC_GetEdgeAnchorFromString=function(value){var self=this.ptr;ensureCache.prepare();if(value&&typeof value==="object")value=value.ptr;else value=ensureString(value);return _emscripten_bind_CustomObjectConfiguration_STATIC_GetEdgeAnchorFromString_1(self,value)};CustomObjectConfiguration.prototype["GetType"]=CustomObjectConfiguration.prototype.GetType=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_CustomObjectConfiguration_GetType_0(self))};CustomObjectConfiguration.prototype["SetType"]=CustomObjectConfiguration.prototype.SetType=function(typeName){var self=this.ptr;ensureCache.prepare();if(typeName&&typeof typeName==="object")typeName=typeName.ptr;else typeName=ensureString(typeName);_emscripten_bind_CustomObjectConfiguration_SetType_1(self,typeName)};CustomObjectConfiguration.prototype["ExposeResources"]=CustomObjectConfiguration.prototype.ExposeResources=function(worker){var self=this.ptr;if(worker&&typeof worker==="object")worker=worker.ptr;_emscripten_bind_CustomObjectConfiguration_ExposeResources_1(self,worker)};CustomObjectConfiguration.prototype["SerializeTo"]=CustomObjectConfiguration.prototype.SerializeTo=function(element){var self=this.ptr;if(element&&typeof element==="object")element=element.ptr;_emscripten_bind_CustomObjectConfiguration_SerializeTo_1(self,element)};CustomObjectConfiguration.prototype["UnserializeFrom"]=CustomObjectConfiguration.prototype.UnserializeFrom=function(project,element){var self=this.ptr;if(project&&typeof project==="object")project=project.ptr;if(element&&typeof element==="object")element=element.ptr;_emscripten_bind_CustomObjectConfiguration_UnserializeFrom_2(self,project,element)};CustomObjectConfiguration.prototype["GetAnimationsCount"]=CustomObjectConfiguration.prototype.GetAnimationsCount=function(){var self=this.ptr;return _emscripten_bind_CustomObjectConfiguration_GetAnimationsCount_0(self)};CustomObjectConfiguration.prototype["GetAnimationName"]=CustomObjectConfiguration.prototype.GetAnimationName=function(index){var self=this.ptr;if(index&&typeof index==="object")index=index.ptr;return UTF8ToString(_emscripten_bind_CustomObjectConfiguration_GetAnimationName_1(self,index))};CustomObjectConfiguration.prototype["__destroy__"]=CustomObjectConfiguration.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_CustomObjectConfiguration___destroy___0(self)};function Layout(){this.ptr=_emscripten_bind_Layout_Layout_0();getCache(Layout)[this.ptr]=this}Layout.prototype=Object.create(WrapperObject.prototype);Layout.prototype.constructor=Layout;Layout.prototype.__class__=Layout;Layout.__cache__={};Module["Layout"]=Layout;Layout.prototype["SetName"]=Layout.prototype.SetName=function(name){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);_emscripten_bind_Layout_SetName_1(self,name)};Layout.prototype["GetName"]=Layout.prototype.GetName=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_Layout_GetName_0(self))};Layout.prototype["SetBackgroundColor"]=Layout.prototype.SetBackgroundColor=function(r,g,b){var self=this.ptr;if(r&&typeof r==="object")r=r.ptr;if(g&&typeof g==="object")g=g.ptr;if(b&&typeof b==="object")b=b.ptr;_emscripten_bind_Layout_SetBackgroundColor_3(self,r,g,b)};Layout.prototype["GetBackgroundColorRed"]=Layout.prototype.GetBackgroundColorRed=function(){var self=this.ptr;return _emscripten_bind_Layout_GetBackgroundColorRed_0(self)};Layout.prototype["GetBackgroundColorGreen"]=Layout.prototype.GetBackgroundColorGreen=function(){var self=this.ptr;return _emscripten_bind_Layout_GetBackgroundColorGreen_0(self)};Layout.prototype["GetBackgroundColorBlue"]=Layout.prototype.GetBackgroundColorBlue=function(){var self=this.ptr;return _emscripten_bind_Layout_GetBackgroundColorBlue_0(self)};Layout.prototype["SetWindowDefaultTitle"]=Layout.prototype.SetWindowDefaultTitle=function(name){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);_emscripten_bind_Layout_SetWindowDefaultTitle_1(self,name)};Layout.prototype["GetWindowDefaultTitle"]=Layout.prototype.GetWindowDefaultTitle=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_Layout_GetWindowDefaultTitle_0(self))};Layout.prototype["GetInitialInstances"]=Layout.prototype.GetInitialInstances=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_Layout_GetInitialInstances_0(self),InitialInstancesContainer)};Layout.prototype["GetVariables"]=Layout.prototype.GetVariables=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_Layout_GetVariables_0(self),VariablesContainer)};Layout.prototype["GetObjects"]=Layout.prototype.GetObjects=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_Layout_GetObjects_0(self),ObjectsContainer)};Layout.prototype["GetEvents"]=Layout.prototype.GetEvents=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_Layout_GetEvents_0(self),EventsList)};Layout.prototype["GetLayers"]=Layout.prototype.GetLayers=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_Layout_GetLayers_0(self),LayersContainer)};Layout.prototype["UpdateBehaviorsSharedData"]=Layout.prototype.UpdateBehaviorsSharedData=function(project){var self=this.ptr;if(project&&typeof project==="object")project=project.ptr;_emscripten_bind_Layout_UpdateBehaviorsSharedData_1(self,project)};Layout.prototype["GetAllBehaviorSharedDataNames"]=Layout.prototype.GetAllBehaviorSharedDataNames=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_Layout_GetAllBehaviorSharedDataNames_0(self),VectorString)};Layout.prototype["HasBehaviorSharedData"]=Layout.prototype.HasBehaviorSharedData=function(behaviorName){var self=this.ptr;ensureCache.prepare();if(behaviorName&&typeof behaviorName==="object")behaviorName=behaviorName.ptr;else behaviorName=ensureString(behaviorName);return!!_emscripten_bind_Layout_HasBehaviorSharedData_1(self,behaviorName)};Layout.prototype["GetBehaviorSharedData"]=Layout.prototype.GetBehaviorSharedData=function(behaviorName){var self=this.ptr;ensureCache.prepare();if(behaviorName&&typeof behaviorName==="object")behaviorName=behaviorName.ptr;else behaviorName=ensureString(behaviorName);return wrapPointer(_emscripten_bind_Layout_GetBehaviorSharedData_1(self,behaviorName),BehaviorsSharedData)};Layout.prototype["InsertNewLayer"]=Layout.prototype.InsertNewLayer=function(name,position){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);if(position&&typeof position==="object")position=position.ptr;_emscripten_bind_Layout_InsertNewLayer_2(self,name,position)};Layout.prototype["InsertLayer"]=Layout.prototype.InsertLayer=function(layer,position){var self=this.ptr;if(layer&&typeof layer==="object")layer=layer.ptr;if(position&&typeof position==="object")position=position.ptr;_emscripten_bind_Layout_InsertLayer_2(self,layer,position)};Layout.prototype["GetLayer"]=Layout.prototype.GetLayer=function(name){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);return wrapPointer(_emscripten_bind_Layout_GetLayer_1(self,name),Layer)};Layout.prototype["GetLayerAt"]=Layout.prototype.GetLayerAt=function(pos){var self=this.ptr;if(pos&&typeof pos==="object")pos=pos.ptr;return wrapPointer(_emscripten_bind_Layout_GetLayerAt_1(self,pos),Layer)};Layout.prototype["HasLayerNamed"]=Layout.prototype.HasLayerNamed=function(name){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);return!!_emscripten_bind_Layout_HasLayerNamed_1(self,name)};Layout.prototype["RemoveLayer"]=Layout.prototype.RemoveLayer=function(name){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);_emscripten_bind_Layout_RemoveLayer_1(self,name)};Layout.prototype["GetLayersCount"]=Layout.prototype.GetLayersCount=function(){var self=this.ptr;return _emscripten_bind_Layout_GetLayersCount_0(self)};Layout.prototype["SwapLayers"]=Layout.prototype.SwapLayers=function(firstLayerIndex,secondLayerIndex){var self=this.ptr;if(firstLayerIndex&&typeof firstLayerIndex==="object")firstLayerIndex=firstLayerIndex.ptr;if(secondLayerIndex&&typeof secondLayerIndex==="object")secondLayerIndex=secondLayerIndex.ptr;_emscripten_bind_Layout_SwapLayers_2(self,firstLayerIndex,secondLayerIndex)};Layout.prototype["MoveLayer"]=Layout.prototype.MoveLayer=function(oldIndex,newIndex){var self=this.ptr;if(oldIndex&&typeof oldIndex==="object")oldIndex=oldIndex.ptr;if(newIndex&&typeof newIndex==="object")newIndex=newIndex.ptr;_emscripten_bind_Layout_MoveLayer_2(self,oldIndex,newIndex)};Layout.prototype["GetAssociatedEditorSettings"]=Layout.prototype.GetAssociatedEditorSettings=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_Layout_GetAssociatedEditorSettings_0(self),EditorSettings)};Layout.prototype["SerializeTo"]=Layout.prototype.SerializeTo=function(element){var self=this.ptr;if(element&&typeof element==="object")element=element.ptr;_emscripten_bind_Layout_SerializeTo_1(self,element)};Layout.prototype["UnserializeFrom"]=Layout.prototype.UnserializeFrom=function(project,element){var self=this.ptr;if(project&&typeof project==="object")project=project.ptr;if(element&&typeof element==="object")element=element.ptr;_emscripten_bind_Layout_UnserializeFrom_2(self,project,element)};Layout.prototype["SetStopSoundsOnStartup"]=Layout.prototype.SetStopSoundsOnStartup=function(enable){var self=this.ptr;if(enable&&typeof enable==="object")enable=enable.ptr;_emscripten_bind_Layout_SetStopSoundsOnStartup_1(self,enable)};Layout.prototype["StopSoundsOnStartup"]=Layout.prototype.StopSoundsOnStartup=function(){var self=this.ptr;return!!_emscripten_bind_Layout_StopSoundsOnStartup_0(self)};Layout.prototype["SetResourcesPreloading"]=Layout.prototype.SetResourcesPreloading=function(resourcesPreloading){var self=this.ptr;ensureCache.prepare();if(resourcesPreloading&&typeof resourcesPreloading==="object")resourcesPreloading=resourcesPreloading.ptr;else resourcesPreloading=ensureString(resourcesPreloading);_emscripten_bind_Layout_SetResourcesPreloading_1(self,resourcesPreloading)};Layout.prototype["GetResourcesPreloading"]=Layout.prototype.GetResourcesPreloading=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_Layout_GetResourcesPreloading_0(self))};Layout.prototype["SetResourcesUnloading"]=Layout.prototype.SetResourcesUnloading=function(resourcesUnloading){var self=this.ptr;ensureCache.prepare();if(resourcesUnloading&&typeof resourcesUnloading==="object")resourcesUnloading=resourcesUnloading.ptr;else resourcesUnloading=ensureString(resourcesUnloading);_emscripten_bind_Layout_SetResourcesUnloading_1(self,resourcesUnloading)};Layout.prototype["GetResourcesUnloading"]=Layout.prototype.GetResourcesUnloading=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_Layout_GetResourcesUnloading_0(self))};Layout.prototype["__destroy__"]=Layout.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_Layout___destroy___0(self)};function ExternalEvents(){this.ptr=_emscripten_bind_ExternalEvents_ExternalEvents_0();getCache(ExternalEvents)[this.ptr]=this}ExternalEvents.prototype=Object.create(WrapperObject.prototype);ExternalEvents.prototype.constructor=ExternalEvents;ExternalEvents.prototype.__class__=ExternalEvents;ExternalEvents.__cache__={};Module["ExternalEvents"]=ExternalEvents;ExternalEvents.prototype["SetName"]=ExternalEvents.prototype.SetName=function(name){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);_emscripten_bind_ExternalEvents_SetName_1(self,name)};ExternalEvents.prototype["GetName"]=ExternalEvents.prototype.GetName=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_ExternalEvents_GetName_0(self))};ExternalEvents.prototype["GetAssociatedLayout"]=ExternalEvents.prototype.GetAssociatedLayout=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_ExternalEvents_GetAssociatedLayout_0(self))};ExternalEvents.prototype["SetAssociatedLayout"]=ExternalEvents.prototype.SetAssociatedLayout=function(name){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);_emscripten_bind_ExternalEvents_SetAssociatedLayout_1(self,name)};ExternalEvents.prototype["GetEvents"]=ExternalEvents.prototype.GetEvents=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_ExternalEvents_GetEvents_0(self),EventsList)};ExternalEvents.prototype["SerializeTo"]=ExternalEvents.prototype.SerializeTo=function(element){var self=this.ptr;if(element&&typeof element==="object")element=element.ptr;_emscripten_bind_ExternalEvents_SerializeTo_1(self,element)};ExternalEvents.prototype["UnserializeFrom"]=ExternalEvents.prototype.UnserializeFrom=function(project,element){var self=this.ptr;if(project&&typeof project==="object")project=project.ptr;if(element&&typeof element==="object")element=element.ptr;_emscripten_bind_ExternalEvents_UnserializeFrom_2(self,project,element)};ExternalEvents.prototype["__destroy__"]=ExternalEvents.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_ExternalEvents___destroy___0(self)};function ExternalLayout(){this.ptr=_emscripten_bind_ExternalLayout_ExternalLayout_0();getCache(ExternalLayout)[this.ptr]=this}ExternalLayout.prototype=Object.create(WrapperObject.prototype);ExternalLayout.prototype.constructor=ExternalLayout;ExternalLayout.prototype.__class__=ExternalLayout;ExternalLayout.__cache__={};Module["ExternalLayout"]=ExternalLayout;ExternalLayout.prototype["SetName"]=ExternalLayout.prototype.SetName=function(name){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);_emscripten_bind_ExternalLayout_SetName_1(self,name)};ExternalLayout.prototype["GetName"]=ExternalLayout.prototype.GetName=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_ExternalLayout_GetName_0(self))};ExternalLayout.prototype["SetAssociatedLayout"]=ExternalLayout.prototype.SetAssociatedLayout=function(name){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);_emscripten_bind_ExternalLayout_SetAssociatedLayout_1(self,name)};ExternalLayout.prototype["GetAssociatedLayout"]=ExternalLayout.prototype.GetAssociatedLayout=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_ExternalLayout_GetAssociatedLayout_0(self))};ExternalLayout.prototype["GetInitialInstances"]=ExternalLayout.prototype.GetInitialInstances=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_ExternalLayout_GetInitialInstances_0(self),InitialInstancesContainer)};ExternalLayout.prototype["GetAssociatedEditorSettings"]=ExternalLayout.prototype.GetAssociatedEditorSettings=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_ExternalLayout_GetAssociatedEditorSettings_0(self),EditorSettings)};ExternalLayout.prototype["SerializeTo"]=ExternalLayout.prototype.SerializeTo=function(element){var self=this.ptr;if(element&&typeof element==="object")element=element.ptr;_emscripten_bind_ExternalLayout_SerializeTo_1(self,element)};ExternalLayout.prototype["UnserializeFrom"]=ExternalLayout.prototype.UnserializeFrom=function(project,element){var self=this.ptr;if(project&&typeof project==="object")project=project.ptr;if(element&&typeof element==="object")element=element.ptr;_emscripten_bind_ExternalLayout_UnserializeFrom_2(self,project,element)};ExternalLayout.prototype["__destroy__"]=ExternalLayout.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_ExternalLayout___destroy___0(self)};function Effect(){this.ptr=_emscripten_bind_Effect_Effect_0();getCache(Effect)[this.ptr]=this}Effect.prototype=Object.create(WrapperObject.prototype);Effect.prototype.constructor=Effect;Effect.prototype.__class__=Effect;Effect.__cache__={};Module["Effect"]=Effect;Effect.prototype["SetName"]=Effect.prototype.SetName=function(name_){var self=this.ptr;ensureCache.prepare();if(name_&&typeof name_==="object")name_=name_.ptr;else name_=ensureString(name_);_emscripten_bind_Effect_SetName_1(self,name_)};Effect.prototype["GetName"]=Effect.prototype.GetName=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_Effect_GetName_0(self))};Effect.prototype["SetEffectType"]=Effect.prototype.SetEffectType=function(effectType_){var self=this.ptr;ensureCache.prepare();if(effectType_&&typeof effectType_==="object")effectType_=effectType_.ptr;else effectType_=ensureString(effectType_);_emscripten_bind_Effect_SetEffectType_1(self,effectType_)};Effect.prototype["GetEffectType"]=Effect.prototype.GetEffectType=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_Effect_GetEffectType_0(self))};Effect.prototype["SetFolded"]=Effect.prototype.SetFolded=function(val){var self=this.ptr;if(val&&typeof val==="object")val=val.ptr;_emscripten_bind_Effect_SetFolded_1(self,val)};Effect.prototype["IsFolded"]=Effect.prototype.IsFolded=function(){var self=this.ptr;return!!_emscripten_bind_Effect_IsFolded_0(self)};Effect.prototype["SetEnabled"]=Effect.prototype.SetEnabled=function(val){var self=this.ptr;if(val&&typeof val==="object")val=val.ptr;_emscripten_bind_Effect_SetEnabled_1(self,val)};Effect.prototype["IsEnabled"]=Effect.prototype.IsEnabled=function(){var self=this.ptr;return!!_emscripten_bind_Effect_IsEnabled_0(self)};Effect.prototype["SetDoubleParameter"]=Effect.prototype.SetDoubleParameter=function(name,value){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);if(value&&typeof value==="object")value=value.ptr;_emscripten_bind_Effect_SetDoubleParameter_2(self,name,value)};Effect.prototype["GetDoubleParameter"]=Effect.prototype.GetDoubleParameter=function(name){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);return _emscripten_bind_Effect_GetDoubleParameter_1(self,name)};Effect.prototype["HasDoubleParameter"]=Effect.prototype.HasDoubleParameter=function(name){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);return!!_emscripten_bind_Effect_HasDoubleParameter_1(self,name)};Effect.prototype["SetStringParameter"]=Effect.prototype.SetStringParameter=function(name,value){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);if(value&&typeof value==="object")value=value.ptr;else value=ensureString(value);_emscripten_bind_Effect_SetStringParameter_2(self,name,value)};Effect.prototype["GetStringParameter"]=Effect.prototype.GetStringParameter=function(name){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);return UTF8ToString(_emscripten_bind_Effect_GetStringParameter_1(self,name))};Effect.prototype["HasStringParameter"]=Effect.prototype.HasStringParameter=function(name){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);return!!_emscripten_bind_Effect_HasStringParameter_1(self,name)};Effect.prototype["SetBooleanParameter"]=Effect.prototype.SetBooleanParameter=function(name,value){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);if(value&&typeof value==="object")value=value.ptr;_emscripten_bind_Effect_SetBooleanParameter_2(self,name,value)};Effect.prototype["GetBooleanParameter"]=Effect.prototype.GetBooleanParameter=function(name){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);return!!_emscripten_bind_Effect_GetBooleanParameter_1(self,name)};Effect.prototype["HasBooleanParameter"]=Effect.prototype.HasBooleanParameter=function(name){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);return!!_emscripten_bind_Effect_HasBooleanParameter_1(self,name)};Effect.prototype["GetAllDoubleParameters"]=Effect.prototype.GetAllDoubleParameters=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_Effect_GetAllDoubleParameters_0(self),MapStringDouble)};Effect.prototype["GetAllStringParameters"]=Effect.prototype.GetAllStringParameters=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_Effect_GetAllStringParameters_0(self),MapStringString)};Effect.prototype["GetAllBooleanParameters"]=Effect.prototype.GetAllBooleanParameters=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_Effect_GetAllBooleanParameters_0(self),MapStringBoolean)};Effect.prototype["ClearParameters"]=Effect.prototype.ClearParameters=function(){var self=this.ptr;_emscripten_bind_Effect_ClearParameters_0(self)};Effect.prototype["SerializeTo"]=Effect.prototype.SerializeTo=function(element){var self=this.ptr;if(element&&typeof element==="object")element=element.ptr;_emscripten_bind_Effect_SerializeTo_1(self,element)};Effect.prototype["UnserializeFrom"]=Effect.prototype.UnserializeFrom=function(element){var self=this.ptr;if(element&&typeof element==="object")element=element.ptr;_emscripten_bind_Effect_UnserializeFrom_1(self,element)};Effect.prototype["__destroy__"]=Effect.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_Effect___destroy___0(self)};function EffectsContainer(){this.ptr=_emscripten_bind_EffectsContainer_EffectsContainer_0();getCache(EffectsContainer)[this.ptr]=this}EffectsContainer.prototype=Object.create(WrapperObject.prototype);EffectsContainer.prototype.constructor=EffectsContainer;EffectsContainer.prototype.__class__=EffectsContainer;EffectsContainer.__cache__={};Module["EffectsContainer"]=EffectsContainer;EffectsContainer.prototype["HasEffectNamed"]=EffectsContainer.prototype.HasEffectNamed=function(name){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);return!!_emscripten_bind_EffectsContainer_HasEffectNamed_1(self,name)};EffectsContainer.prototype["GetEffect"]=EffectsContainer.prototype.GetEffect=function(name){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);return wrapPointer(_emscripten_bind_EffectsContainer_GetEffect_1(self,name),Effect)};EffectsContainer.prototype["GetEffectAt"]=EffectsContainer.prototype.GetEffectAt=function(index){var self=this.ptr;if(index&&typeof index==="object")index=index.ptr;return wrapPointer(_emscripten_bind_EffectsContainer_GetEffectAt_1(self,index),Effect)};EffectsContainer.prototype["GetEffectPosition"]=EffectsContainer.prototype.GetEffectPosition=function(name){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);return _emscripten_bind_EffectsContainer_GetEffectPosition_1(self,name)};EffectsContainer.prototype["GetEffectsCount"]=EffectsContainer.prototype.GetEffectsCount=function(){var self=this.ptr;return _emscripten_bind_EffectsContainer_GetEffectsCount_0(self)};EffectsContainer.prototype["InsertNewEffect"]=EffectsContainer.prototype.InsertNewEffect=function(name,position){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);if(position&&typeof position==="object")position=position.ptr;return wrapPointer(_emscripten_bind_EffectsContainer_InsertNewEffect_2(self,name,position),Effect)};EffectsContainer.prototype["InsertEffect"]=EffectsContainer.prototype.InsertEffect=function(theEffect,position){var self=this.ptr;if(theEffect&&typeof theEffect==="object")theEffect=theEffect.ptr;if(position&&typeof position==="object")position=position.ptr;_emscripten_bind_EffectsContainer_InsertEffect_2(self,theEffect,position)};EffectsContainer.prototype["RemoveEffect"]=EffectsContainer.prototype.RemoveEffect=function(name){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);_emscripten_bind_EffectsContainer_RemoveEffect_1(self,name)};EffectsContainer.prototype["SwapEffects"]=EffectsContainer.prototype.SwapEffects=function(firstEffectIndex,secondEffectIndex){var self=this.ptr;if(firstEffectIndex&&typeof firstEffectIndex==="object")firstEffectIndex=firstEffectIndex.ptr;if(secondEffectIndex&&typeof secondEffectIndex==="object")secondEffectIndex=secondEffectIndex.ptr;_emscripten_bind_EffectsContainer_SwapEffects_2(self,firstEffectIndex,secondEffectIndex)};EffectsContainer.prototype["MoveEffect"]=EffectsContainer.prototype.MoveEffect=function(oldIndex,newIndex){var self=this.ptr;if(oldIndex&&typeof oldIndex==="object")oldIndex=oldIndex.ptr;if(newIndex&&typeof newIndex==="object")newIndex=newIndex.ptr;_emscripten_bind_EffectsContainer_MoveEffect_2(self,oldIndex,newIndex)};EffectsContainer.prototype["Clear"]=EffectsContainer.prototype.Clear=function(){var self=this.ptr;_emscripten_bind_EffectsContainer_Clear_0(self)};EffectsContainer.prototype["SerializeTo"]=EffectsContainer.prototype.SerializeTo=function(element){var self=this.ptr;if(element&&typeof element==="object")element=element.ptr;_emscripten_bind_EffectsContainer_SerializeTo_1(self,element)};EffectsContainer.prototype["UnserializeFrom"]=EffectsContainer.prototype.UnserializeFrom=function(element){var self=this.ptr;if(element&&typeof element==="object")element=element.ptr;_emscripten_bind_EffectsContainer_UnserializeFrom_1(self,element)};EffectsContainer.prototype["__destroy__"]=EffectsContainer.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_EffectsContainer___destroy___0(self)};function Layer(){this.ptr=_emscripten_bind_Layer_Layer_0();getCache(Layer)[this.ptr]=this}Layer.prototype=Object.create(WrapperObject.prototype);Layer.prototype.constructor=Layer;Layer.prototype.__class__=Layer;Layer.__cache__={};Module["Layer"]=Layer;Layer.prototype["SetName"]=Layer.prototype.SetName=function(name){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);_emscripten_bind_Layer_SetName_1(self,name)};Layer.prototype["GetName"]=Layer.prototype.GetName=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_Layer_GetName_0(self))};Layer.prototype["SetRenderingType"]=Layer.prototype.SetRenderingType=function(renderingType){var self=this.ptr;ensureCache.prepare();if(renderingType&&typeof renderingType==="object")renderingType=renderingType.ptr;else renderingType=ensureString(renderingType);_emscripten_bind_Layer_SetRenderingType_1(self,renderingType)};Layer.prototype["GetRenderingType"]=Layer.prototype.GetRenderingType=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_Layer_GetRenderingType_0(self))};Layer.prototype["SetCameraType"]=Layer.prototype.SetCameraType=function(cameraType){var self=this.ptr;ensureCache.prepare();if(cameraType&&typeof cameraType==="object")cameraType=cameraType.ptr;else cameraType=ensureString(cameraType);_emscripten_bind_Layer_SetCameraType_1(self,cameraType)};Layer.prototype["GetCameraType"]=Layer.prototype.GetCameraType=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_Layer_GetCameraType_0(self))};Layer.prototype["SetDefaultCameraBehavior"]=Layer.prototype.SetDefaultCameraBehavior=function(defaultCameraBehavior){var self=this.ptr;ensureCache.prepare();if(defaultCameraBehavior&&typeof defaultCameraBehavior==="object")defaultCameraBehavior=defaultCameraBehavior.ptr;else defaultCameraBehavior=ensureString(defaultCameraBehavior);_emscripten_bind_Layer_SetDefaultCameraBehavior_1(self,defaultCameraBehavior)};Layer.prototype["GetDefaultCameraBehavior"]=Layer.prototype.GetDefaultCameraBehavior=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_Layer_GetDefaultCameraBehavior_0(self))};Layer.prototype["SetVisibility"]=Layer.prototype.SetVisibility=function(visible){var self=this.ptr;if(visible&&typeof visible==="object")visible=visible.ptr;_emscripten_bind_Layer_SetVisibility_1(self,visible)};Layer.prototype["GetVisibility"]=Layer.prototype.GetVisibility=function(){var self=this.ptr;return!!_emscripten_bind_Layer_GetVisibility_0(self)};Layer.prototype["SetLocked"]=Layer.prototype.SetLocked=function(isLocked){var self=this.ptr;if(isLocked&&typeof isLocked==="object")isLocked=isLocked.ptr;_emscripten_bind_Layer_SetLocked_1(self,isLocked)};Layer.prototype["IsLocked"]=Layer.prototype.IsLocked=function(){var self=this.ptr;return!!_emscripten_bind_Layer_IsLocked_0(self)};Layer.prototype["SetLightingLayer"]=Layer.prototype.SetLightingLayer=function(lightingLayer){var self=this.ptr;if(lightingLayer&&typeof lightingLayer==="object")lightingLayer=lightingLayer.ptr;_emscripten_bind_Layer_SetLightingLayer_1(self,lightingLayer)};Layer.prototype["IsLightingLayer"]=Layer.prototype.IsLightingLayer=function(){var self=this.ptr;return!!_emscripten_bind_Layer_IsLightingLayer_0(self)};Layer.prototype["SetFollowBaseLayerCamera"]=Layer.prototype.SetFollowBaseLayerCamera=function(followBaseLayerCamera){var self=this.ptr;if(followBaseLayerCamera&&typeof followBaseLayerCamera==="object")followBaseLayerCamera=followBaseLayerCamera.ptr;_emscripten_bind_Layer_SetFollowBaseLayerCamera_1(self,followBaseLayerCamera)};Layer.prototype["IsFollowingBaseLayerCamera"]=Layer.prototype.IsFollowingBaseLayerCamera=function(){var self=this.ptr;return!!_emscripten_bind_Layer_IsFollowingBaseLayerCamera_0(self)};Layer.prototype["GetCamera3DNearPlaneDistance"]=Layer.prototype.GetCamera3DNearPlaneDistance=function(){var self=this.ptr;return _emscripten_bind_Layer_GetCamera3DNearPlaneDistance_0(self)};Layer.prototype["SetCamera3DNearPlaneDistance"]=Layer.prototype.SetCamera3DNearPlaneDistance=function(distance){var self=this.ptr;if(distance&&typeof distance==="object")distance=distance.ptr;_emscripten_bind_Layer_SetCamera3DNearPlaneDistance_1(self,distance)};Layer.prototype["GetCamera3DFarPlaneDistance"]=Layer.prototype.GetCamera3DFarPlaneDistance=function(){var self=this.ptr;return _emscripten_bind_Layer_GetCamera3DFarPlaneDistance_0(self)};Layer.prototype["SetCamera3DFarPlaneDistance"]=Layer.prototype.SetCamera3DFarPlaneDistance=function(distance){var self=this.ptr;if(distance&&typeof distance==="object")distance=distance.ptr;_emscripten_bind_Layer_SetCamera3DFarPlaneDistance_1(self,distance)};Layer.prototype["GetCamera3DFieldOfView"]=Layer.prototype.GetCamera3DFieldOfView=function(){var self=this.ptr;return _emscripten_bind_Layer_GetCamera3DFieldOfView_0(self)};Layer.prototype["SetCamera3DFieldOfView"]=Layer.prototype.SetCamera3DFieldOfView=function(angle){var self=this.ptr;if(angle&&typeof angle==="object")angle=angle.ptr;_emscripten_bind_Layer_SetCamera3DFieldOfView_1(self,angle)};Layer.prototype["GetCamera2DPlaneMaxDrawingDistance"]=Layer.prototype.GetCamera2DPlaneMaxDrawingDistance=function(){var self=this.ptr;return _emscripten_bind_Layer_GetCamera2DPlaneMaxDrawingDistance_0(self)};Layer.prototype["SetCamera2DPlaneMaxDrawingDistance"]=Layer.prototype.SetCamera2DPlaneMaxDrawingDistance=function(distance){var self=this.ptr;if(distance&&typeof distance==="object")distance=distance.ptr;_emscripten_bind_Layer_SetCamera2DPlaneMaxDrawingDistance_1(self,distance)};Layer.prototype["SetAmbientLightColor"]=Layer.prototype.SetAmbientLightColor=function(r,g,b){var self=this.ptr;if(r&&typeof r==="object")r=r.ptr;if(g&&typeof g==="object")g=g.ptr;if(b&&typeof b==="object")b=b.ptr;_emscripten_bind_Layer_SetAmbientLightColor_3(self,r,g,b)};Layer.prototype["GetAmbientLightColorRed"]=Layer.prototype.GetAmbientLightColorRed=function(){var self=this.ptr;return _emscripten_bind_Layer_GetAmbientLightColorRed_0(self)};Layer.prototype["GetAmbientLightColorGreen"]=Layer.prototype.GetAmbientLightColorGreen=function(){var self=this.ptr;return _emscripten_bind_Layer_GetAmbientLightColorGreen_0(self)};Layer.prototype["GetAmbientLightColorBlue"]=Layer.prototype.GetAmbientLightColorBlue=function(){var self=this.ptr;return _emscripten_bind_Layer_GetAmbientLightColorBlue_0(self)};Layer.prototype["GetEffects"]=Layer.prototype.GetEffects=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_Layer_GetEffects_0(self),EffectsContainer)};Layer.prototype["GetCameraCount"]=Layer.prototype.GetCameraCount=function(){var self=this.ptr;return _emscripten_bind_Layer_GetCameraCount_0(self)};Layer.prototype["SetCameraCount"]=Layer.prototype.SetCameraCount=function(cameraCount){var self=this.ptr;if(cameraCount&&typeof cameraCount==="object")cameraCount=cameraCount.ptr;_emscripten_bind_Layer_SetCameraCount_1(self,cameraCount)};Layer.prototype["SerializeTo"]=Layer.prototype.SerializeTo=function(element){var self=this.ptr;if(element&&typeof element==="object")element=element.ptr;_emscripten_bind_Layer_SerializeTo_1(self,element)};Layer.prototype["UnserializeFrom"]=Layer.prototype.UnserializeFrom=function(element){var self=this.ptr;if(element&&typeof element==="object")element=element.ptr;_emscripten_bind_Layer_UnserializeFrom_1(self,element)};Layer.prototype["__destroy__"]=Layer.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_Layer___destroy___0(self)};function LayersContainer(){throw"cannot construct a LayersContainer, no constructor in IDL"}LayersContainer.prototype=Object.create(WrapperObject.prototype);LayersContainer.prototype.constructor=LayersContainer;LayersContainer.prototype.__class__=LayersContainer;LayersContainer.__cache__={};Module["LayersContainer"]=LayersContainer;LayersContainer.prototype["InsertNewLayer"]=LayersContainer.prototype.InsertNewLayer=function(name,position){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);if(position&&typeof position==="object")position=position.ptr;_emscripten_bind_LayersContainer_InsertNewLayer_2(self,name,position)};LayersContainer.prototype["InsertLayer"]=LayersContainer.prototype.InsertLayer=function(layer,position){var self=this.ptr;if(layer&&typeof layer==="object")layer=layer.ptr;if(position&&typeof position==="object")position=position.ptr;_emscripten_bind_LayersContainer_InsertLayer_2(self,layer,position)};LayersContainer.prototype["GetLayer"]=LayersContainer.prototype.GetLayer=function(name){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);return wrapPointer(_emscripten_bind_LayersContainer_GetLayer_1(self,name),Layer)};LayersContainer.prototype["GetLayerAt"]=LayersContainer.prototype.GetLayerAt=function(pos){var self=this.ptr;if(pos&&typeof pos==="object")pos=pos.ptr;return wrapPointer(_emscripten_bind_LayersContainer_GetLayerAt_1(self,pos),Layer)};LayersContainer.prototype["HasLayerNamed"]=LayersContainer.prototype.HasLayerNamed=function(name){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);return!!_emscripten_bind_LayersContainer_HasLayerNamed_1(self,name)};LayersContainer.prototype["RemoveLayer"]=LayersContainer.prototype.RemoveLayer=function(name){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);_emscripten_bind_LayersContainer_RemoveLayer_1(self,name)};LayersContainer.prototype["GetLayersCount"]=LayersContainer.prototype.GetLayersCount=function(){var self=this.ptr;return _emscripten_bind_LayersContainer_GetLayersCount_0(self)};LayersContainer.prototype["GetLayerPosition"]=LayersContainer.prototype.GetLayerPosition=function(name){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);return _emscripten_bind_LayersContainer_GetLayerPosition_1(self,name)};LayersContainer.prototype["SwapLayers"]=LayersContainer.prototype.SwapLayers=function(firstLayerIndex,secondLayerIndex){var self=this.ptr;if(firstLayerIndex&&typeof firstLayerIndex==="object")firstLayerIndex=firstLayerIndex.ptr;if(secondLayerIndex&&typeof secondLayerIndex==="object")secondLayerIndex=secondLayerIndex.ptr;_emscripten_bind_LayersContainer_SwapLayers_2(self,firstLayerIndex,secondLayerIndex)};LayersContainer.prototype["MoveLayer"]=LayersContainer.prototype.MoveLayer=function(oldIndex,newIndex){var self=this.ptr;if(oldIndex&&typeof oldIndex==="object")oldIndex=oldIndex.ptr;if(newIndex&&typeof newIndex==="object")newIndex=newIndex.ptr;_emscripten_bind_LayersContainer_MoveLayer_2(self,oldIndex,newIndex)};LayersContainer.prototype["SerializeLayersTo"]=LayersContainer.prototype.SerializeLayersTo=function(element){var self=this.ptr;if(element&&typeof element==="object")element=element.ptr;_emscripten_bind_LayersContainer_SerializeLayersTo_1(self,element)};LayersContainer.prototype["UnserializeLayersFrom"]=LayersContainer.prototype.UnserializeLayersFrom=function(element){var self=this.ptr;if(element&&typeof element==="object")element=element.ptr;_emscripten_bind_LayersContainer_UnserializeLayersFrom_1(self,element)};LayersContainer.prototype["__destroy__"]=LayersContainer.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_LayersContainer___destroy___0(self)};function PropertyDescriptorChoice(value,label){ensureCache.prepare();if(value&&typeof value==="object")value=value.ptr;else value=ensureString(value);if(label&&typeof label==="object")label=label.ptr;else label=ensureString(label);this.ptr=_emscripten_bind_PropertyDescriptorChoice_PropertyDescriptorChoice_2(value,label);getCache(PropertyDescriptorChoice)[this.ptr]=this}PropertyDescriptorChoice.prototype=Object.create(WrapperObject.prototype);PropertyDescriptorChoice.prototype.constructor=PropertyDescriptorChoice;PropertyDescriptorChoice.prototype.__class__=PropertyDescriptorChoice;PropertyDescriptorChoice.__cache__={};Module["PropertyDescriptorChoice"]=PropertyDescriptorChoice;PropertyDescriptorChoice.prototype["GetValue"]=PropertyDescriptorChoice.prototype.GetValue=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_PropertyDescriptorChoice_GetValue_0(self))};PropertyDescriptorChoice.prototype["GetLabel"]=PropertyDescriptorChoice.prototype.GetLabel=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_PropertyDescriptorChoice_GetLabel_0(self))};PropertyDescriptorChoice.prototype["__destroy__"]=PropertyDescriptorChoice.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_PropertyDescriptorChoice___destroy___0(self)};function VectorPropertyDescriptorChoice(){throw"cannot construct a VectorPropertyDescriptorChoice, no constructor in IDL"}VectorPropertyDescriptorChoice.prototype=Object.create(WrapperObject.prototype);VectorPropertyDescriptorChoice.prototype.constructor=VectorPropertyDescriptorChoice;VectorPropertyDescriptorChoice.prototype.__class__=VectorPropertyDescriptorChoice;VectorPropertyDescriptorChoice.__cache__={};Module["VectorPropertyDescriptorChoice"]=VectorPropertyDescriptorChoice;VectorPropertyDescriptorChoice.prototype["size"]=VectorPropertyDescriptorChoice.prototype.size=function(){var self=this.ptr;return _emscripten_bind_VectorPropertyDescriptorChoice_size_0(self)};VectorPropertyDescriptorChoice.prototype["at"]=VectorPropertyDescriptorChoice.prototype.at=function(index){var self=this.ptr;if(index&&typeof index==="object")index=index.ptr;return wrapPointer(_emscripten_bind_VectorPropertyDescriptorChoice_at_1(self,index),PropertyDescriptorChoice)};VectorPropertyDescriptorChoice.prototype["__destroy__"]=VectorPropertyDescriptorChoice.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_VectorPropertyDescriptorChoice___destroy___0(self)};function MeasurementUnit(name,label,description){ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);if(label&&typeof label==="object")label=label.ptr;else label=ensureString(label);if(description&&typeof description==="object")description=description.ptr;else description=ensureString(description);this.ptr=_emscripten_bind_MeasurementUnit_MeasurementUnit_3(name,label,description);getCache(MeasurementUnit)[this.ptr]=this}MeasurementUnit.prototype=Object.create(WrapperObject.prototype);MeasurementUnit.prototype.constructor=MeasurementUnit;MeasurementUnit.prototype.__class__=MeasurementUnit;MeasurementUnit.__cache__={};Module["MeasurementUnit"]=MeasurementUnit;MeasurementUnit.prototype["GetName"]=MeasurementUnit.prototype.GetName=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_MeasurementUnit_GetName_0(self))};MeasurementUnit.prototype["GetLabel"]=MeasurementUnit.prototype.GetLabel=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_MeasurementUnit_GetLabel_0(self))};MeasurementUnit.prototype["GetDescription"]=MeasurementUnit.prototype.GetDescription=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_MeasurementUnit_GetDescription_0(self))};MeasurementUnit.prototype["GetElementsWithWords"]=MeasurementUnit.prototype.GetElementsWithWords=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_MeasurementUnit_GetElementsWithWords_0(self))};MeasurementUnit.prototype["GetElementsCount"]=MeasurementUnit.prototype.GetElementsCount=function(){var self=this.ptr;return _emscripten_bind_MeasurementUnit_GetElementsCount_0(self)};MeasurementUnit.prototype["GetElementPower"]=MeasurementUnit.prototype.GetElementPower=function(elementIndex){var self=this.ptr;if(elementIndex&&typeof elementIndex==="object")elementIndex=elementIndex.ptr;return _emscripten_bind_MeasurementUnit_GetElementPower_1(self,elementIndex)};MeasurementUnit.prototype["GetElementBaseUnit"]=MeasurementUnit.prototype.GetElementBaseUnit=function(elementIndex){var self=this.ptr;if(elementIndex&&typeof elementIndex==="object")elementIndex=elementIndex.ptr;return wrapPointer(_emscripten_bind_MeasurementUnit_GetElementBaseUnit_1(self,elementIndex),MeasurementBaseUnit)};MeasurementUnit.prototype["IsUndefined"]=MeasurementUnit.prototype.IsUndefined=function(){var self=this.ptr;return!!_emscripten_bind_MeasurementUnit_IsUndefined_0(self)};MeasurementUnit.prototype["STATIC_ApplyTranslation"]=MeasurementUnit.prototype.STATIC_ApplyTranslation=function(){var self=this.ptr;_emscripten_bind_MeasurementUnit_STATIC_ApplyTranslation_0(self)};MeasurementUnit.prototype["STATIC_GetUndefined"]=MeasurementUnit.prototype.STATIC_GetUndefined=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_MeasurementUnit_STATIC_GetUndefined_0(self),MeasurementUnit)};MeasurementUnit.prototype["STATIC_GetDimensionless"]=MeasurementUnit.prototype.STATIC_GetDimensionless=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_MeasurementUnit_STATIC_GetDimensionless_0(self),MeasurementUnit)};MeasurementUnit.prototype["STATIC_GetDegreeAngle"]=MeasurementUnit.prototype.STATIC_GetDegreeAngle=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_MeasurementUnit_STATIC_GetDegreeAngle_0(self),MeasurementUnit)};MeasurementUnit.prototype["STATIC_GetSecond"]=MeasurementUnit.prototype.STATIC_GetSecond=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_MeasurementUnit_STATIC_GetSecond_0(self),MeasurementUnit)};MeasurementUnit.prototype["STATIC_GetPixel"]=MeasurementUnit.prototype.STATIC_GetPixel=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_MeasurementUnit_STATIC_GetPixel_0(self),MeasurementUnit)};MeasurementUnit.prototype["STATIC_GetPixelSpeed"]=MeasurementUnit.prototype.STATIC_GetPixelSpeed=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_MeasurementUnit_STATIC_GetPixelSpeed_0(self),MeasurementUnit)};MeasurementUnit.prototype["STATIC_GetPixelAcceleration"]=MeasurementUnit.prototype.STATIC_GetPixelAcceleration=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_MeasurementUnit_STATIC_GetPixelAcceleration_0(self),MeasurementUnit)};MeasurementUnit.prototype["STATIC_GetAngularSpeed"]=MeasurementUnit.prototype.STATIC_GetAngularSpeed=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_MeasurementUnit_STATIC_GetAngularSpeed_0(self),MeasurementUnit)};MeasurementUnit.prototype["STATIC_GetNewton"]=MeasurementUnit.prototype.STATIC_GetNewton=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_MeasurementUnit_STATIC_GetNewton_0(self),MeasurementUnit)};MeasurementUnit.prototype["STATIC_GetDefaultMeasurementUnitsCount"]=MeasurementUnit.prototype.STATIC_GetDefaultMeasurementUnitsCount=function(){var self=this.ptr;return _emscripten_bind_MeasurementUnit_STATIC_GetDefaultMeasurementUnitsCount_0(self)};MeasurementUnit.prototype["STATIC_GetDefaultMeasurementUnitAtIndex"]=MeasurementUnit.prototype.STATIC_GetDefaultMeasurementUnitAtIndex=function(index){var self=this.ptr;if(index&&typeof index==="object")index=index.ptr;return wrapPointer(_emscripten_bind_MeasurementUnit_STATIC_GetDefaultMeasurementUnitAtIndex_1(self,index),MeasurementUnit)};MeasurementUnit.prototype["STATIC_GetDefaultMeasurementUnitByName"]=MeasurementUnit.prototype.STATIC_GetDefaultMeasurementUnitByName=function(name){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);return wrapPointer(_emscripten_bind_MeasurementUnit_STATIC_GetDefaultMeasurementUnitByName_1(self,name),MeasurementUnit)};MeasurementUnit.prototype["STATIC_HasDefaultMeasurementUnitNamed"]=MeasurementUnit.prototype.STATIC_HasDefaultMeasurementUnitNamed=function(name){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);return!!_emscripten_bind_MeasurementUnit_STATIC_HasDefaultMeasurementUnitNamed_1(self,name)};MeasurementUnit.prototype["__destroy__"]=MeasurementUnit.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_MeasurementUnit___destroy___0(self)};function MeasurementBaseUnit(name,symbol,quantity){ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);if(symbol&&typeof symbol==="object")symbol=symbol.ptr;else symbol=ensureString(symbol);if(quantity&&typeof quantity==="object")quantity=quantity.ptr;else quantity=ensureString(quantity);this.ptr=_emscripten_bind_MeasurementBaseUnit_MeasurementBaseUnit_3(name,symbol,quantity);getCache(MeasurementBaseUnit)[this.ptr]=this}MeasurementBaseUnit.prototype=Object.create(WrapperObject.prototype);MeasurementBaseUnit.prototype.constructor=MeasurementBaseUnit;MeasurementBaseUnit.prototype.__class__=MeasurementBaseUnit;MeasurementBaseUnit.__cache__={};Module["MeasurementBaseUnit"]=MeasurementBaseUnit;MeasurementBaseUnit.prototype["GetName"]=MeasurementBaseUnit.prototype.GetName=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_MeasurementBaseUnit_GetName_0(self))};MeasurementBaseUnit.prototype["GetSymbol"]=MeasurementBaseUnit.prototype.GetSymbol=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_MeasurementBaseUnit_GetSymbol_0(self))};MeasurementBaseUnit.prototype["GetQuantity"]=MeasurementBaseUnit.prototype.GetQuantity=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_MeasurementBaseUnit_GetQuantity_0(self))};MeasurementBaseUnit.prototype["__destroy__"]=MeasurementBaseUnit.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_MeasurementBaseUnit___destroy___0(self)};function NamedPropertyDescriptor(){this.ptr=_emscripten_bind_NamedPropertyDescriptor_NamedPropertyDescriptor_0();getCache(NamedPropertyDescriptor)[this.ptr]=this}NamedPropertyDescriptor.prototype=Object.create(PropertyDescriptor.prototype);NamedPropertyDescriptor.prototype.constructor=NamedPropertyDescriptor;NamedPropertyDescriptor.prototype.__class__=NamedPropertyDescriptor;NamedPropertyDescriptor.__cache__={};Module["NamedPropertyDescriptor"]=NamedPropertyDescriptor;NamedPropertyDescriptor.prototype["SetName"]=NamedPropertyDescriptor.prototype.SetName=function(name){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);return wrapPointer(_emscripten_bind_NamedPropertyDescriptor_SetName_1(self,name),PropertyDescriptor)};NamedPropertyDescriptor.prototype["GetName"]=NamedPropertyDescriptor.prototype.GetName=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_NamedPropertyDescriptor_GetName_0(self))};NamedPropertyDescriptor.prototype["SetValue"]=NamedPropertyDescriptor.prototype.SetValue=function(value){var self=this.ptr;ensureCache.prepare();if(value&&typeof value==="object")value=value.ptr;else value=ensureString(value);return wrapPointer(_emscripten_bind_NamedPropertyDescriptor_SetValue_1(self,value),PropertyDescriptor)};NamedPropertyDescriptor.prototype["GetValue"]=NamedPropertyDescriptor.prototype.GetValue=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_NamedPropertyDescriptor_GetValue_0(self))};NamedPropertyDescriptor.prototype["SetType"]=NamedPropertyDescriptor.prototype.SetType=function(type){var self=this.ptr;ensureCache.prepare();if(type&&typeof type==="object")type=type.ptr;else type=ensureString(type);return wrapPointer(_emscripten_bind_NamedPropertyDescriptor_SetType_1(self,type),PropertyDescriptor)};NamedPropertyDescriptor.prototype["GetType"]=NamedPropertyDescriptor.prototype.GetType=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_NamedPropertyDescriptor_GetType_0(self))};NamedPropertyDescriptor.prototype["SetLabel"]=NamedPropertyDescriptor.prototype.SetLabel=function(label){var self=this.ptr;ensureCache.prepare();if(label&&typeof label==="object")label=label.ptr;else label=ensureString(label);return wrapPointer(_emscripten_bind_NamedPropertyDescriptor_SetLabel_1(self,label),PropertyDescriptor)};NamedPropertyDescriptor.prototype["GetLabel"]=NamedPropertyDescriptor.prototype.GetLabel=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_NamedPropertyDescriptor_GetLabel_0(self))};NamedPropertyDescriptor.prototype["SetDescription"]=NamedPropertyDescriptor.prototype.SetDescription=function(label){var self=this.ptr;ensureCache.prepare();if(label&&typeof label==="object")label=label.ptr;else label=ensureString(label);return wrapPointer(_emscripten_bind_NamedPropertyDescriptor_SetDescription_1(self,label),PropertyDescriptor)};NamedPropertyDescriptor.prototype["GetDescription"]=NamedPropertyDescriptor.prototype.GetDescription=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_NamedPropertyDescriptor_GetDescription_0(self))};NamedPropertyDescriptor.prototype["SetGroup"]=NamedPropertyDescriptor.prototype.SetGroup=function(label){var self=this.ptr;ensureCache.prepare();if(label&&typeof label==="object")label=label.ptr;else label=ensureString(label);return wrapPointer(_emscripten_bind_NamedPropertyDescriptor_SetGroup_1(self,label),PropertyDescriptor)};NamedPropertyDescriptor.prototype["GetGroup"]=NamedPropertyDescriptor.prototype.GetGroup=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_NamedPropertyDescriptor_GetGroup_0(self))};NamedPropertyDescriptor.prototype["ClearChoices"]=NamedPropertyDescriptor.prototype.ClearChoices=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_NamedPropertyDescriptor_ClearChoices_0(self),PropertyDescriptor)};NamedPropertyDescriptor.prototype["AddChoice"]=NamedPropertyDescriptor.prototype.AddChoice=function(value,label){var self=this.ptr;ensureCache.prepare();if(value&&typeof value==="object")value=value.ptr;else value=ensureString(value);if(label&&typeof label==="object")label=label.ptr;else label=ensureString(label);return wrapPointer(_emscripten_bind_NamedPropertyDescriptor_AddChoice_2(self,value,label),PropertyDescriptor)};NamedPropertyDescriptor.prototype["GetChoices"]=NamedPropertyDescriptor.prototype.GetChoices=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_NamedPropertyDescriptor_GetChoices_0(self),VectorPropertyDescriptorChoice)};NamedPropertyDescriptor.prototype["AddExtraInfo"]=NamedPropertyDescriptor.prototype.AddExtraInfo=function(type){var self=this.ptr;ensureCache.prepare();if(type&&typeof type==="object")type=type.ptr;else type=ensureString(type);return wrapPointer(_emscripten_bind_NamedPropertyDescriptor_AddExtraInfo_1(self,type),PropertyDescriptor)};NamedPropertyDescriptor.prototype["SetExtraInfo"]=NamedPropertyDescriptor.prototype.SetExtraInfo=function(info){var self=this.ptr;if(info&&typeof info==="object")info=info.ptr;return wrapPointer(_emscripten_bind_NamedPropertyDescriptor_SetExtraInfo_1(self,info),PropertyDescriptor)};NamedPropertyDescriptor.prototype["GetExtraInfo"]=NamedPropertyDescriptor.prototype.GetExtraInfo=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_NamedPropertyDescriptor_GetExtraInfo_0(self),VectorString)};NamedPropertyDescriptor.prototype["SetHidden"]=NamedPropertyDescriptor.prototype.SetHidden=function(enable){var self=this.ptr;if(enable&&typeof enable==="object")enable=enable.ptr;return wrapPointer(_emscripten_bind_NamedPropertyDescriptor_SetHidden_1(self,enable),PropertyDescriptor)};NamedPropertyDescriptor.prototype["IsHidden"]=NamedPropertyDescriptor.prototype.IsHidden=function(){var self=this.ptr;return!!_emscripten_bind_NamedPropertyDescriptor_IsHidden_0(self)};NamedPropertyDescriptor.prototype["SetDeprecated"]=NamedPropertyDescriptor.prototype.SetDeprecated=function(enable){var self=this.ptr;if(enable&&typeof enable==="object")enable=enable.ptr;return wrapPointer(_emscripten_bind_NamedPropertyDescriptor_SetDeprecated_1(self,enable),PropertyDescriptor)};NamedPropertyDescriptor.prototype["IsDeprecated"]=NamedPropertyDescriptor.prototype.IsDeprecated=function(){var self=this.ptr;return!!_emscripten_bind_NamedPropertyDescriptor_IsDeprecated_0(self)};NamedPropertyDescriptor.prototype["SetAdvanced"]=NamedPropertyDescriptor.prototype.SetAdvanced=function(enable){var self=this.ptr;if(enable&&typeof enable==="object")enable=enable.ptr;return wrapPointer(_emscripten_bind_NamedPropertyDescriptor_SetAdvanced_1(self,enable),PropertyDescriptor)};NamedPropertyDescriptor.prototype["IsAdvanced"]=NamedPropertyDescriptor.prototype.IsAdvanced=function(){var self=this.ptr;return!!_emscripten_bind_NamedPropertyDescriptor_IsAdvanced_0(self)};NamedPropertyDescriptor.prototype["GetMeasurementUnit"]=NamedPropertyDescriptor.prototype.GetMeasurementUnit=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_NamedPropertyDescriptor_GetMeasurementUnit_0(self),MeasurementUnit)};NamedPropertyDescriptor.prototype["SetMeasurementUnit"]=NamedPropertyDescriptor.prototype.SetMeasurementUnit=function(measurementUnit){var self=this.ptr;if(measurementUnit&&typeof measurementUnit==="object")measurementUnit=measurementUnit.ptr;return wrapPointer(_emscripten_bind_NamedPropertyDescriptor_SetMeasurementUnit_1(self,measurementUnit),PropertyDescriptor)};NamedPropertyDescriptor.prototype["HasImpactOnOtherProperties"]=NamedPropertyDescriptor.prototype.HasImpactOnOtherProperties=function(){var self=this.ptr;return!!_emscripten_bind_NamedPropertyDescriptor_HasImpactOnOtherProperties_0(self)};NamedPropertyDescriptor.prototype["SetHasImpactOnOtherProperties"]=NamedPropertyDescriptor.prototype.SetHasImpactOnOtherProperties=function(enable){var self=this.ptr;if(enable&&typeof enable==="object")enable=enable.ptr;return wrapPointer(_emscripten_bind_NamedPropertyDescriptor_SetHasImpactOnOtherProperties_1(self,enable),PropertyDescriptor)};NamedPropertyDescriptor.prototype["GetQuickCustomizationVisibility"]=NamedPropertyDescriptor.prototype.GetQuickCustomizationVisibility=function(){var self=this.ptr;return _emscripten_bind_NamedPropertyDescriptor_GetQuickCustomizationVisibility_0(self)};NamedPropertyDescriptor.prototype["SetQuickCustomizationVisibility"]=NamedPropertyDescriptor.prototype.SetQuickCustomizationVisibility=function(visibility){var self=this.ptr;if(visibility&&typeof visibility==="object")visibility=visibility.ptr;return wrapPointer(_emscripten_bind_NamedPropertyDescriptor_SetQuickCustomizationVisibility_1(self,visibility),PropertyDescriptor)};NamedPropertyDescriptor.prototype["SerializeTo"]=NamedPropertyDescriptor.prototype.SerializeTo=function(element){var self=this.ptr;if(element&&typeof element==="object")element=element.ptr;_emscripten_bind_NamedPropertyDescriptor_SerializeTo_1(self,element)};NamedPropertyDescriptor.prototype["UnserializeFrom"]=NamedPropertyDescriptor.prototype.UnserializeFrom=function(element){var self=this.ptr;if(element&&typeof element==="object")element=element.ptr;_emscripten_bind_NamedPropertyDescriptor_UnserializeFrom_1(self,element)};NamedPropertyDescriptor.prototype["SerializeValuesTo"]=NamedPropertyDescriptor.prototype.SerializeValuesTo=function(element){var self=this.ptr;if(element&&typeof element==="object")element=element.ptr;_emscripten_bind_NamedPropertyDescriptor_SerializeValuesTo_1(self,element)};NamedPropertyDescriptor.prototype["UnserializeValuesFrom"]=NamedPropertyDescriptor.prototype.UnserializeValuesFrom=function(element){var self=this.ptr;if(element&&typeof element==="object")element=element.ptr;_emscripten_bind_NamedPropertyDescriptor_UnserializeValuesFrom_1(self,element)};NamedPropertyDescriptor.prototype["__destroy__"]=NamedPropertyDescriptor.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_NamedPropertyDescriptor___destroy___0(self)};function MapStringPropertyDescriptor(){this.ptr=_emscripten_bind_MapStringPropertyDescriptor_MapStringPropertyDescriptor_0();getCache(MapStringPropertyDescriptor)[this.ptr]=this}MapStringPropertyDescriptor.prototype=Object.create(WrapperObject.prototype);MapStringPropertyDescriptor.prototype.constructor=MapStringPropertyDescriptor;MapStringPropertyDescriptor.prototype.__class__=MapStringPropertyDescriptor;MapStringPropertyDescriptor.__cache__={};Module["MapStringPropertyDescriptor"]=MapStringPropertyDescriptor;MapStringPropertyDescriptor.prototype["MAP_getOrCreate"]=MapStringPropertyDescriptor.prototype.MAP_getOrCreate=function(name){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);return wrapPointer(_emscripten_bind_MapStringPropertyDescriptor_MAP_getOrCreate_1(self,name),PropertyDescriptor)};MapStringPropertyDescriptor.prototype["MAP_get"]=MapStringPropertyDescriptor.prototype.MAP_get=function(name){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);return wrapPointer(_emscripten_bind_MapStringPropertyDescriptor_MAP_get_1(self,name),PropertyDescriptor)};MapStringPropertyDescriptor.prototype["MAP_set"]=MapStringPropertyDescriptor.prototype.MAP_set=function(name,prop){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);if(prop&&typeof prop==="object")prop=prop.ptr;_emscripten_bind_MapStringPropertyDescriptor_MAP_set_2(self,name,prop)};MapStringPropertyDescriptor.prototype["MAP_has"]=MapStringPropertyDescriptor.prototype.MAP_has=function(name){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);return!!_emscripten_bind_MapStringPropertyDescriptor_MAP_has_1(self,name)};MapStringPropertyDescriptor.prototype["MAP_keys"]=MapStringPropertyDescriptor.prototype.MAP_keys=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_MapStringPropertyDescriptor_MAP_keys_0(self),VectorString)};MapStringPropertyDescriptor.prototype["__destroy__"]=MapStringPropertyDescriptor.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_MapStringPropertyDescriptor___destroy___0(self)};function MapStringSerializerValue(){this.ptr=_emscripten_bind_MapStringSerializerValue_MapStringSerializerValue_0();getCache(MapStringSerializerValue)[this.ptr]=this}MapStringSerializerValue.prototype=Object.create(WrapperObject.prototype);MapStringSerializerValue.prototype.constructor=MapStringSerializerValue;MapStringSerializerValue.prototype.__class__=MapStringSerializerValue;MapStringSerializerValue.__cache__={};Module["MapStringSerializerValue"]=MapStringSerializerValue;MapStringSerializerValue.prototype["MAP_getOrCreate"]=MapStringSerializerValue.prototype.MAP_getOrCreate=function(name){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);return wrapPointer(_emscripten_bind_MapStringSerializerValue_MAP_getOrCreate_1(self,name),SerializerValue)};MapStringSerializerValue.prototype["MAP_get"]=MapStringSerializerValue.prototype.MAP_get=function(name){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);return wrapPointer(_emscripten_bind_MapStringSerializerValue_MAP_get_1(self,name),SerializerValue)};MapStringSerializerValue.prototype["MAP_set"]=MapStringSerializerValue.prototype.MAP_set=function(name,prop){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);if(prop&&typeof prop==="object")prop=prop.ptr;_emscripten_bind_MapStringSerializerValue_MAP_set_2(self,name,prop)};MapStringSerializerValue.prototype["MAP_has"]=MapStringSerializerValue.prototype.MAP_has=function(name){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);return!!_emscripten_bind_MapStringSerializerValue_MAP_has_1(self,name)};MapStringSerializerValue.prototype["MAP_keys"]=MapStringSerializerValue.prototype.MAP_keys=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_MapStringSerializerValue_MAP_keys_0(self),VectorString)};MapStringSerializerValue.prototype["__destroy__"]=MapStringSerializerValue.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_MapStringSerializerValue___destroy___0(self)};function VectorPairStringSharedPtrSerializerElement(){throw"cannot construct a VectorPairStringSharedPtrSerializerElement, no constructor in IDL"}VectorPairStringSharedPtrSerializerElement.prototype=Object.create(WrapperObject.prototype);VectorPairStringSharedPtrSerializerElement.prototype.constructor=VectorPairStringSharedPtrSerializerElement;VectorPairStringSharedPtrSerializerElement.prototype.__class__=VectorPairStringSharedPtrSerializerElement;VectorPairStringSharedPtrSerializerElement.__cache__={};Module["VectorPairStringSharedPtrSerializerElement"]=VectorPairStringSharedPtrSerializerElement;VectorPairStringSharedPtrSerializerElement.prototype["size"]=VectorPairStringSharedPtrSerializerElement.prototype.size=function(){var self=this.ptr;return _emscripten_bind_VectorPairStringSharedPtrSerializerElement_size_0(self)};VectorPairStringSharedPtrSerializerElement.prototype["WRAPPED_GetString"]=VectorPairStringSharedPtrSerializerElement.prototype.WRAPPED_GetString=function(id){var self=this.ptr;if(id&&typeof id==="object")id=id.ptr;return UTF8ToString(_emscripten_bind_VectorPairStringSharedPtrSerializerElement_WRAPPED_GetString_1(self,id))};VectorPairStringSharedPtrSerializerElement.prototype["WRAPPED_GetSharedPtrSerializerElement"]=VectorPairStringSharedPtrSerializerElement.prototype.WRAPPED_GetSharedPtrSerializerElement=function(id){var self=this.ptr;if(id&&typeof id==="object")id=id.ptr;return wrapPointer(_emscripten_bind_VectorPairStringSharedPtrSerializerElement_WRAPPED_GetSharedPtrSerializerElement_1(self,id),SharedPtrSerializerElement)};VectorPairStringSharedPtrSerializerElement.prototype["__destroy__"]=VectorPairStringSharedPtrSerializerElement.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_VectorPairStringSharedPtrSerializerElement___destroy___0(self)};function ResourcesContainer(sourceType){if(sourceType&&typeof sourceType==="object")sourceType=sourceType.ptr;this.ptr=_emscripten_bind_ResourcesContainer_ResourcesContainer_1(sourceType);getCache(ResourcesContainer)[this.ptr]=this}ResourcesContainer.prototype=Object.create(WrapperObject.prototype);ResourcesContainer.prototype.constructor=ResourcesContainer;ResourcesContainer.prototype.__class__=ResourcesContainer;ResourcesContainer.__cache__={};Module["ResourcesContainer"]=ResourcesContainer;ResourcesContainer.prototype["GetSourceType"]=ResourcesContainer.prototype.GetSourceType=function(){var self=this.ptr;return _emscripten_bind_ResourcesContainer_GetSourceType_0(self)};ResourcesContainer.prototype["GetAllResourceNames"]=ResourcesContainer.prototype.GetAllResourceNames=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_ResourcesContainer_GetAllResourceNames_0(self),VectorString)};ResourcesContainer.prototype["FindFilesNotInResources"]=ResourcesContainer.prototype.FindFilesNotInResources=function(filesToCheck){var self=this.ptr;if(filesToCheck&&typeof filesToCheck==="object")filesToCheck=filesToCheck.ptr;return wrapPointer(_emscripten_bind_ResourcesContainer_FindFilesNotInResources_1(self,filesToCheck),VectorString)};ResourcesContainer.prototype["HasResource"]=ResourcesContainer.prototype.HasResource=function(name){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);return!!_emscripten_bind_ResourcesContainer_HasResource_1(self,name)};ResourcesContainer.prototype["GetResource"]=ResourcesContainer.prototype.GetResource=function(name){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);return wrapPointer(_emscripten_bind_ResourcesContainer_GetResource_1(self,name),Resource)};ResourcesContainer.prototype["GetResourceAt"]=ResourcesContainer.prototype.GetResourceAt=function(index){var self=this.ptr;if(index&&typeof index==="object")index=index.ptr;return wrapPointer(_emscripten_bind_ResourcesContainer_GetResourceAt_1(self,index),Resource)};ResourcesContainer.prototype["GetResourceNameWithOrigin"]=ResourcesContainer.prototype.GetResourceNameWithOrigin=function(originName,originIdentifier){var self=this.ptr;ensureCache.prepare();if(originName&&typeof originName==="object")originName=originName.ptr;else originName=ensureString(originName);if(originIdentifier&&typeof originIdentifier==="object")originIdentifier=originIdentifier.ptr;else originIdentifier=ensureString(originIdentifier);return UTF8ToString(_emscripten_bind_ResourcesContainer_GetResourceNameWithOrigin_2(self,originName,originIdentifier))};ResourcesContainer.prototype["GetResourceNamesWithFile"]=ResourcesContainer.prototype.GetResourceNamesWithFile=function(file){var self=this.ptr;ensureCache.prepare();if(file&&typeof file==="object")file=file.ptr;else file=ensureString(file);return wrapPointer(_emscripten_bind_ResourcesContainer_GetResourceNamesWithFile_1(self,file),VectorString)};ResourcesContainer.prototype["AddResource"]=ResourcesContainer.prototype.AddResource=function(res){var self=this.ptr;if(res&&typeof res==="object")res=res.ptr;return!!_emscripten_bind_ResourcesContainer_AddResource_1(self,res)};ResourcesContainer.prototype["RemoveResource"]=ResourcesContainer.prototype.RemoveResource=function(name){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);_emscripten_bind_ResourcesContainer_RemoveResource_1(self,name)};ResourcesContainer.prototype["RenameResource"]=ResourcesContainer.prototype.RenameResource=function(oldName,name){var self=this.ptr;ensureCache.prepare();if(oldName&&typeof oldName==="object")oldName=oldName.ptr;else oldName=ensureString(oldName);if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);_emscripten_bind_ResourcesContainer_RenameResource_2(self,oldName,name)};ResourcesContainer.prototype["GetResourcePosition"]=ResourcesContainer.prototype.GetResourcePosition=function(name){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);return _emscripten_bind_ResourcesContainer_GetResourcePosition_1(self,name)};ResourcesContainer.prototype["Count"]=ResourcesContainer.prototype.Count=function(){var self=this.ptr;return _emscripten_bind_ResourcesContainer_Count_0(self)};ResourcesContainer.prototype["MoveResourceUpInList"]=ResourcesContainer.prototype.MoveResourceUpInList=function(oldName){var self=this.ptr;ensureCache.prepare();if(oldName&&typeof oldName==="object")oldName=oldName.ptr;else oldName=ensureString(oldName);return!!_emscripten_bind_ResourcesContainer_MoveResourceUpInList_1(self,oldName)};ResourcesContainer.prototype["MoveResourceDownInList"]=ResourcesContainer.prototype.MoveResourceDownInList=function(oldName){var self=this.ptr;ensureCache.prepare();if(oldName&&typeof oldName==="object")oldName=oldName.ptr;else oldName=ensureString(oldName);return!!_emscripten_bind_ResourcesContainer_MoveResourceDownInList_1(self,oldName)};ResourcesContainer.prototype["MoveResource"]=ResourcesContainer.prototype.MoveResource=function(oldIndex,newIndex){var self=this.ptr;if(oldIndex&&typeof oldIndex==="object")oldIndex=oldIndex.ptr;if(newIndex&&typeof newIndex==="object")newIndex=newIndex.ptr;_emscripten_bind_ResourcesContainer_MoveResource_2(self,oldIndex,newIndex)};ResourcesContainer.prototype["STATIC_UnserializeResourceFrom"]=ResourcesContainer.prototype.STATIC_UnserializeResourceFrom=function(resource,resourceElement){var self=this.ptr;if(resource&&typeof resource==="object")resource=resource.ptr;if(resourceElement&&typeof resourceElement==="object")resourceElement=resourceElement.ptr;_emscripten_bind_ResourcesContainer_STATIC_UnserializeResourceFrom_2(self,resource,resourceElement)};ResourcesContainer.prototype["__destroy__"]=ResourcesContainer.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_ResourcesContainer___destroy___0(self)};function ResourcesContainersList(){throw"cannot construct a ResourcesContainersList, no constructor in IDL"}ResourcesContainersList.prototype=Object.create(WrapperObject.prototype);ResourcesContainersList.prototype.constructor=ResourcesContainersList;ResourcesContainersList.prototype.__class__=ResourcesContainersList;ResourcesContainersList.__cache__={};Module["ResourcesContainersList"]=ResourcesContainersList;ResourcesContainersList.prototype["HasResourceNamed"]=ResourcesContainersList.prototype.HasResourceNamed=function(name){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);return!!_emscripten_bind_ResourcesContainersList_HasResourceNamed_1(self,name)};ResourcesContainersList.prototype["GetResource"]=ResourcesContainersList.prototype.GetResource=function(name){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);return wrapPointer(_emscripten_bind_ResourcesContainersList_GetResource_1(self,name),Resource)};ResourcesContainersList.prototype["GetResourcesContainerFromResourceName"]=ResourcesContainersList.prototype.GetResourcesContainerFromResourceName=function(resourceName){var self=this.ptr;ensureCache.prepare();if(resourceName&&typeof resourceName==="object")resourceName=resourceName.ptr;else resourceName=ensureString(resourceName);return wrapPointer(_emscripten_bind_ResourcesContainersList_GetResourcesContainerFromResourceName_1(self,resourceName),ResourcesContainer)};ResourcesContainersList.prototype["GetResourcesContainer"]=ResourcesContainersList.prototype.GetResourcesContainer=function(index){var self=this.ptr;if(index&&typeof index==="object")index=index.ptr;return wrapPointer(_emscripten_bind_ResourcesContainersList_GetResourcesContainer_1(self,index),ResourcesContainer)};ResourcesContainersList.prototype["GetResourcesContainersCount"]=ResourcesContainersList.prototype.GetResourcesContainersCount=function(){var self=this.ptr;return _emscripten_bind_ResourcesContainersList_GetResourcesContainersCount_0(self)};ResourcesContainersList.prototype["__destroy__"]=ResourcesContainersList.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_ResourcesContainersList___destroy___0(self)};function ImageResource(){this.ptr=_emscripten_bind_ImageResource_ImageResource_0();getCache(ImageResource)[this.ptr]=this}ImageResource.prototype=Object.create(Resource.prototype);ImageResource.prototype.constructor=ImageResource;ImageResource.prototype.__class__=ImageResource;ImageResource.__cache__={};Module["ImageResource"]=ImageResource;ImageResource.prototype["IsSmooth"]=ImageResource.prototype.IsSmooth=function(){var self=this.ptr;return!!_emscripten_bind_ImageResource_IsSmooth_0(self)};ImageResource.prototype["SetSmooth"]=ImageResource.prototype.SetSmooth=function(enable){var self=this.ptr;if(enable&&typeof enable==="object")enable=enable.ptr;_emscripten_bind_ImageResource_SetSmooth_1(self,enable)};ImageResource.prototype["Clone"]=ImageResource.prototype.Clone=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_ImageResource_Clone_0(self),Resource)};ImageResource.prototype["SetName"]=ImageResource.prototype.SetName=function(name){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);_emscripten_bind_ImageResource_SetName_1(self,name)};ImageResource.prototype["GetName"]=ImageResource.prototype.GetName=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_ImageResource_GetName_0(self))};ImageResource.prototype["SetKind"]=ImageResource.prototype.SetKind=function(kind){var self=this.ptr;ensureCache.prepare();if(kind&&typeof kind==="object")kind=kind.ptr;else kind=ensureString(kind);_emscripten_bind_ImageResource_SetKind_1(self,kind)};ImageResource.prototype["GetKind"]=ImageResource.prototype.GetKind=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_ImageResource_GetKind_0(self))};ImageResource.prototype["IsUserAdded"]=ImageResource.prototype.IsUserAdded=function(){var self=this.ptr;return!!_emscripten_bind_ImageResource_IsUserAdded_0(self)};ImageResource.prototype["SetUserAdded"]=ImageResource.prototype.SetUserAdded=function(yes){var self=this.ptr;if(yes&&typeof yes==="object")yes=yes.ptr;_emscripten_bind_ImageResource_SetUserAdded_1(self,yes)};ImageResource.prototype["UseFile"]=ImageResource.prototype.UseFile=function(){var self=this.ptr;return!!_emscripten_bind_ImageResource_UseFile_0(self)};ImageResource.prototype["SetFile"]=ImageResource.prototype.SetFile=function(file){var self=this.ptr;ensureCache.prepare();if(file&&typeof file==="object")file=file.ptr;else file=ensureString(file);_emscripten_bind_ImageResource_SetFile_1(self,file)};ImageResource.prototype["GetFile"]=ImageResource.prototype.GetFile=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_ImageResource_GetFile_0(self))};ImageResource.prototype["SetMetadata"]=ImageResource.prototype.SetMetadata=function(metadata){var self=this.ptr;ensureCache.prepare();if(metadata&&typeof metadata==="object")metadata=metadata.ptr;else metadata=ensureString(metadata);_emscripten_bind_ImageResource_SetMetadata_1(self,metadata)};ImageResource.prototype["GetMetadata"]=ImageResource.prototype.GetMetadata=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_ImageResource_GetMetadata_0(self))};ImageResource.prototype["SetOrigin"]=ImageResource.prototype.SetOrigin=function(originName,originIdentifier){var self=this.ptr;ensureCache.prepare();if(originName&&typeof originName==="object")originName=originName.ptr;else originName=ensureString(originName);if(originIdentifier&&typeof originIdentifier==="object")originIdentifier=originIdentifier.ptr;else originIdentifier=ensureString(originIdentifier);_emscripten_bind_ImageResource_SetOrigin_2(self,originName,originIdentifier)};ImageResource.prototype["GetOriginName"]=ImageResource.prototype.GetOriginName=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_ImageResource_GetOriginName_0(self))};ImageResource.prototype["GetOriginIdentifier"]=ImageResource.prototype.GetOriginIdentifier=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_ImageResource_GetOriginIdentifier_0(self))};ImageResource.prototype["GetProperties"]=ImageResource.prototype.GetProperties=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_ImageResource_GetProperties_0(self),MapStringPropertyDescriptor)};ImageResource.prototype["UpdateProperty"]=ImageResource.prototype.UpdateProperty=function(name,value){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);if(value&&typeof value==="object")value=value.ptr;else value=ensureString(value);return!!_emscripten_bind_ImageResource_UpdateProperty_2(self,name,value)};ImageResource.prototype["SerializeTo"]=ImageResource.prototype.SerializeTo=function(element){var self=this.ptr;if(element&&typeof element==="object")element=element.ptr;_emscripten_bind_ImageResource_SerializeTo_1(self,element)};ImageResource.prototype["UnserializeFrom"]=ImageResource.prototype.UnserializeFrom=function(element){var self=this.ptr;if(element&&typeof element==="object")element=element.ptr;_emscripten_bind_ImageResource_UnserializeFrom_1(self,element)};ImageResource.prototype["__destroy__"]=ImageResource.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_ImageResource___destroy___0(self)};function AudioResource(){this.ptr=_emscripten_bind_AudioResource_AudioResource_0();getCache(AudioResource)[this.ptr]=this}AudioResource.prototype=Object.create(Resource.prototype);AudioResource.prototype.constructor=AudioResource;AudioResource.prototype.__class__=AudioResource;AudioResource.__cache__={};Module["AudioResource"]=AudioResource;AudioResource.prototype["Clone"]=AudioResource.prototype.Clone=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_AudioResource_Clone_0(self),Resource)};AudioResource.prototype["SetName"]=AudioResource.prototype.SetName=function(name){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);_emscripten_bind_AudioResource_SetName_1(self,name)};AudioResource.prototype["GetName"]=AudioResource.prototype.GetName=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_AudioResource_GetName_0(self))};AudioResource.prototype["SetKind"]=AudioResource.prototype.SetKind=function(kind){var self=this.ptr;ensureCache.prepare();if(kind&&typeof kind==="object")kind=kind.ptr;else kind=ensureString(kind);_emscripten_bind_AudioResource_SetKind_1(self,kind)};AudioResource.prototype["GetKind"]=AudioResource.prototype.GetKind=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_AudioResource_GetKind_0(self))};AudioResource.prototype["IsUserAdded"]=AudioResource.prototype.IsUserAdded=function(){var self=this.ptr;return!!_emscripten_bind_AudioResource_IsUserAdded_0(self)};AudioResource.prototype["SetUserAdded"]=AudioResource.prototype.SetUserAdded=function(yes){var self=this.ptr;if(yes&&typeof yes==="object")yes=yes.ptr;_emscripten_bind_AudioResource_SetUserAdded_1(self,yes)};AudioResource.prototype["UseFile"]=AudioResource.prototype.UseFile=function(){var self=this.ptr;return!!_emscripten_bind_AudioResource_UseFile_0(self)};AudioResource.prototype["SetFile"]=AudioResource.prototype.SetFile=function(file){var self=this.ptr;ensureCache.prepare();if(file&&typeof file==="object")file=file.ptr;else file=ensureString(file);_emscripten_bind_AudioResource_SetFile_1(self,file)};AudioResource.prototype["GetFile"]=AudioResource.prototype.GetFile=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_AudioResource_GetFile_0(self))};AudioResource.prototype["SetMetadata"]=AudioResource.prototype.SetMetadata=function(metadata){var self=this.ptr;ensureCache.prepare();if(metadata&&typeof metadata==="object")metadata=metadata.ptr;else metadata=ensureString(metadata);_emscripten_bind_AudioResource_SetMetadata_1(self,metadata)};AudioResource.prototype["GetMetadata"]=AudioResource.prototype.GetMetadata=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_AudioResource_GetMetadata_0(self))};AudioResource.prototype["SetOrigin"]=AudioResource.prototype.SetOrigin=function(originName,originIdentifier){var self=this.ptr;ensureCache.prepare();if(originName&&typeof originName==="object")originName=originName.ptr;else originName=ensureString(originName);if(originIdentifier&&typeof originIdentifier==="object")originIdentifier=originIdentifier.ptr;else originIdentifier=ensureString(originIdentifier);_emscripten_bind_AudioResource_SetOrigin_2(self,originName,originIdentifier)};AudioResource.prototype["GetOriginName"]=AudioResource.prototype.GetOriginName=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_AudioResource_GetOriginName_0(self))};AudioResource.prototype["GetOriginIdentifier"]=AudioResource.prototype.GetOriginIdentifier=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_AudioResource_GetOriginIdentifier_0(self))};AudioResource.prototype["GetProperties"]=AudioResource.prototype.GetProperties=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_AudioResource_GetProperties_0(self),MapStringPropertyDescriptor)};AudioResource.prototype["UpdateProperty"]=AudioResource.prototype.UpdateProperty=function(name,value){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);if(value&&typeof value==="object")value=value.ptr;else value=ensureString(value);return!!_emscripten_bind_AudioResource_UpdateProperty_2(self,name,value)};AudioResource.prototype["SerializeTo"]=AudioResource.prototype.SerializeTo=function(element){var self=this.ptr;if(element&&typeof element==="object")element=element.ptr;_emscripten_bind_AudioResource_SerializeTo_1(self,element)};AudioResource.prototype["UnserializeFrom"]=AudioResource.prototype.UnserializeFrom=function(element){var self=this.ptr;if(element&&typeof element==="object")element=element.ptr;_emscripten_bind_AudioResource_UnserializeFrom_1(self,element)};AudioResource.prototype["__destroy__"]=AudioResource.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_AudioResource___destroy___0(self)};function FontResource(){this.ptr=_emscripten_bind_FontResource_FontResource_0();getCache(FontResource)[this.ptr]=this}FontResource.prototype=Object.create(Resource.prototype);FontResource.prototype.constructor=FontResource;FontResource.prototype.__class__=FontResource;FontResource.__cache__={};Module["FontResource"]=FontResource;FontResource.prototype["Clone"]=FontResource.prototype.Clone=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_FontResource_Clone_0(self),Resource)};FontResource.prototype["SetName"]=FontResource.prototype.SetName=function(name){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);_emscripten_bind_FontResource_SetName_1(self,name)};FontResource.prototype["GetName"]=FontResource.prototype.GetName=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_FontResource_GetName_0(self))};FontResource.prototype["SetKind"]=FontResource.prototype.SetKind=function(kind){var self=this.ptr;ensureCache.prepare();if(kind&&typeof kind==="object")kind=kind.ptr;else kind=ensureString(kind);_emscripten_bind_FontResource_SetKind_1(self,kind)};FontResource.prototype["GetKind"]=FontResource.prototype.GetKind=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_FontResource_GetKind_0(self))};FontResource.prototype["IsUserAdded"]=FontResource.prototype.IsUserAdded=function(){var self=this.ptr;return!!_emscripten_bind_FontResource_IsUserAdded_0(self)};FontResource.prototype["SetUserAdded"]=FontResource.prototype.SetUserAdded=function(yes){var self=this.ptr;if(yes&&typeof yes==="object")yes=yes.ptr;_emscripten_bind_FontResource_SetUserAdded_1(self,yes)};FontResource.prototype["UseFile"]=FontResource.prototype.UseFile=function(){var self=this.ptr;return!!_emscripten_bind_FontResource_UseFile_0(self)};FontResource.prototype["SetFile"]=FontResource.prototype.SetFile=function(file){var self=this.ptr;ensureCache.prepare();if(file&&typeof file==="object")file=file.ptr;else file=ensureString(file);_emscripten_bind_FontResource_SetFile_1(self,file)};FontResource.prototype["GetFile"]=FontResource.prototype.GetFile=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_FontResource_GetFile_0(self))};FontResource.prototype["SetMetadata"]=FontResource.prototype.SetMetadata=function(metadata){var self=this.ptr;ensureCache.prepare();if(metadata&&typeof metadata==="object")metadata=metadata.ptr;else metadata=ensureString(metadata);_emscripten_bind_FontResource_SetMetadata_1(self,metadata)};FontResource.prototype["GetMetadata"]=FontResource.prototype.GetMetadata=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_FontResource_GetMetadata_0(self))};FontResource.prototype["SetOrigin"]=FontResource.prototype.SetOrigin=function(originName,originIdentifier){var self=this.ptr;ensureCache.prepare();if(originName&&typeof originName==="object")originName=originName.ptr;else originName=ensureString(originName);if(originIdentifier&&typeof originIdentifier==="object")originIdentifier=originIdentifier.ptr;else originIdentifier=ensureString(originIdentifier);_emscripten_bind_FontResource_SetOrigin_2(self,originName,originIdentifier)};FontResource.prototype["GetOriginName"]=FontResource.prototype.GetOriginName=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_FontResource_GetOriginName_0(self))};FontResource.prototype["GetOriginIdentifier"]=FontResource.prototype.GetOriginIdentifier=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_FontResource_GetOriginIdentifier_0(self))};FontResource.prototype["GetProperties"]=FontResource.prototype.GetProperties=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_FontResource_GetProperties_0(self),MapStringPropertyDescriptor)};FontResource.prototype["UpdateProperty"]=FontResource.prototype.UpdateProperty=function(name,value){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);if(value&&typeof value==="object")value=value.ptr;else value=ensureString(value);return!!_emscripten_bind_FontResource_UpdateProperty_2(self,name,value)};FontResource.prototype["SerializeTo"]=FontResource.prototype.SerializeTo=function(element){var self=this.ptr;if(element&&typeof element==="object")element=element.ptr;_emscripten_bind_FontResource_SerializeTo_1(self,element)};FontResource.prototype["UnserializeFrom"]=FontResource.prototype.UnserializeFrom=function(element){var self=this.ptr;if(element&&typeof element==="object")element=element.ptr;_emscripten_bind_FontResource_UnserializeFrom_1(self,element)};FontResource.prototype["__destroy__"]=FontResource.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_FontResource___destroy___0(self)};function BitmapFontResource(){this.ptr=_emscripten_bind_BitmapFontResource_BitmapFontResource_0();getCache(BitmapFontResource)[this.ptr]=this}BitmapFontResource.prototype=Object.create(Resource.prototype);BitmapFontResource.prototype.constructor=BitmapFontResource;BitmapFontResource.prototype.__class__=BitmapFontResource;BitmapFontResource.__cache__={};Module["BitmapFontResource"]=BitmapFontResource;BitmapFontResource.prototype["Clone"]=BitmapFontResource.prototype.Clone=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_BitmapFontResource_Clone_0(self),Resource)};BitmapFontResource.prototype["SetName"]=BitmapFontResource.prototype.SetName=function(name){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);_emscripten_bind_BitmapFontResource_SetName_1(self,name)};BitmapFontResource.prototype["GetName"]=BitmapFontResource.prototype.GetName=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_BitmapFontResource_GetName_0(self))};BitmapFontResource.prototype["SetKind"]=BitmapFontResource.prototype.SetKind=function(kind){var self=this.ptr;ensureCache.prepare();if(kind&&typeof kind==="object")kind=kind.ptr;else kind=ensureString(kind);_emscripten_bind_BitmapFontResource_SetKind_1(self,kind)};BitmapFontResource.prototype["GetKind"]=BitmapFontResource.prototype.GetKind=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_BitmapFontResource_GetKind_0(self))};BitmapFontResource.prototype["IsUserAdded"]=BitmapFontResource.prototype.IsUserAdded=function(){var self=this.ptr;return!!_emscripten_bind_BitmapFontResource_IsUserAdded_0(self)};BitmapFontResource.prototype["SetUserAdded"]=BitmapFontResource.prototype.SetUserAdded=function(yes){var self=this.ptr;if(yes&&typeof yes==="object")yes=yes.ptr;_emscripten_bind_BitmapFontResource_SetUserAdded_1(self,yes)};BitmapFontResource.prototype["UseFile"]=BitmapFontResource.prototype.UseFile=function(){var self=this.ptr;return!!_emscripten_bind_BitmapFontResource_UseFile_0(self)};BitmapFontResource.prototype["SetFile"]=BitmapFontResource.prototype.SetFile=function(file){var self=this.ptr;ensureCache.prepare();if(file&&typeof file==="object")file=file.ptr;else file=ensureString(file);_emscripten_bind_BitmapFontResource_SetFile_1(self,file)};BitmapFontResource.prototype["GetFile"]=BitmapFontResource.prototype.GetFile=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_BitmapFontResource_GetFile_0(self))};BitmapFontResource.prototype["SetMetadata"]=BitmapFontResource.prototype.SetMetadata=function(metadata){var self=this.ptr;ensureCache.prepare();if(metadata&&typeof metadata==="object")metadata=metadata.ptr;else metadata=ensureString(metadata);_emscripten_bind_BitmapFontResource_SetMetadata_1(self,metadata)};BitmapFontResource.prototype["GetMetadata"]=BitmapFontResource.prototype.GetMetadata=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_BitmapFontResource_GetMetadata_0(self))};BitmapFontResource.prototype["SetOrigin"]=BitmapFontResource.prototype.SetOrigin=function(originName,originIdentifier){var self=this.ptr;ensureCache.prepare();if(originName&&typeof originName==="object")originName=originName.ptr;else originName=ensureString(originName);if(originIdentifier&&typeof originIdentifier==="object")originIdentifier=originIdentifier.ptr;else originIdentifier=ensureString(originIdentifier);_emscripten_bind_BitmapFontResource_SetOrigin_2(self,originName,originIdentifier)};BitmapFontResource.prototype["GetOriginName"]=BitmapFontResource.prototype.GetOriginName=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_BitmapFontResource_GetOriginName_0(self))};BitmapFontResource.prototype["GetOriginIdentifier"]=BitmapFontResource.prototype.GetOriginIdentifier=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_BitmapFontResource_GetOriginIdentifier_0(self))};BitmapFontResource.prototype["GetProperties"]=BitmapFontResource.prototype.GetProperties=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_BitmapFontResource_GetProperties_0(self),MapStringPropertyDescriptor)};BitmapFontResource.prototype["UpdateProperty"]=BitmapFontResource.prototype.UpdateProperty=function(name,value){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);if(value&&typeof value==="object")value=value.ptr;else value=ensureString(value);return!!_emscripten_bind_BitmapFontResource_UpdateProperty_2(self,name,value)};BitmapFontResource.prototype["SerializeTo"]=BitmapFontResource.prototype.SerializeTo=function(element){var self=this.ptr;if(element&&typeof element==="object")element=element.ptr;_emscripten_bind_BitmapFontResource_SerializeTo_1(self,element)};BitmapFontResource.prototype["UnserializeFrom"]=BitmapFontResource.prototype.UnserializeFrom=function(element){var self=this.ptr;if(element&&typeof element==="object")element=element.ptr;_emscripten_bind_BitmapFontResource_UnserializeFrom_1(self,element)};BitmapFontResource.prototype["__destroy__"]=BitmapFontResource.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_BitmapFontResource___destroy___0(self)};function VideoResource(){this.ptr=_emscripten_bind_VideoResource_VideoResource_0();getCache(VideoResource)[this.ptr]=this}VideoResource.prototype=Object.create(Resource.prototype);VideoResource.prototype.constructor=VideoResource;VideoResource.prototype.__class__=VideoResource;VideoResource.__cache__={};Module["VideoResource"]=VideoResource;VideoResource.prototype["Clone"]=VideoResource.prototype.Clone=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_VideoResource_Clone_0(self),Resource)};VideoResource.prototype["SetName"]=VideoResource.prototype.SetName=function(name){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);_emscripten_bind_VideoResource_SetName_1(self,name)};VideoResource.prototype["GetName"]=VideoResource.prototype.GetName=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_VideoResource_GetName_0(self))};VideoResource.prototype["SetKind"]=VideoResource.prototype.SetKind=function(kind){var self=this.ptr;ensureCache.prepare();if(kind&&typeof kind==="object")kind=kind.ptr;else kind=ensureString(kind);_emscripten_bind_VideoResource_SetKind_1(self,kind)};VideoResource.prototype["GetKind"]=VideoResource.prototype.GetKind=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_VideoResource_GetKind_0(self))};VideoResource.prototype["IsUserAdded"]=VideoResource.prototype.IsUserAdded=function(){var self=this.ptr;return!!_emscripten_bind_VideoResource_IsUserAdded_0(self)};VideoResource.prototype["SetUserAdded"]=VideoResource.prototype.SetUserAdded=function(yes){var self=this.ptr;if(yes&&typeof yes==="object")yes=yes.ptr;_emscripten_bind_VideoResource_SetUserAdded_1(self,yes)};VideoResource.prototype["UseFile"]=VideoResource.prototype.UseFile=function(){var self=this.ptr;return!!_emscripten_bind_VideoResource_UseFile_0(self)};VideoResource.prototype["SetFile"]=VideoResource.prototype.SetFile=function(file){var self=this.ptr;ensureCache.prepare();if(file&&typeof file==="object")file=file.ptr;else file=ensureString(file);_emscripten_bind_VideoResource_SetFile_1(self,file)};VideoResource.prototype["GetFile"]=VideoResource.prototype.GetFile=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_VideoResource_GetFile_0(self))};VideoResource.prototype["SetMetadata"]=VideoResource.prototype.SetMetadata=function(metadata){var self=this.ptr;ensureCache.prepare();if(metadata&&typeof metadata==="object")metadata=metadata.ptr;else metadata=ensureString(metadata);_emscripten_bind_VideoResource_SetMetadata_1(self,metadata)};VideoResource.prototype["GetMetadata"]=VideoResource.prototype.GetMetadata=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_VideoResource_GetMetadata_0(self))};VideoResource.prototype["SetOrigin"]=VideoResource.prototype.SetOrigin=function(originName,originIdentifier){var self=this.ptr;ensureCache.prepare();if(originName&&typeof originName==="object")originName=originName.ptr;else originName=ensureString(originName);if(originIdentifier&&typeof originIdentifier==="object")originIdentifier=originIdentifier.ptr;else originIdentifier=ensureString(originIdentifier);_emscripten_bind_VideoResource_SetOrigin_2(self,originName,originIdentifier)};VideoResource.prototype["GetOriginName"]=VideoResource.prototype.GetOriginName=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_VideoResource_GetOriginName_0(self))};VideoResource.prototype["GetOriginIdentifier"]=VideoResource.prototype.GetOriginIdentifier=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_VideoResource_GetOriginIdentifier_0(self))};VideoResource.prototype["GetProperties"]=VideoResource.prototype.GetProperties=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_VideoResource_GetProperties_0(self),MapStringPropertyDescriptor)};VideoResource.prototype["UpdateProperty"]=VideoResource.prototype.UpdateProperty=function(name,value){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);if(value&&typeof value==="object")value=value.ptr;else value=ensureString(value);return!!_emscripten_bind_VideoResource_UpdateProperty_2(self,name,value)};VideoResource.prototype["SerializeTo"]=VideoResource.prototype.SerializeTo=function(element){var self=this.ptr;if(element&&typeof element==="object")element=element.ptr;_emscripten_bind_VideoResource_SerializeTo_1(self,element)};VideoResource.prototype["UnserializeFrom"]=VideoResource.prototype.UnserializeFrom=function(element){var self=this.ptr;if(element&&typeof element==="object")element=element.ptr;_emscripten_bind_VideoResource_UnserializeFrom_1(self,element)};VideoResource.prototype["__destroy__"]=VideoResource.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_VideoResource___destroy___0(self)};function SpineResource(){this.ptr=_emscripten_bind_SpineResource_SpineResource_0();getCache(SpineResource)[this.ptr]=this}SpineResource.prototype=Object.create(JsonResource.prototype);SpineResource.prototype.constructor=SpineResource;SpineResource.prototype.__class__=SpineResource;SpineResource.__cache__={};Module["SpineResource"]=SpineResource;SpineResource.prototype["Clone"]=SpineResource.prototype.Clone=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_SpineResource_Clone_0(self),Resource)};SpineResource.prototype["SetName"]=SpineResource.prototype.SetName=function(name){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);_emscripten_bind_SpineResource_SetName_1(self,name)};SpineResource.prototype["GetName"]=SpineResource.prototype.GetName=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_SpineResource_GetName_0(self))};SpineResource.prototype["SetKind"]=SpineResource.prototype.SetKind=function(kind){var self=this.ptr;ensureCache.prepare();if(kind&&typeof kind==="object")kind=kind.ptr;else kind=ensureString(kind);_emscripten_bind_SpineResource_SetKind_1(self,kind)};SpineResource.prototype["GetKind"]=SpineResource.prototype.GetKind=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_SpineResource_GetKind_0(self))};SpineResource.prototype["IsUserAdded"]=SpineResource.prototype.IsUserAdded=function(){var self=this.ptr;return!!_emscripten_bind_SpineResource_IsUserAdded_0(self)};SpineResource.prototype["SetUserAdded"]=SpineResource.prototype.SetUserAdded=function(yes){var self=this.ptr;if(yes&&typeof yes==="object")yes=yes.ptr;_emscripten_bind_SpineResource_SetUserAdded_1(self,yes)};SpineResource.prototype["UseFile"]=SpineResource.prototype.UseFile=function(){var self=this.ptr;return!!_emscripten_bind_SpineResource_UseFile_0(self)};SpineResource.prototype["SetFile"]=SpineResource.prototype.SetFile=function(file){var self=this.ptr;ensureCache.prepare();if(file&&typeof file==="object")file=file.ptr;else file=ensureString(file);_emscripten_bind_SpineResource_SetFile_1(self,file)};SpineResource.prototype["GetFile"]=SpineResource.prototype.GetFile=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_SpineResource_GetFile_0(self))};SpineResource.prototype["SetMetadata"]=SpineResource.prototype.SetMetadata=function(metadata){var self=this.ptr;ensureCache.prepare();if(metadata&&typeof metadata==="object")metadata=metadata.ptr;else metadata=ensureString(metadata);_emscripten_bind_SpineResource_SetMetadata_1(self,metadata)};SpineResource.prototype["GetMetadata"]=SpineResource.prototype.GetMetadata=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_SpineResource_GetMetadata_0(self))};SpineResource.prototype["SetOrigin"]=SpineResource.prototype.SetOrigin=function(originName,originIdentifier){var self=this.ptr;ensureCache.prepare();if(originName&&typeof originName==="object")originName=originName.ptr;else originName=ensureString(originName);if(originIdentifier&&typeof originIdentifier==="object")originIdentifier=originIdentifier.ptr;else originIdentifier=ensureString(originIdentifier);_emscripten_bind_SpineResource_SetOrigin_2(self,originName,originIdentifier)};SpineResource.prototype["GetOriginName"]=SpineResource.prototype.GetOriginName=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_SpineResource_GetOriginName_0(self))};SpineResource.prototype["GetOriginIdentifier"]=SpineResource.prototype.GetOriginIdentifier=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_SpineResource_GetOriginIdentifier_0(self))};SpineResource.prototype["GetProperties"]=SpineResource.prototype.GetProperties=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_SpineResource_GetProperties_0(self),MapStringPropertyDescriptor)};SpineResource.prototype["UpdateProperty"]=SpineResource.prototype.UpdateProperty=function(name,value){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);if(value&&typeof value==="object")value=value.ptr;else value=ensureString(value);return!!_emscripten_bind_SpineResource_UpdateProperty_2(self,name,value)};SpineResource.prototype["SerializeTo"]=SpineResource.prototype.SerializeTo=function(element){var self=this.ptr;if(element&&typeof element==="object")element=element.ptr;_emscripten_bind_SpineResource_SerializeTo_1(self,element)};SpineResource.prototype["UnserializeFrom"]=SpineResource.prototype.UnserializeFrom=function(element){var self=this.ptr;if(element&&typeof element==="object")element=element.ptr;_emscripten_bind_SpineResource_UnserializeFrom_1(self,element)};SpineResource.prototype["__destroy__"]=SpineResource.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_SpineResource___destroy___0(self)};function TilemapResource(){this.ptr=_emscripten_bind_TilemapResource_TilemapResource_0();getCache(TilemapResource)[this.ptr]=this}TilemapResource.prototype=Object.create(Resource.prototype);TilemapResource.prototype.constructor=TilemapResource;TilemapResource.prototype.__class__=TilemapResource;TilemapResource.__cache__={};Module["TilemapResource"]=TilemapResource;TilemapResource.prototype["Clone"]=TilemapResource.prototype.Clone=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_TilemapResource_Clone_0(self),Resource)};TilemapResource.prototype["SetName"]=TilemapResource.prototype.SetName=function(name){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);_emscripten_bind_TilemapResource_SetName_1(self,name)};TilemapResource.prototype["GetName"]=TilemapResource.prototype.GetName=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_TilemapResource_GetName_0(self))};TilemapResource.prototype["SetKind"]=TilemapResource.prototype.SetKind=function(kind){var self=this.ptr;ensureCache.prepare();if(kind&&typeof kind==="object")kind=kind.ptr;else kind=ensureString(kind);_emscripten_bind_TilemapResource_SetKind_1(self,kind)};TilemapResource.prototype["GetKind"]=TilemapResource.prototype.GetKind=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_TilemapResource_GetKind_0(self))};TilemapResource.prototype["IsUserAdded"]=TilemapResource.prototype.IsUserAdded=function(){var self=this.ptr;return!!_emscripten_bind_TilemapResource_IsUserAdded_0(self)};TilemapResource.prototype["SetUserAdded"]=TilemapResource.prototype.SetUserAdded=function(yes){var self=this.ptr;if(yes&&typeof yes==="object")yes=yes.ptr;_emscripten_bind_TilemapResource_SetUserAdded_1(self,yes)};TilemapResource.prototype["UseFile"]=TilemapResource.prototype.UseFile=function(){var self=this.ptr;return!!_emscripten_bind_TilemapResource_UseFile_0(self)};TilemapResource.prototype["SetFile"]=TilemapResource.prototype.SetFile=function(file){var self=this.ptr;ensureCache.prepare();if(file&&typeof file==="object")file=file.ptr;else file=ensureString(file);_emscripten_bind_TilemapResource_SetFile_1(self,file)};TilemapResource.prototype["GetFile"]=TilemapResource.prototype.GetFile=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_TilemapResource_GetFile_0(self))};TilemapResource.prototype["SetMetadata"]=TilemapResource.prototype.SetMetadata=function(metadata){var self=this.ptr;ensureCache.prepare();if(metadata&&typeof metadata==="object")metadata=metadata.ptr;else metadata=ensureString(metadata);_emscripten_bind_TilemapResource_SetMetadata_1(self,metadata)};TilemapResource.prototype["GetMetadata"]=TilemapResource.prototype.GetMetadata=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_TilemapResource_GetMetadata_0(self))};TilemapResource.prototype["SetOrigin"]=TilemapResource.prototype.SetOrigin=function(originName,originIdentifier){var self=this.ptr;ensureCache.prepare();if(originName&&typeof originName==="object")originName=originName.ptr;else originName=ensureString(originName);if(originIdentifier&&typeof originIdentifier==="object")originIdentifier=originIdentifier.ptr;else originIdentifier=ensureString(originIdentifier);_emscripten_bind_TilemapResource_SetOrigin_2(self,originName,originIdentifier)};TilemapResource.prototype["GetOriginName"]=TilemapResource.prototype.GetOriginName=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_TilemapResource_GetOriginName_0(self))};TilemapResource.prototype["GetOriginIdentifier"]=TilemapResource.prototype.GetOriginIdentifier=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_TilemapResource_GetOriginIdentifier_0(self))};TilemapResource.prototype["GetProperties"]=TilemapResource.prototype.GetProperties=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_TilemapResource_GetProperties_0(self),MapStringPropertyDescriptor)};TilemapResource.prototype["UpdateProperty"]=TilemapResource.prototype.UpdateProperty=function(name,value){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);if(value&&typeof value==="object")value=value.ptr;else value=ensureString(value);return!!_emscripten_bind_TilemapResource_UpdateProperty_2(self,name,value)};TilemapResource.prototype["SerializeTo"]=TilemapResource.prototype.SerializeTo=function(element){var self=this.ptr;if(element&&typeof element==="object")element=element.ptr;_emscripten_bind_TilemapResource_SerializeTo_1(self,element)};TilemapResource.prototype["UnserializeFrom"]=TilemapResource.prototype.UnserializeFrom=function(element){var self=this.ptr;if(element&&typeof element==="object")element=element.ptr;_emscripten_bind_TilemapResource_UnserializeFrom_1(self,element)};TilemapResource.prototype["__destroy__"]=TilemapResource.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_TilemapResource___destroy___0(self)};function TilesetResource(){this.ptr=_emscripten_bind_TilesetResource_TilesetResource_0();getCache(TilesetResource)[this.ptr]=this}TilesetResource.prototype=Object.create(Resource.prototype);TilesetResource.prototype.constructor=TilesetResource;TilesetResource.prototype.__class__=TilesetResource;TilesetResource.__cache__={};Module["TilesetResource"]=TilesetResource;TilesetResource.prototype["Clone"]=TilesetResource.prototype.Clone=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_TilesetResource_Clone_0(self),Resource)};TilesetResource.prototype["SetName"]=TilesetResource.prototype.SetName=function(name){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);_emscripten_bind_TilesetResource_SetName_1(self,name)};TilesetResource.prototype["GetName"]=TilesetResource.prototype.GetName=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_TilesetResource_GetName_0(self))};TilesetResource.prototype["SetKind"]=TilesetResource.prototype.SetKind=function(kind){var self=this.ptr;ensureCache.prepare();if(kind&&typeof kind==="object")kind=kind.ptr;else kind=ensureString(kind);_emscripten_bind_TilesetResource_SetKind_1(self,kind)};TilesetResource.prototype["GetKind"]=TilesetResource.prototype.GetKind=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_TilesetResource_GetKind_0(self))};TilesetResource.prototype["IsUserAdded"]=TilesetResource.prototype.IsUserAdded=function(){var self=this.ptr;return!!_emscripten_bind_TilesetResource_IsUserAdded_0(self)};TilesetResource.prototype["SetUserAdded"]=TilesetResource.prototype.SetUserAdded=function(yes){var self=this.ptr;if(yes&&typeof yes==="object")yes=yes.ptr;_emscripten_bind_TilesetResource_SetUserAdded_1(self,yes)};TilesetResource.prototype["UseFile"]=TilesetResource.prototype.UseFile=function(){var self=this.ptr;return!!_emscripten_bind_TilesetResource_UseFile_0(self)};TilesetResource.prototype["SetFile"]=TilesetResource.prototype.SetFile=function(file){var self=this.ptr;ensureCache.prepare();if(file&&typeof file==="object")file=file.ptr;else file=ensureString(file);_emscripten_bind_TilesetResource_SetFile_1(self,file)};TilesetResource.prototype["GetFile"]=TilesetResource.prototype.GetFile=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_TilesetResource_GetFile_0(self))};TilesetResource.prototype["SetMetadata"]=TilesetResource.prototype.SetMetadata=function(metadata){var self=this.ptr;ensureCache.prepare();if(metadata&&typeof metadata==="object")metadata=metadata.ptr;else metadata=ensureString(metadata);_emscripten_bind_TilesetResource_SetMetadata_1(self,metadata)};TilesetResource.prototype["GetMetadata"]=TilesetResource.prototype.GetMetadata=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_TilesetResource_GetMetadata_0(self))};TilesetResource.prototype["SetOrigin"]=TilesetResource.prototype.SetOrigin=function(originName,originIdentifier){var self=this.ptr;ensureCache.prepare();if(originName&&typeof originName==="object")originName=originName.ptr;else originName=ensureString(originName);if(originIdentifier&&typeof originIdentifier==="object")originIdentifier=originIdentifier.ptr;else originIdentifier=ensureString(originIdentifier);_emscripten_bind_TilesetResource_SetOrigin_2(self,originName,originIdentifier)};TilesetResource.prototype["GetOriginName"]=TilesetResource.prototype.GetOriginName=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_TilesetResource_GetOriginName_0(self))};TilesetResource.prototype["GetOriginIdentifier"]=TilesetResource.prototype.GetOriginIdentifier=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_TilesetResource_GetOriginIdentifier_0(self))};TilesetResource.prototype["GetProperties"]=TilesetResource.prototype.GetProperties=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_TilesetResource_GetProperties_0(self),MapStringPropertyDescriptor)};TilesetResource.prototype["UpdateProperty"]=TilesetResource.prototype.UpdateProperty=function(name,value){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);if(value&&typeof value==="object")value=value.ptr;else value=ensureString(value);return!!_emscripten_bind_TilesetResource_UpdateProperty_2(self,name,value)};TilesetResource.prototype["SerializeTo"]=TilesetResource.prototype.SerializeTo=function(element){var self=this.ptr;if(element&&typeof element==="object")element=element.ptr;_emscripten_bind_TilesetResource_SerializeTo_1(self,element)};TilesetResource.prototype["UnserializeFrom"]=TilesetResource.prototype.UnserializeFrom=function(element){var self=this.ptr;if(element&&typeof element==="object")element=element.ptr;_emscripten_bind_TilesetResource_UnserializeFrom_1(self,element)};TilesetResource.prototype["__destroy__"]=TilesetResource.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_TilesetResource___destroy___0(self)};function Model3DResource(){this.ptr=_emscripten_bind_Model3DResource_Model3DResource_0();getCache(Model3DResource)[this.ptr]=this}Model3DResource.prototype=Object.create(Resource.prototype);Model3DResource.prototype.constructor=Model3DResource;Model3DResource.prototype.__class__=Model3DResource;Model3DResource.__cache__={};Module["Model3DResource"]=Model3DResource;Model3DResource.prototype["Clone"]=Model3DResource.prototype.Clone=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_Model3DResource_Clone_0(self),Resource)};Model3DResource.prototype["SetName"]=Model3DResource.prototype.SetName=function(name){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);_emscripten_bind_Model3DResource_SetName_1(self,name)};Model3DResource.prototype["GetName"]=Model3DResource.prototype.GetName=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_Model3DResource_GetName_0(self))};Model3DResource.prototype["SetKind"]=Model3DResource.prototype.SetKind=function(kind){var self=this.ptr;ensureCache.prepare();if(kind&&typeof kind==="object")kind=kind.ptr;else kind=ensureString(kind);_emscripten_bind_Model3DResource_SetKind_1(self,kind)};Model3DResource.prototype["GetKind"]=Model3DResource.prototype.GetKind=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_Model3DResource_GetKind_0(self))};Model3DResource.prototype["IsUserAdded"]=Model3DResource.prototype.IsUserAdded=function(){var self=this.ptr;return!!_emscripten_bind_Model3DResource_IsUserAdded_0(self)};Model3DResource.prototype["SetUserAdded"]=Model3DResource.prototype.SetUserAdded=function(yes){var self=this.ptr;if(yes&&typeof yes==="object")yes=yes.ptr;_emscripten_bind_Model3DResource_SetUserAdded_1(self,yes)};Model3DResource.prototype["UseFile"]=Model3DResource.prototype.UseFile=function(){var self=this.ptr;return!!_emscripten_bind_Model3DResource_UseFile_0(self)};Model3DResource.prototype["SetFile"]=Model3DResource.prototype.SetFile=function(file){var self=this.ptr;ensureCache.prepare();if(file&&typeof file==="object")file=file.ptr;else file=ensureString(file);_emscripten_bind_Model3DResource_SetFile_1(self,file)};Model3DResource.prototype["GetFile"]=Model3DResource.prototype.GetFile=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_Model3DResource_GetFile_0(self))};Model3DResource.prototype["SetMetadata"]=Model3DResource.prototype.SetMetadata=function(metadata){var self=this.ptr;ensureCache.prepare();if(metadata&&typeof metadata==="object")metadata=metadata.ptr;else metadata=ensureString(metadata);_emscripten_bind_Model3DResource_SetMetadata_1(self,metadata)};Model3DResource.prototype["GetMetadata"]=Model3DResource.prototype.GetMetadata=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_Model3DResource_GetMetadata_0(self))};Model3DResource.prototype["SetOrigin"]=Model3DResource.prototype.SetOrigin=function(originName,originIdentifier){var self=this.ptr;ensureCache.prepare();if(originName&&typeof originName==="object")originName=originName.ptr;else originName=ensureString(originName);if(originIdentifier&&typeof originIdentifier==="object")originIdentifier=originIdentifier.ptr;else originIdentifier=ensureString(originIdentifier);_emscripten_bind_Model3DResource_SetOrigin_2(self,originName,originIdentifier)};Model3DResource.prototype["GetOriginName"]=Model3DResource.prototype.GetOriginName=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_Model3DResource_GetOriginName_0(self))};Model3DResource.prototype["GetOriginIdentifier"]=Model3DResource.prototype.GetOriginIdentifier=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_Model3DResource_GetOriginIdentifier_0(self))};Model3DResource.prototype["GetProperties"]=Model3DResource.prototype.GetProperties=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_Model3DResource_GetProperties_0(self),MapStringPropertyDescriptor)};Model3DResource.prototype["UpdateProperty"]=Model3DResource.prototype.UpdateProperty=function(name,value){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);if(value&&typeof value==="object")value=value.ptr;else value=ensureString(value);return!!_emscripten_bind_Model3DResource_UpdateProperty_2(self,name,value)};Model3DResource.prototype["SerializeTo"]=Model3DResource.prototype.SerializeTo=function(element){var self=this.ptr;if(element&&typeof element==="object")element=element.ptr;_emscripten_bind_Model3DResource_SerializeTo_1(self,element)};Model3DResource.prototype["UnserializeFrom"]=Model3DResource.prototype.UnserializeFrom=function(element){var self=this.ptr;if(element&&typeof element==="object")element=element.ptr;_emscripten_bind_Model3DResource_UnserializeFrom_1(self,element)};Model3DResource.prototype["__destroy__"]=Model3DResource.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_Model3DResource___destroy___0(self)};function AtlasResource(){this.ptr=_emscripten_bind_AtlasResource_AtlasResource_0();getCache(AtlasResource)[this.ptr]=this}AtlasResource.prototype=Object.create(Resource.prototype);AtlasResource.prototype.constructor=AtlasResource;AtlasResource.prototype.__class__=AtlasResource;AtlasResource.__cache__={};Module["AtlasResource"]=AtlasResource;AtlasResource.prototype["Clone"]=AtlasResource.prototype.Clone=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_AtlasResource_Clone_0(self),Resource)};AtlasResource.prototype["SetName"]=AtlasResource.prototype.SetName=function(name){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);_emscripten_bind_AtlasResource_SetName_1(self,name)};AtlasResource.prototype["GetName"]=AtlasResource.prototype.GetName=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_AtlasResource_GetName_0(self))};AtlasResource.prototype["SetKind"]=AtlasResource.prototype.SetKind=function(kind){var self=this.ptr;ensureCache.prepare();if(kind&&typeof kind==="object")kind=kind.ptr;else kind=ensureString(kind);_emscripten_bind_AtlasResource_SetKind_1(self,kind)};AtlasResource.prototype["GetKind"]=AtlasResource.prototype.GetKind=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_AtlasResource_GetKind_0(self))};AtlasResource.prototype["IsUserAdded"]=AtlasResource.prototype.IsUserAdded=function(){var self=this.ptr;return!!_emscripten_bind_AtlasResource_IsUserAdded_0(self)};AtlasResource.prototype["SetUserAdded"]=AtlasResource.prototype.SetUserAdded=function(yes){var self=this.ptr;if(yes&&typeof yes==="object")yes=yes.ptr;_emscripten_bind_AtlasResource_SetUserAdded_1(self,yes)};AtlasResource.prototype["UseFile"]=AtlasResource.prototype.UseFile=function(){var self=this.ptr;return!!_emscripten_bind_AtlasResource_UseFile_0(self)};AtlasResource.prototype["SetFile"]=AtlasResource.prototype.SetFile=function(file){var self=this.ptr;ensureCache.prepare();if(file&&typeof file==="object")file=file.ptr;else file=ensureString(file);_emscripten_bind_AtlasResource_SetFile_1(self,file)};AtlasResource.prototype["GetFile"]=AtlasResource.prototype.GetFile=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_AtlasResource_GetFile_0(self))};AtlasResource.prototype["SetMetadata"]=AtlasResource.prototype.SetMetadata=function(metadata){var self=this.ptr;ensureCache.prepare();if(metadata&&typeof metadata==="object")metadata=metadata.ptr;else metadata=ensureString(metadata);_emscripten_bind_AtlasResource_SetMetadata_1(self,metadata)};AtlasResource.prototype["GetMetadata"]=AtlasResource.prototype.GetMetadata=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_AtlasResource_GetMetadata_0(self))};AtlasResource.prototype["SetOrigin"]=AtlasResource.prototype.SetOrigin=function(originName,originIdentifier){var self=this.ptr;ensureCache.prepare();if(originName&&typeof originName==="object")originName=originName.ptr;else originName=ensureString(originName);if(originIdentifier&&typeof originIdentifier==="object")originIdentifier=originIdentifier.ptr;else originIdentifier=ensureString(originIdentifier);_emscripten_bind_AtlasResource_SetOrigin_2(self,originName,originIdentifier)};AtlasResource.prototype["GetOriginName"]=AtlasResource.prototype.GetOriginName=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_AtlasResource_GetOriginName_0(self))};AtlasResource.prototype["GetOriginIdentifier"]=AtlasResource.prototype.GetOriginIdentifier=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_AtlasResource_GetOriginIdentifier_0(self))};AtlasResource.prototype["GetProperties"]=AtlasResource.prototype.GetProperties=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_AtlasResource_GetProperties_0(self),MapStringPropertyDescriptor)};AtlasResource.prototype["UpdateProperty"]=AtlasResource.prototype.UpdateProperty=function(name,value){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);if(value&&typeof value==="object")value=value.ptr;else value=ensureString(value);return!!_emscripten_bind_AtlasResource_UpdateProperty_2(self,name,value)};AtlasResource.prototype["SerializeTo"]=AtlasResource.prototype.SerializeTo=function(element){var self=this.ptr;if(element&&typeof element==="object")element=element.ptr;_emscripten_bind_AtlasResource_SerializeTo_1(self,element)};AtlasResource.prototype["UnserializeFrom"]=AtlasResource.prototype.UnserializeFrom=function(element){var self=this.ptr;if(element&&typeof element==="object")element=element.ptr;_emscripten_bind_AtlasResource_UnserializeFrom_1(self,element)};AtlasResource.prototype["__destroy__"]=AtlasResource.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_AtlasResource___destroy___0(self)};function JavaScriptResource(){this.ptr=_emscripten_bind_JavaScriptResource_JavaScriptResource_0();getCache(JavaScriptResource)[this.ptr]=this}JavaScriptResource.prototype=Object.create(Resource.prototype);JavaScriptResource.prototype.constructor=JavaScriptResource;JavaScriptResource.prototype.__class__=JavaScriptResource;JavaScriptResource.__cache__={};Module["JavaScriptResource"]=JavaScriptResource;JavaScriptResource.prototype["Clone"]=JavaScriptResource.prototype.Clone=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_JavaScriptResource_Clone_0(self),Resource)};JavaScriptResource.prototype["SetName"]=JavaScriptResource.prototype.SetName=function(name){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);_emscripten_bind_JavaScriptResource_SetName_1(self,name)};JavaScriptResource.prototype["GetName"]=JavaScriptResource.prototype.GetName=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_JavaScriptResource_GetName_0(self))};JavaScriptResource.prototype["SetKind"]=JavaScriptResource.prototype.SetKind=function(kind){var self=this.ptr;ensureCache.prepare();if(kind&&typeof kind==="object")kind=kind.ptr;else kind=ensureString(kind);_emscripten_bind_JavaScriptResource_SetKind_1(self,kind)};JavaScriptResource.prototype["GetKind"]=JavaScriptResource.prototype.GetKind=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_JavaScriptResource_GetKind_0(self))};JavaScriptResource.prototype["IsUserAdded"]=JavaScriptResource.prototype.IsUserAdded=function(){var self=this.ptr;return!!_emscripten_bind_JavaScriptResource_IsUserAdded_0(self)};JavaScriptResource.prototype["SetUserAdded"]=JavaScriptResource.prototype.SetUserAdded=function(yes){var self=this.ptr;if(yes&&typeof yes==="object")yes=yes.ptr;_emscripten_bind_JavaScriptResource_SetUserAdded_1(self,yes)};JavaScriptResource.prototype["UseFile"]=JavaScriptResource.prototype.UseFile=function(){var self=this.ptr;return!!_emscripten_bind_JavaScriptResource_UseFile_0(self)};JavaScriptResource.prototype["SetFile"]=JavaScriptResource.prototype.SetFile=function(file){var self=this.ptr;ensureCache.prepare();if(file&&typeof file==="object")file=file.ptr;else file=ensureString(file);_emscripten_bind_JavaScriptResource_SetFile_1(self,file)};JavaScriptResource.prototype["GetFile"]=JavaScriptResource.prototype.GetFile=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_JavaScriptResource_GetFile_0(self))};JavaScriptResource.prototype["SetMetadata"]=JavaScriptResource.prototype.SetMetadata=function(metadata){var self=this.ptr;ensureCache.prepare();if(metadata&&typeof metadata==="object")metadata=metadata.ptr;else metadata=ensureString(metadata);_emscripten_bind_JavaScriptResource_SetMetadata_1(self,metadata)};JavaScriptResource.prototype["GetMetadata"]=JavaScriptResource.prototype.GetMetadata=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_JavaScriptResource_GetMetadata_0(self))};JavaScriptResource.prototype["SetOrigin"]=JavaScriptResource.prototype.SetOrigin=function(originName,originIdentifier){var self=this.ptr;ensureCache.prepare();if(originName&&typeof originName==="object")originName=originName.ptr;else originName=ensureString(originName);if(originIdentifier&&typeof originIdentifier==="object")originIdentifier=originIdentifier.ptr;else originIdentifier=ensureString(originIdentifier);_emscripten_bind_JavaScriptResource_SetOrigin_2(self,originName,originIdentifier)};JavaScriptResource.prototype["GetOriginName"]=JavaScriptResource.prototype.GetOriginName=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_JavaScriptResource_GetOriginName_0(self))};JavaScriptResource.prototype["GetOriginIdentifier"]=JavaScriptResource.prototype.GetOriginIdentifier=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_JavaScriptResource_GetOriginIdentifier_0(self))};JavaScriptResource.prototype["GetProperties"]=JavaScriptResource.prototype.GetProperties=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_JavaScriptResource_GetProperties_0(self),MapStringPropertyDescriptor)};JavaScriptResource.prototype["UpdateProperty"]=JavaScriptResource.prototype.UpdateProperty=function(name,value){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);if(value&&typeof value==="object")value=value.ptr;else value=ensureString(value);return!!_emscripten_bind_JavaScriptResource_UpdateProperty_2(self,name,value)};JavaScriptResource.prototype["SerializeTo"]=JavaScriptResource.prototype.SerializeTo=function(element){var self=this.ptr;if(element&&typeof element==="object")element=element.ptr;_emscripten_bind_JavaScriptResource_SerializeTo_1(self,element)};JavaScriptResource.prototype["UnserializeFrom"]=JavaScriptResource.prototype.UnserializeFrom=function(element){var self=this.ptr;if(element&&typeof element==="object")element=element.ptr;_emscripten_bind_JavaScriptResource_UnserializeFrom_1(self,element)};JavaScriptResource.prototype["__destroy__"]=JavaScriptResource.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_JavaScriptResource___destroy___0(self)};function InitialInstance(){this.ptr=_emscripten_bind_InitialInstance_InitialInstance_0();getCache(InitialInstance)[this.ptr]=this}InitialInstance.prototype=Object.create(WrapperObject.prototype);InitialInstance.prototype.constructor=InitialInstance;InitialInstance.prototype.__class__=InitialInstance;InitialInstance.__cache__={};Module["InitialInstance"]=InitialInstance;InitialInstance.prototype["SetObjectName"]=InitialInstance.prototype.SetObjectName=function(name){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);_emscripten_bind_InitialInstance_SetObjectName_1(self,name)};InitialInstance.prototype["GetObjectName"]=InitialInstance.prototype.GetObjectName=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_InitialInstance_GetObjectName_0(self))};InitialInstance.prototype["GetX"]=InitialInstance.prototype.GetX=function(){var self=this.ptr;return _emscripten_bind_InitialInstance_GetX_0(self)};InitialInstance.prototype["SetX"]=InitialInstance.prototype.SetX=function(x){var self=this.ptr;if(x&&typeof x==="object")x=x.ptr;_emscripten_bind_InitialInstance_SetX_1(self,x)};InitialInstance.prototype["GetY"]=InitialInstance.prototype.GetY=function(){var self=this.ptr;return _emscripten_bind_InitialInstance_GetY_0(self)};InitialInstance.prototype["SetY"]=InitialInstance.prototype.SetY=function(y){var self=this.ptr;if(y&&typeof y==="object")y=y.ptr;_emscripten_bind_InitialInstance_SetY_1(self,y)};InitialInstance.prototype["GetZ"]=InitialInstance.prototype.GetZ=function(){var self=this.ptr;return _emscripten_bind_InitialInstance_GetZ_0(self)};InitialInstance.prototype["SetZ"]=InitialInstance.prototype.SetZ=function(z){var self=this.ptr;if(z&&typeof z==="object")z=z.ptr;_emscripten_bind_InitialInstance_SetZ_1(self,z)};InitialInstance.prototype["GetAngle"]=InitialInstance.prototype.GetAngle=function(){var self=this.ptr;return _emscripten_bind_InitialInstance_GetAngle_0(self)};InitialInstance.prototype["SetAngle"]=InitialInstance.prototype.SetAngle=function(angle){var self=this.ptr;if(angle&&typeof angle==="object")angle=angle.ptr;_emscripten_bind_InitialInstance_SetAngle_1(self,angle)};InitialInstance.prototype["GetRotationX"]=InitialInstance.prototype.GetRotationX=function(){var self=this.ptr;return _emscripten_bind_InitialInstance_GetRotationX_0(self)};InitialInstance.prototype["SetRotationX"]=InitialInstance.prototype.SetRotationX=function(rotationX){var self=this.ptr;if(rotationX&&typeof rotationX==="object")rotationX=rotationX.ptr;_emscripten_bind_InitialInstance_SetRotationX_1(self,rotationX)};InitialInstance.prototype["GetRotationY"]=InitialInstance.prototype.GetRotationY=function(){var self=this.ptr;return _emscripten_bind_InitialInstance_GetRotationY_0(self)};InitialInstance.prototype["SetRotationY"]=InitialInstance.prototype.SetRotationY=function(rotationY){var self=this.ptr;if(rotationY&&typeof rotationY==="object")rotationY=rotationY.ptr;_emscripten_bind_InitialInstance_SetRotationY_1(self,rotationY)};InitialInstance.prototype["IsLocked"]=InitialInstance.prototype.IsLocked=function(){var self=this.ptr;return!!_emscripten_bind_InitialInstance_IsLocked_0(self)};InitialInstance.prototype["SetLocked"]=InitialInstance.prototype.SetLocked=function(lock){var self=this.ptr;if(lock&&typeof lock==="object")lock=lock.ptr;_emscripten_bind_InitialInstance_SetLocked_1(self,lock)};InitialInstance.prototype["IsSealed"]=InitialInstance.prototype.IsSealed=function(){var self=this.ptr;return!!_emscripten_bind_InitialInstance_IsSealed_0(self)};InitialInstance.prototype["SetSealed"]=InitialInstance.prototype.SetSealed=function(seal){var self=this.ptr;if(seal&&typeof seal==="object")seal=seal.ptr;_emscripten_bind_InitialInstance_SetSealed_1(self,seal)};InitialInstance.prototype["ShouldKeepRatio"]=InitialInstance.prototype.ShouldKeepRatio=function(){var self=this.ptr;return!!_emscripten_bind_InitialInstance_ShouldKeepRatio_0(self)};InitialInstance.prototype["SetShouldKeepRatio"]=InitialInstance.prototype.SetShouldKeepRatio=function(keepRatio){var self=this.ptr;if(keepRatio&&typeof keepRatio==="object")keepRatio=keepRatio.ptr;_emscripten_bind_InitialInstance_SetShouldKeepRatio_1(self,keepRatio)};InitialInstance.prototype["GetZOrder"]=InitialInstance.prototype.GetZOrder=function(){var self=this.ptr;return _emscripten_bind_InitialInstance_GetZOrder_0(self)};InitialInstance.prototype["SetZOrder"]=InitialInstance.prototype.SetZOrder=function(zOrder){var self=this.ptr;if(zOrder&&typeof zOrder==="object")zOrder=zOrder.ptr;_emscripten_bind_InitialInstance_SetZOrder_1(self,zOrder)};InitialInstance.prototype["GetOpacity"]=InitialInstance.prototype.GetOpacity=function(){var self=this.ptr;return _emscripten_bind_InitialInstance_GetOpacity_0(self)};InitialInstance.prototype["SetOpacity"]=InitialInstance.prototype.SetOpacity=function(opacity){var self=this.ptr;if(opacity&&typeof opacity==="object")opacity=opacity.ptr;_emscripten_bind_InitialInstance_SetOpacity_1(self,opacity)};InitialInstance.prototype["GetLayer"]=InitialInstance.prototype.GetLayer=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_InitialInstance_GetLayer_0(self))};InitialInstance.prototype["SetLayer"]=InitialInstance.prototype.SetLayer=function(layer){var self=this.ptr;ensureCache.prepare();if(layer&&typeof layer==="object")layer=layer.ptr;else layer=ensureString(layer);_emscripten_bind_InitialInstance_SetLayer_1(self,layer)};InitialInstance.prototype["IsFlippedX"]=InitialInstance.prototype.IsFlippedX=function(){var self=this.ptr;return!!_emscripten_bind_InitialInstance_IsFlippedX_0(self)};InitialInstance.prototype["SetFlippedX"]=InitialInstance.prototype.SetFlippedX=function(flippedX){var self=this.ptr;if(flippedX&&typeof flippedX==="object")flippedX=flippedX.ptr;_emscripten_bind_InitialInstance_SetFlippedX_1(self,flippedX)};InitialInstance.prototype["IsFlippedY"]=InitialInstance.prototype.IsFlippedY=function(){var self=this.ptr;return!!_emscripten_bind_InitialInstance_IsFlippedY_0(self)};InitialInstance.prototype["SetFlippedY"]=InitialInstance.prototype.SetFlippedY=function(flippedY){var self=this.ptr;if(flippedY&&typeof flippedY==="object")flippedY=flippedY.ptr;_emscripten_bind_InitialInstance_SetFlippedY_1(self,flippedY)};InitialInstance.prototype["IsFlippedZ"]=InitialInstance.prototype.IsFlippedZ=function(){var self=this.ptr;return!!_emscripten_bind_InitialInstance_IsFlippedZ_0(self)};InitialInstance.prototype["SetFlippedZ"]=InitialInstance.prototype.SetFlippedZ=function(flippedZ){var self=this.ptr;if(flippedZ&&typeof flippedZ==="object")flippedZ=flippedZ.ptr;_emscripten_bind_InitialInstance_SetFlippedZ_1(self,flippedZ)};InitialInstance.prototype["SetHasCustomSize"]=InitialInstance.prototype.SetHasCustomSize=function(enable){var self=this.ptr;if(enable&&typeof enable==="object")enable=enable.ptr;_emscripten_bind_InitialInstance_SetHasCustomSize_1(self,enable)};InitialInstance.prototype["HasCustomSize"]=InitialInstance.prototype.HasCustomSize=function(){var self=this.ptr;return!!_emscripten_bind_InitialInstance_HasCustomSize_0(self)};InitialInstance.prototype["SetHasCustomDepth"]=InitialInstance.prototype.SetHasCustomDepth=function(enable){var self=this.ptr;if(enable&&typeof enable==="object")enable=enable.ptr;_emscripten_bind_InitialInstance_SetHasCustomDepth_1(self,enable)};InitialInstance.prototype["HasCustomDepth"]=InitialInstance.prototype.HasCustomDepth=function(){var self=this.ptr;return!!_emscripten_bind_InitialInstance_HasCustomDepth_0(self)};InitialInstance.prototype["SetCustomWidth"]=InitialInstance.prototype.SetCustomWidth=function(width){var self=this.ptr;if(width&&typeof width==="object")width=width.ptr;_emscripten_bind_InitialInstance_SetCustomWidth_1(self,width)};InitialInstance.prototype["GetCustomWidth"]=InitialInstance.prototype.GetCustomWidth=function(){var self=this.ptr;return _emscripten_bind_InitialInstance_GetCustomWidth_0(self)};InitialInstance.prototype["SetCustomHeight"]=InitialInstance.prototype.SetCustomHeight=function(height){var self=this.ptr;if(height&&typeof height==="object")height=height.ptr;_emscripten_bind_InitialInstance_SetCustomHeight_1(self,height)};InitialInstance.prototype["GetCustomHeight"]=InitialInstance.prototype.GetCustomHeight=function(){var self=this.ptr;return _emscripten_bind_InitialInstance_GetCustomHeight_0(self)};InitialInstance.prototype["SetCustomDepth"]=InitialInstance.prototype.SetCustomDepth=function(depth){var self=this.ptr;if(depth&&typeof depth==="object")depth=depth.ptr;_emscripten_bind_InitialInstance_SetCustomDepth_1(self,depth)};InitialInstance.prototype["GetCustomDepth"]=InitialInstance.prototype.GetCustomDepth=function(){var self=this.ptr;return _emscripten_bind_InitialInstance_GetCustomDepth_0(self)};InitialInstance.prototype["GetDefaultWidth"]=InitialInstance.prototype.GetDefaultWidth=function(){var self=this.ptr;return _emscripten_bind_InitialInstance_GetDefaultWidth_0(self)};InitialInstance.prototype["GetDefaultHeight"]=InitialInstance.prototype.GetDefaultHeight=function(){var self=this.ptr;return _emscripten_bind_InitialInstance_GetDefaultHeight_0(self)};InitialInstance.prototype["GetDefaultDepth"]=InitialInstance.prototype.GetDefaultDepth=function(){var self=this.ptr;return _emscripten_bind_InitialInstance_GetDefaultDepth_0(self)};InitialInstance.prototype["SetDefaultWidth"]=InitialInstance.prototype.SetDefaultWidth=function(width){var self=this.ptr;if(width&&typeof width==="object")width=width.ptr;_emscripten_bind_InitialInstance_SetDefaultWidth_1(self,width)};InitialInstance.prototype["SetDefaultHeight"]=InitialInstance.prototype.SetDefaultHeight=function(height){var self=this.ptr;if(height&&typeof height==="object")height=height.ptr;_emscripten_bind_InitialInstance_SetDefaultHeight_1(self,height)};InitialInstance.prototype["SetDefaultDepth"]=InitialInstance.prototype.SetDefaultDepth=function(depth){var self=this.ptr;if(depth&&typeof depth==="object")depth=depth.ptr;_emscripten_bind_InitialInstance_SetDefaultDepth_1(self,depth)};InitialInstance.prototype["ResetPersistentUuid"]=InitialInstance.prototype.ResetPersistentUuid=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_InitialInstance_ResetPersistentUuid_0(self),InitialInstance)};InitialInstance.prototype["GetPersistentUuid"]=InitialInstance.prototype.GetPersistentUuid=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_InitialInstance_GetPersistentUuid_0(self))};InitialInstance.prototype["UpdateCustomProperty"]=InitialInstance.prototype.UpdateCustomProperty=function(name,value,globalObjectsContainer,objectsContainer){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);if(value&&typeof value==="object")value=value.ptr;else value=ensureString(value);if(globalObjectsContainer&&typeof globalObjectsContainer==="object")globalObjectsContainer=globalObjectsContainer.ptr;if(objectsContainer&&typeof objectsContainer==="object")objectsContainer=objectsContainer.ptr;_emscripten_bind_InitialInstance_UpdateCustomProperty_4(self,name,value,globalObjectsContainer,objectsContainer)};InitialInstance.prototype["GetCustomProperties"]=InitialInstance.prototype.GetCustomProperties=function(globalObjectsContainer,objectsContainer){var self=this.ptr;if(globalObjectsContainer&&typeof globalObjectsContainer==="object")globalObjectsContainer=globalObjectsContainer.ptr;if(objectsContainer&&typeof objectsContainer==="object")objectsContainer=objectsContainer.ptr;return wrapPointer(_emscripten_bind_InitialInstance_GetCustomProperties_2(self,globalObjectsContainer,objectsContainer),MapStringPropertyDescriptor)};InitialInstance.prototype["GetRawDoubleProperty"]=InitialInstance.prototype.GetRawDoubleProperty=function(name){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);return _emscripten_bind_InitialInstance_GetRawDoubleProperty_1(self,name)};InitialInstance.prototype["GetRawStringProperty"]=InitialInstance.prototype.GetRawStringProperty=function(name){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);return UTF8ToString(_emscripten_bind_InitialInstance_GetRawStringProperty_1(self,name))};InitialInstance.prototype["SetRawDoubleProperty"]=InitialInstance.prototype.SetRawDoubleProperty=function(name,value){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);if(value&&typeof value==="object")value=value.ptr;_emscripten_bind_InitialInstance_SetRawDoubleProperty_2(self,name,value)};InitialInstance.prototype["SetRawStringProperty"]=InitialInstance.prototype.SetRawStringProperty=function(name,value){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);if(value&&typeof value==="object")value=value.ptr;else value=ensureString(value);_emscripten_bind_InitialInstance_SetRawStringProperty_2(self,name,value)};InitialInstance.prototype["GetVariables"]=InitialInstance.prototype.GetVariables=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_InitialInstance_GetVariables_0(self),VariablesContainer)};InitialInstance.prototype["HasAnyOverriddenProperty"]=InitialInstance.prototype.HasAnyOverriddenProperty=function(obj){var self=this.ptr;if(obj&&typeof obj==="object")obj=obj.ptr;return!!_emscripten_bind_InitialInstance_HasAnyOverriddenProperty_1(self,obj)};InitialInstance.prototype["HasAnyOverriddenPropertyForBehavior"]=InitialInstance.prototype.HasAnyOverriddenPropertyForBehavior=function(behavior){var self=this.ptr;if(behavior&&typeof behavior==="object")behavior=behavior.ptr;return!!_emscripten_bind_InitialInstance_HasAnyOverriddenPropertyForBehavior_1(self,behavior)};InitialInstance.prototype["HasBehaviorOverridingNamed"]=InitialInstance.prototype.HasBehaviorOverridingNamed=function(name){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);return!!_emscripten_bind_InitialInstance_HasBehaviorOverridingNamed_1(self,name)};InitialInstance.prototype["AddNewBehaviorOverriding"]=InitialInstance.prototype.AddNewBehaviorOverriding=function(project,type,name){var self=this.ptr;ensureCache.prepare();if(project&&typeof project==="object")project=project.ptr;if(type&&typeof type==="object")type=type.ptr;else type=ensureString(type);if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);return wrapPointer(_emscripten_bind_InitialInstance_AddNewBehaviorOverriding_3(self,project,type,name),Behavior)};InitialInstance.prototype["GetBehaviorOverriding"]=InitialInstance.prototype.GetBehaviorOverriding=function(name){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);return wrapPointer(_emscripten_bind_InitialInstance_GetBehaviorOverriding_1(self,name),Behavior)};InitialInstance.prototype["RemoveBehaviorOverriding"]=InitialInstance.prototype.RemoveBehaviorOverriding=function(name){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);_emscripten_bind_InitialInstance_RemoveBehaviorOverriding_1(self,name)};InitialInstance.prototype["RenameBehaviorOverriding"]=InitialInstance.prototype.RenameBehaviorOverriding=function(oldName,name){var self=this.ptr;ensureCache.prepare();if(oldName&&typeof oldName==="object")oldName=oldName.ptr;else oldName=ensureString(oldName);if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);return!!_emscripten_bind_InitialInstance_RenameBehaviorOverriding_2(self,oldName,name)};InitialInstance.prototype["SerializeTo"]=InitialInstance.prototype.SerializeTo=function(element){var self=this.ptr;if(element&&typeof element==="object")element=element.ptr;_emscripten_bind_InitialInstance_SerializeTo_1(self,element)};InitialInstance.prototype["UnserializeFrom"]=InitialInstance.prototype.UnserializeFrom=function(project,element){var self=this.ptr;if(project&&typeof project==="object")project=project.ptr;if(element&&typeof element==="object")element=element.ptr;_emscripten_bind_InitialInstance_UnserializeFrom_2(self,project,element)};InitialInstance.prototype["__destroy__"]=InitialInstance.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_InitialInstance___destroy___0(self)};function InitialInstancesContainer(){this.ptr=_emscripten_bind_InitialInstancesContainer_InitialInstancesContainer_0();getCache(InitialInstancesContainer)[this.ptr]=this}InitialInstancesContainer.prototype=Object.create(WrapperObject.prototype);InitialInstancesContainer.prototype.constructor=InitialInstancesContainer;InitialInstancesContainer.prototype.__class__=InitialInstancesContainer;InitialInstancesContainer.__cache__={};Module["InitialInstancesContainer"]=InitialInstancesContainer;InitialInstancesContainer.prototype["Clone"]=InitialInstancesContainer.prototype.Clone=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_InitialInstancesContainer_Clone_0(self),InitialInstancesContainer)};InitialInstancesContainer.prototype["GetInstancesCount"]=InitialInstancesContainer.prototype.GetInstancesCount=function(){var self=this.ptr;return _emscripten_bind_InitialInstancesContainer_GetInstancesCount_0(self)};InitialInstancesContainer.prototype["IterateOverInstances"]=InitialInstancesContainer.prototype.IterateOverInstances=function(func){var self=this.ptr;if(func&&typeof func==="object")func=func.ptr;_emscripten_bind_InitialInstancesContainer_IterateOverInstances_1(self,func)};InitialInstancesContainer.prototype["IterateOverInstancesWithZOrdering"]=InitialInstancesContainer.prototype.IterateOverInstancesWithZOrdering=function(func,layer){var self=this.ptr;ensureCache.prepare();if(func&&typeof func==="object")func=func.ptr;if(layer&&typeof layer==="object")layer=layer.ptr;else layer=ensureString(layer);_emscripten_bind_InitialInstancesContainer_IterateOverInstancesWithZOrdering_2(self,func,layer)};InitialInstancesContainer.prototype["MoveInstancesToLayer"]=InitialInstancesContainer.prototype.MoveInstancesToLayer=function(fromLayer,toLayer){var self=this.ptr;ensureCache.prepare();if(fromLayer&&typeof fromLayer==="object")fromLayer=fromLayer.ptr;else fromLayer=ensureString(fromLayer);if(toLayer&&typeof toLayer==="object")toLayer=toLayer.ptr;else toLayer=ensureString(toLayer);_emscripten_bind_InitialInstancesContainer_MoveInstancesToLayer_2(self,fromLayer,toLayer)};InitialInstancesContainer.prototype["RemoveAllInstancesOnLayer"]=InitialInstancesContainer.prototype.RemoveAllInstancesOnLayer=function(layer){var self=this.ptr;ensureCache.prepare();if(layer&&typeof layer==="object")layer=layer.ptr;else layer=ensureString(layer);_emscripten_bind_InitialInstancesContainer_RemoveAllInstancesOnLayer_1(self,layer)};InitialInstancesContainer.prototype["RemoveInitialInstancesOfObject"]=InitialInstancesContainer.prototype.RemoveInitialInstancesOfObject=function(obj){var self=this.ptr;ensureCache.prepare();if(obj&&typeof obj==="object")obj=obj.ptr;else obj=ensureString(obj);_emscripten_bind_InitialInstancesContainer_RemoveInitialInstancesOfObject_1(self,obj)};InitialInstancesContainer.prototype["HasInstancesOfObject"]=InitialInstancesContainer.prototype.HasInstancesOfObject=function(objectName){var self=this.ptr;ensureCache.prepare();if(objectName&&typeof objectName==="object")objectName=objectName.ptr;else objectName=ensureString(objectName);return!!_emscripten_bind_InitialInstancesContainer_HasInstancesOfObject_1(self,objectName)};InitialInstancesContainer.prototype["IsInstancesCountOfObjectGreaterThan"]=InitialInstancesContainer.prototype.IsInstancesCountOfObjectGreaterThan=function(objectName,minInstanceCount){var self=this.ptr;ensureCache.prepare();if(objectName&&typeof objectName==="object")objectName=objectName.ptr;else objectName=ensureString(objectName);if(minInstanceCount&&typeof minInstanceCount==="object")minInstanceCount=minInstanceCount.ptr;return!!_emscripten_bind_InitialInstancesContainer_IsInstancesCountOfObjectGreaterThan_2(self,objectName,minInstanceCount)};InitialInstancesContainer.prototype["SomeInstancesAreOnLayer"]=InitialInstancesContainer.prototype.SomeInstancesAreOnLayer=function(layer){var self=this.ptr;ensureCache.prepare();if(layer&&typeof layer==="object")layer=layer.ptr;else layer=ensureString(layer);return!!_emscripten_bind_InitialInstancesContainer_SomeInstancesAreOnLayer_1(self,layer)};InitialInstancesContainer.prototype["RenameInstancesOfObject"]=InitialInstancesContainer.prototype.RenameInstancesOfObject=function(oldName,newName){var self=this.ptr;ensureCache.prepare();if(oldName&&typeof oldName==="object")oldName=oldName.ptr;else oldName=ensureString(oldName);if(newName&&typeof newName==="object")newName=newName.ptr;else newName=ensureString(newName);_emscripten_bind_InitialInstancesContainer_RenameInstancesOfObject_2(self,oldName,newName)};InitialInstancesContainer.prototype["RemoveInstance"]=InitialInstancesContainer.prototype.RemoveInstance=function(inst){var self=this.ptr;if(inst&&typeof inst==="object")inst=inst.ptr;_emscripten_bind_InitialInstancesContainer_RemoveInstance_1(self,inst)};InitialInstancesContainer.prototype["GetLayerInstancesCount"]=InitialInstancesContainer.prototype.GetLayerInstancesCount=function(layerName){var self=this.ptr;ensureCache.prepare();if(layerName&&typeof layerName==="object")layerName=layerName.ptr;else layerName=ensureString(layerName);return _emscripten_bind_InitialInstancesContainer_GetLayerInstancesCount_1(self,layerName)};InitialInstancesContainer.prototype["InsertNewInitialInstance"]=InitialInstancesContainer.prototype.InsertNewInitialInstance=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_InitialInstancesContainer_InsertNewInitialInstance_0(self),InitialInstance)};InitialInstancesContainer.prototype["InsertInitialInstance"]=InitialInstancesContainer.prototype.InsertInitialInstance=function(inst){var self=this.ptr;if(inst&&typeof inst==="object")inst=inst.ptr;return wrapPointer(_emscripten_bind_InitialInstancesContainer_InsertInitialInstance_1(self,inst),InitialInstance)};InitialInstancesContainer.prototype["SerializeTo"]=InitialInstancesContainer.prototype.SerializeTo=function(element){var self=this.ptr;if(element&&typeof element==="object")element=element.ptr;_emscripten_bind_InitialInstancesContainer_SerializeTo_1(self,element)};InitialInstancesContainer.prototype["UnserializeFrom"]=InitialInstancesContainer.prototype.UnserializeFrom=function(project,element){var self=this.ptr;if(project&&typeof project==="object")project=project.ptr;if(element&&typeof element==="object")element=element.ptr;_emscripten_bind_InitialInstancesContainer_UnserializeFrom_2(self,project,element)};InitialInstancesContainer.prototype["__destroy__"]=InitialInstancesContainer.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_InitialInstancesContainer___destroy___0(self)};function HighestZOrderFinder(){this.ptr=_emscripten_bind_HighestZOrderFinder_HighestZOrderFinder_0();getCache(HighestZOrderFinder)[this.ptr]=this}HighestZOrderFinder.prototype=Object.create(WrapperObject.prototype);HighestZOrderFinder.prototype.constructor=HighestZOrderFinder;HighestZOrderFinder.prototype.__class__=HighestZOrderFinder;HighestZOrderFinder.__cache__={};Module["HighestZOrderFinder"]=HighestZOrderFinder;HighestZOrderFinder.prototype["RestrictSearchToLayer"]=HighestZOrderFinder.prototype.RestrictSearchToLayer=function(layer){var self=this.ptr;ensureCache.prepare();if(layer&&typeof layer==="object")layer=layer.ptr;else layer=ensureString(layer);_emscripten_bind_HighestZOrderFinder_RestrictSearchToLayer_1(self,layer)};HighestZOrderFinder.prototype["GetHighestZOrder"]=HighestZOrderFinder.prototype.GetHighestZOrder=function(){var self=this.ptr;return _emscripten_bind_HighestZOrderFinder_GetHighestZOrder_0(self)};HighestZOrderFinder.prototype["GetLowestZOrder"]=HighestZOrderFinder.prototype.GetLowestZOrder=function(){var self=this.ptr;return _emscripten_bind_HighestZOrderFinder_GetLowestZOrder_0(self)};HighestZOrderFinder.prototype["Reset"]=HighestZOrderFinder.prototype.Reset=function(){var self=this.ptr;_emscripten_bind_HighestZOrderFinder_Reset_0(self)};HighestZOrderFinder.prototype["GetInstancesCount"]=HighestZOrderFinder.prototype.GetInstancesCount=function(){var self=this.ptr;return _emscripten_bind_HighestZOrderFinder_GetInstancesCount_0(self)};HighestZOrderFinder.prototype["__destroy__"]=HighestZOrderFinder.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_HighestZOrderFinder___destroy___0(self)};function InitialInstanceFunctor(){throw"cannot construct a InitialInstanceFunctor, no constructor in IDL"}InitialInstanceFunctor.prototype=Object.create(WrapperObject.prototype);InitialInstanceFunctor.prototype.constructor=InitialInstanceFunctor;InitialInstanceFunctor.prototype.__class__=InitialInstanceFunctor;InitialInstanceFunctor.__cache__={};Module["InitialInstanceFunctor"]=InitialInstanceFunctor;InitialInstanceFunctor.prototype["__destroy__"]=InitialInstanceFunctor.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_InitialInstanceFunctor___destroy___0(self)};function InitialInstanceJSFunctor(){this.ptr=_emscripten_bind_InitialInstanceJSFunctor_InitialInstanceJSFunctor_0();getCache(InitialInstanceJSFunctor)[this.ptr]=this}InitialInstanceJSFunctor.prototype=Object.create(InitialInstanceJSFunctorWrapper.prototype);InitialInstanceJSFunctor.prototype.constructor=InitialInstanceJSFunctor;InitialInstanceJSFunctor.prototype.__class__=InitialInstanceJSFunctor;InitialInstanceJSFunctor.__cache__={};Module["InitialInstanceJSFunctor"]=InitialInstanceJSFunctor;InitialInstanceJSFunctor.prototype["invoke"]=InitialInstanceJSFunctor.prototype.invoke=function(instance){var self=this.ptr;if(instance&&typeof instance==="object")instance=instance.ptr;_emscripten_bind_InitialInstanceJSFunctor_invoke_1(self,instance)};InitialInstanceJSFunctor.prototype["__destroy__"]=InitialInstanceJSFunctor.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_InitialInstanceJSFunctor___destroy___0(self)};function SerializerValue(){throw"cannot construct a SerializerValue, no constructor in IDL"}SerializerValue.prototype=Object.create(WrapperObject.prototype);SerializerValue.prototype.constructor=SerializerValue;SerializerValue.prototype.__class__=SerializerValue;SerializerValue.__cache__={};Module["SerializerValue"]=SerializerValue;SerializerValue.prototype["GetBool"]=SerializerValue.prototype.GetBool=function(){var self=this.ptr;return!!_emscripten_bind_SerializerValue_GetBool_0(self)};SerializerValue.prototype["GetString"]=SerializerValue.prototype.GetString=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_SerializerValue_GetString_0(self))};SerializerValue.prototype["GetInt"]=SerializerValue.prototype.GetInt=function(){var self=this.ptr;return _emscripten_bind_SerializerValue_GetInt_0(self)};SerializerValue.prototype["GetDouble"]=SerializerValue.prototype.GetDouble=function(){var self=this.ptr;return _emscripten_bind_SerializerValue_GetDouble_0(self)};SerializerValue.prototype["GetRawString"]=SerializerValue.prototype.GetRawString=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_SerializerValue_GetRawString_0(self))};SerializerValue.prototype["IsBoolean"]=SerializerValue.prototype.IsBoolean=function(){var self=this.ptr;return!!_emscripten_bind_SerializerValue_IsBoolean_0(self)};SerializerValue.prototype["IsString"]=SerializerValue.prototype.IsString=function(){var self=this.ptr;return!!_emscripten_bind_SerializerValue_IsString_0(self)};SerializerValue.prototype["IsInt"]=SerializerValue.prototype.IsInt=function(){var self=this.ptr;return!!_emscripten_bind_SerializerValue_IsInt_0(self)};SerializerValue.prototype["IsDouble"]=SerializerValue.prototype.IsDouble=function(){var self=this.ptr;return!!_emscripten_bind_SerializerValue_IsDouble_0(self)};SerializerValue.prototype["__destroy__"]=SerializerValue.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_SerializerValue___destroy___0(self)};function SerializerElement(){this.ptr=_emscripten_bind_SerializerElement_SerializerElement_0();getCache(SerializerElement)[this.ptr]=this}SerializerElement.prototype=Object.create(WrapperObject.prototype);SerializerElement.prototype.constructor=SerializerElement;SerializerElement.prototype.__class__=SerializerElement;SerializerElement.__cache__={};Module["SerializerElement"]=SerializerElement;SerializerElement.prototype["SetBoolValue"]=SerializerElement.prototype.SetBoolValue=function(value){var self=this.ptr;if(value&&typeof value==="object")value=value.ptr;_emscripten_bind_SerializerElement_SetBoolValue_1(self,value)};SerializerElement.prototype["SetStringValue"]=SerializerElement.prototype.SetStringValue=function(value){var self=this.ptr;ensureCache.prepare();if(value&&typeof value==="object")value=value.ptr;else value=ensureString(value);_emscripten_bind_SerializerElement_SetStringValue_1(self,value)};SerializerElement.prototype["SetIntValue"]=SerializerElement.prototype.SetIntValue=function(value){var self=this.ptr;if(value&&typeof value==="object")value=value.ptr;_emscripten_bind_SerializerElement_SetIntValue_1(self,value)};SerializerElement.prototype["SetDoubleValue"]=SerializerElement.prototype.SetDoubleValue=function(value){var self=this.ptr;if(value&&typeof value==="object")value=value.ptr;_emscripten_bind_SerializerElement_SetDoubleValue_1(self,value)};SerializerElement.prototype["GetValue"]=SerializerElement.prototype.GetValue=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_SerializerElement_GetValue_0(self),SerializerValue)};SerializerElement.prototype["GetBoolValue"]=SerializerElement.prototype.GetBoolValue=function(){var self=this.ptr;return!!_emscripten_bind_SerializerElement_GetBoolValue_0(self)};SerializerElement.prototype["GetStringValue"]=SerializerElement.prototype.GetStringValue=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_SerializerElement_GetStringValue_0(self))};SerializerElement.prototype["GetIntValue"]=SerializerElement.prototype.GetIntValue=function(){var self=this.ptr;return _emscripten_bind_SerializerElement_GetIntValue_0(self)};SerializerElement.prototype["GetDoubleValue"]=SerializerElement.prototype.GetDoubleValue=function(){var self=this.ptr;return _emscripten_bind_SerializerElement_GetDoubleValue_0(self)};SerializerElement.prototype["IsValueUndefined"]=SerializerElement.prototype.IsValueUndefined=function(){var self=this.ptr;return!!_emscripten_bind_SerializerElement_IsValueUndefined_0(self)};SerializerElement.prototype["SetBoolAttribute"]=SerializerElement.prototype.SetBoolAttribute=function(name,value){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);if(value&&typeof value==="object")value=value.ptr;return wrapPointer(_emscripten_bind_SerializerElement_SetBoolAttribute_2(self,name,value),SerializerElement)};SerializerElement.prototype["SetStringAttribute"]=SerializerElement.prototype.SetStringAttribute=function(name,value){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);if(value&&typeof value==="object")value=value.ptr;else value=ensureString(value);return wrapPointer(_emscripten_bind_SerializerElement_SetStringAttribute_2(self,name,value),SerializerElement)};SerializerElement.prototype["SetIntAttribute"]=SerializerElement.prototype.SetIntAttribute=function(name,value){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);if(value&&typeof value==="object")value=value.ptr;return wrapPointer(_emscripten_bind_SerializerElement_SetIntAttribute_2(self,name,value),SerializerElement)};SerializerElement.prototype["SetDoubleAttribute"]=SerializerElement.prototype.SetDoubleAttribute=function(name,value){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);if(value&&typeof value==="object")value=value.ptr;return wrapPointer(_emscripten_bind_SerializerElement_SetDoubleAttribute_2(self,name,value),SerializerElement)};SerializerElement.prototype["GetBoolAttribute"]=SerializerElement.prototype.GetBoolAttribute=function(name){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);return!!_emscripten_bind_SerializerElement_GetBoolAttribute_1(self,name)};SerializerElement.prototype["GetStringAttribute"]=SerializerElement.prototype.GetStringAttribute=function(name){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);return UTF8ToString(_emscripten_bind_SerializerElement_GetStringAttribute_1(self,name))};SerializerElement.prototype["GetIntAttribute"]=SerializerElement.prototype.GetIntAttribute=function(name){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);return _emscripten_bind_SerializerElement_GetIntAttribute_1(self,name)};SerializerElement.prototype["GetDoubleAttribute"]=SerializerElement.prototype.GetDoubleAttribute=function(name){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);return _emscripten_bind_SerializerElement_GetDoubleAttribute_1(self,name)};SerializerElement.prototype["ConsiderAsArray"]=SerializerElement.prototype.ConsiderAsArray=function(){var self=this.ptr;_emscripten_bind_SerializerElement_ConsiderAsArray_0(self)};SerializerElement.prototype["ConsideredAsArray"]=SerializerElement.prototype.ConsideredAsArray=function(){var self=this.ptr;return!!_emscripten_bind_SerializerElement_ConsideredAsArray_0(self)};SerializerElement.prototype["AddChild"]=SerializerElement.prototype.AddChild=function(str){var self=this.ptr;ensureCache.prepare();if(str&&typeof str==="object")str=str.ptr;else str=ensureString(str);return wrapPointer(_emscripten_bind_SerializerElement_AddChild_1(self,str),SerializerElement)};SerializerElement.prototype["GetChild"]=SerializerElement.prototype.GetChild=function(str){var self=this.ptr;ensureCache.prepare();if(str&&typeof str==="object")str=str.ptr;else str=ensureString(str);return wrapPointer(_emscripten_bind_SerializerElement_GetChild_1(self,str),SerializerElement)};SerializerElement.prototype["WRAPPED_SetChild"]=SerializerElement.prototype.WRAPPED_SetChild=function(str,element){var self=this.ptr;ensureCache.prepare();if(str&&typeof str==="object")str=str.ptr;else str=ensureString(str);if(element&&typeof element==="object")element=element.ptr;_emscripten_bind_SerializerElement_WRAPPED_SetChild_2(self,str,element)};SerializerElement.prototype["HasChild"]=SerializerElement.prototype.HasChild=function(str){var self=this.ptr;ensureCache.prepare();if(str&&typeof str==="object")str=str.ptr;else str=ensureString(str);return!!_emscripten_bind_SerializerElement_HasChild_1(self,str)};SerializerElement.prototype["GetAllChildren"]=SerializerElement.prototype.GetAllChildren=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_SerializerElement_GetAllChildren_0(self),VectorPairStringSharedPtrSerializerElement)};SerializerElement.prototype["GetAllAttributes"]=SerializerElement.prototype.GetAllAttributes=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_SerializerElement_GetAllAttributes_0(self),MapStringSerializerValue)};SerializerElement.prototype["__destroy__"]=SerializerElement.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_SerializerElement___destroy___0(self)};function SharedPtrSerializerElement(){throw"cannot construct a SharedPtrSerializerElement, no constructor in IDL"}SharedPtrSerializerElement.prototype=Object.create(WrapperObject.prototype);SharedPtrSerializerElement.prototype.constructor=SharedPtrSerializerElement;SharedPtrSerializerElement.prototype.__class__=SharedPtrSerializerElement;SharedPtrSerializerElement.__cache__={};Module["SharedPtrSerializerElement"]=SharedPtrSerializerElement;SharedPtrSerializerElement.prototype["get"]=SharedPtrSerializerElement.prototype.get=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_SharedPtrSerializerElement_get_0(self),SerializerElement)};SharedPtrSerializerElement.prototype["reset"]=SharedPtrSerializerElement.prototype.reset=function(){var self=this.ptr;_emscripten_bind_SharedPtrSerializerElement_reset_0(self)};SharedPtrSerializerElement.prototype["__destroy__"]=SharedPtrSerializerElement.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_SharedPtrSerializerElement___destroy___0(self)};function Serializer(){throw"cannot construct a Serializer, no constructor in IDL"}Serializer.prototype=Object.create(WrapperObject.prototype);Serializer.prototype.constructor=Serializer;Serializer.prototype.__class__=Serializer;Serializer.__cache__={};Module["Serializer"]=Serializer;Serializer.prototype["STATIC_ToJSON"]=Serializer.prototype.STATIC_ToJSON=function(element){var self=this.ptr;if(element&&typeof element==="object")element=element.ptr;return UTF8ToString(_emscripten_bind_Serializer_STATIC_ToJSON_1(self,element))};Serializer.prototype["STATIC_FromJSON"]=Serializer.prototype.STATIC_FromJSON=function(json){var self=this.ptr;ensureCache.prepare();if(json&&typeof json==="object")json=json.ptr;else json=ensureString(json);return wrapPointer(_emscripten_bind_Serializer_STATIC_FromJSON_1(self,json),SerializerElement)};Serializer.prototype["__destroy__"]=Serializer.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_Serializer___destroy___0(self)};function BinarySerializer(){throw"cannot construct a BinarySerializer, no constructor in IDL"}BinarySerializer.prototype=Object.create(WrapperObject.prototype);BinarySerializer.prototype.constructor=BinarySerializer;BinarySerializer.prototype.__class__=BinarySerializer;BinarySerializer.__cache__={};Module["BinarySerializer"]=BinarySerializer;BinarySerializer.prototype["STATIC_CreateBinarySnapshot"]=BinarySerializer.prototype.STATIC_CreateBinarySnapshot=function(element){var self=this.ptr;if(element&&typeof element==="object")element=element.ptr;return _emscripten_bind_BinarySerializer_STATIC_CreateBinarySnapshot_1(self,element)};BinarySerializer.prototype["STATIC_GetLastBinarySnapshotSize"]=BinarySerializer.prototype.STATIC_GetLastBinarySnapshotSize=function(){var self=this.ptr;return _emscripten_bind_BinarySerializer_STATIC_GetLastBinarySnapshotSize_0(self)};BinarySerializer.prototype["STATIC_FreeBinarySnapshot"]=BinarySerializer.prototype.STATIC_FreeBinarySnapshot=function(bufferPtr){var self=this.ptr;if(bufferPtr&&typeof bufferPtr==="object")bufferPtr=bufferPtr.ptr;_emscripten_bind_BinarySerializer_STATIC_FreeBinarySnapshot_1(self,bufferPtr)};BinarySerializer.prototype["STATIC_DeserializeBinarySnapshot"]=BinarySerializer.prototype.STATIC_DeserializeBinarySnapshot=function(bufferPtr,size){var self=this.ptr;if(bufferPtr&&typeof bufferPtr==="object")bufferPtr=bufferPtr.ptr;if(size&&typeof size==="object")size=size.ptr;return wrapPointer(_emscripten_bind_BinarySerializer_STATIC_DeserializeBinarySnapshot_2(self,bufferPtr,size),SerializerElement)};function ObjectAssetSerializer(){throw"cannot construct a ObjectAssetSerializer, no constructor in IDL"}ObjectAssetSerializer.prototype=Object.create(WrapperObject.prototype);ObjectAssetSerializer.prototype.constructor=ObjectAssetSerializer;ObjectAssetSerializer.prototype.__class__=ObjectAssetSerializer;ObjectAssetSerializer.__cache__={};Module["ObjectAssetSerializer"]=ObjectAssetSerializer;ObjectAssetSerializer.prototype["STATIC_SerializeTo"]=ObjectAssetSerializer.prototype.STATIC_SerializeTo=function(project,obj,objectFullName,element,usedResourceNames,ExtensionDependencyCache){var self=this.ptr;ensureCache.prepare();if(project&&typeof project==="object")project=project.ptr;if(obj&&typeof obj==="object")obj=obj.ptr;if(objectFullName&&typeof objectFullName==="object")objectFullName=objectFullName.ptr;else objectFullName=ensureString(objectFullName);if(element&&typeof element==="object")element=element.ptr;if(usedResourceNames&&typeof usedResourceNames==="object")usedResourceNames=usedResourceNames.ptr;if(ExtensionDependencyCache&&typeof ExtensionDependencyCache==="object")ExtensionDependencyCache=ExtensionDependencyCache.ptr;_emscripten_bind_ObjectAssetSerializer_STATIC_SerializeTo_6(self,project,obj,objectFullName,element,usedResourceNames,ExtensionDependencyCache)};ObjectAssetSerializer.prototype["__destroy__"]=ObjectAssetSerializer.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_ObjectAssetSerializer___destroy___0(self)};function ExtensionDependencyCache(){this.ptr=_emscripten_bind_ExtensionDependencyCache_ExtensionDependencyCache_0();getCache(ExtensionDependencyCache)[this.ptr]=this}ExtensionDependencyCache.prototype=Object.create(WrapperObject.prototype);ExtensionDependencyCache.prototype.constructor=ExtensionDependencyCache;ExtensionDependencyCache.prototype.__class__=ExtensionDependencyCache;ExtensionDependencyCache.__cache__={};Module["ExtensionDependencyCache"]=ExtensionDependencyCache;ExtensionDependencyCache.prototype["__destroy__"]=ExtensionDependencyCache.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_ExtensionDependencyCache___destroy___0(self)};function InstructionsList(){this.ptr=_emscripten_bind_InstructionsList_InstructionsList_0();getCache(InstructionsList)[this.ptr]=this}InstructionsList.prototype=Object.create(WrapperObject.prototype);InstructionsList.prototype.constructor=InstructionsList;InstructionsList.prototype.__class__=InstructionsList;InstructionsList.__cache__={};Module["InstructionsList"]=InstructionsList;InstructionsList.prototype["Insert"]=InstructionsList.prototype.Insert=function(instr,pos){var self=this.ptr;if(instr&&typeof instr==="object")instr=instr.ptr;if(pos&&typeof pos==="object")pos=pos.ptr;return wrapPointer(_emscripten_bind_InstructionsList_Insert_2(self,instr,pos),Instruction)};InstructionsList.prototype["InsertInstructions"]=InstructionsList.prototype.InsertInstructions=function(list,begin,end,pos){var self=this.ptr;if(list&&typeof list==="object")list=list.ptr;if(begin&&typeof begin==="object")begin=begin.ptr;if(end&&typeof end==="object")end=end.ptr;if(pos&&typeof pos==="object")pos=pos.ptr;_emscripten_bind_InstructionsList_InsertInstructions_4(self,list,begin,end,pos)};InstructionsList.prototype["size"]=InstructionsList.prototype.size=function(){var self=this.ptr;return _emscripten_bind_InstructionsList_size_0(self)};InstructionsList.prototype["WRAPPED_set"]=InstructionsList.prototype.WRAPPED_set=function(index,instr){var self=this.ptr;if(index&&typeof index==="object")index=index.ptr;if(instr&&typeof instr==="object")instr=instr.ptr;_emscripten_bind_InstructionsList_WRAPPED_set_2(self,index,instr)};InstructionsList.prototype["Contains"]=InstructionsList.prototype.Contains=function(instr){var self=this.ptr;if(instr&&typeof instr==="object")instr=instr.ptr;return!!_emscripten_bind_InstructionsList_Contains_1(self,instr)};InstructionsList.prototype["Get"]=InstructionsList.prototype.Get=function(index){var self=this.ptr;if(index&&typeof index==="object")index=index.ptr;return wrapPointer(_emscripten_bind_InstructionsList_Get_1(self,index),Instruction)};InstructionsList.prototype["Remove"]=InstructionsList.prototype.Remove=function(instr){var self=this.ptr;if(instr&&typeof instr==="object")instr=instr.ptr;_emscripten_bind_InstructionsList_Remove_1(self,instr)};InstructionsList.prototype["RemoveAt"]=InstructionsList.prototype.RemoveAt=function(index){var self=this.ptr;if(index&&typeof index==="object")index=index.ptr;_emscripten_bind_InstructionsList_RemoveAt_1(self,index)};InstructionsList.prototype["Clear"]=InstructionsList.prototype.Clear=function(){var self=this.ptr;_emscripten_bind_InstructionsList_Clear_0(self)};InstructionsList.prototype["SerializeTo"]=InstructionsList.prototype.SerializeTo=function(element){var self=this.ptr;if(element&&typeof element==="object")element=element.ptr;_emscripten_bind_InstructionsList_SerializeTo_1(self,element)};InstructionsList.prototype["UnserializeFrom"]=InstructionsList.prototype.UnserializeFrom=function(project,element){var self=this.ptr;if(project&&typeof project==="object")project=project.ptr;if(element&&typeof element==="object")element=element.ptr;_emscripten_bind_InstructionsList_UnserializeFrom_2(self,project,element)};InstructionsList.prototype["__destroy__"]=InstructionsList.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_InstructionsList___destroy___0(self)};function Instruction(){this.ptr=_emscripten_bind_Instruction_Instruction_0();getCache(Instruction)[this.ptr]=this}Instruction.prototype=Object.create(WrapperObject.prototype);Instruction.prototype.constructor=Instruction;Instruction.prototype.__class__=Instruction;Instruction.__cache__={};Module["Instruction"]=Instruction;Instruction.prototype["CLONE_Instruction"]=Instruction.prototype.CLONE_Instruction=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_Instruction_CLONE_Instruction_0(self),Instruction)};Instruction.prototype["SetType"]=Instruction.prototype.SetType=function(type){var self=this.ptr;ensureCache.prepare();if(type&&typeof type==="object")type=type.ptr;else type=ensureString(type);_emscripten_bind_Instruction_SetType_1(self,type)};Instruction.prototype["GetType"]=Instruction.prototype.GetType=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_Instruction_GetType_0(self))};Instruction.prototype["SetInverted"]=Instruction.prototype.SetInverted=function(inverted){var self=this.ptr;if(inverted&&typeof inverted==="object")inverted=inverted.ptr;_emscripten_bind_Instruction_SetInverted_1(self,inverted)};Instruction.prototype["IsInverted"]=Instruction.prototype.IsInverted=function(){var self=this.ptr;return!!_emscripten_bind_Instruction_IsInverted_0(self)};Instruction.prototype["SetAwaited"]=Instruction.prototype.SetAwaited=function(awaited){var self=this.ptr;if(awaited&&typeof awaited==="object")awaited=awaited.ptr;_emscripten_bind_Instruction_SetAwaited_1(self,awaited)};Instruction.prototype["IsAwaited"]=Instruction.prototype.IsAwaited=function(){var self=this.ptr;return!!_emscripten_bind_Instruction_IsAwaited_0(self)};Instruction.prototype["SetParameter"]=Instruction.prototype.SetParameter=function(id,value){var self=this.ptr;ensureCache.prepare();if(id&&typeof id==="object")id=id.ptr;if(value&&typeof value==="object")value=value.ptr;else value=ensureString(value);_emscripten_bind_Instruction_SetParameter_2(self,id,value)};Instruction.prototype["GetParameter"]=Instruction.prototype.GetParameter=function(id){var self=this.ptr;if(id&&typeof id==="object")id=id.ptr;return wrapPointer(_emscripten_bind_Instruction_GetParameter_1(self,id),Expression)};Instruction.prototype["SetParametersCount"]=Instruction.prototype.SetParametersCount=function(count){var self=this.ptr;if(count&&typeof count==="object")count=count.ptr;_emscripten_bind_Instruction_SetParametersCount_1(self,count)};Instruction.prototype["GetParametersCount"]=Instruction.prototype.GetParametersCount=function(){var self=this.ptr;return _emscripten_bind_Instruction_GetParametersCount_0(self)};Instruction.prototype["GetSubInstructions"]=Instruction.prototype.GetSubInstructions=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_Instruction_GetSubInstructions_0(self),InstructionsList)};Instruction.prototype["__destroy__"]=Instruction.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_Instruction___destroy___0(self)};function Expression(){throw"cannot construct a Expression, no constructor in IDL"}Expression.prototype=Object.create(WrapperObject.prototype);Expression.prototype.constructor=Expression;Expression.prototype.__class__=Expression;Expression.__cache__={};Module["Expression"]=Expression;Expression.prototype["GetPlainString"]=Expression.prototype.GetPlainString=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_Expression_GetPlainString_0(self))};Expression.prototype["GetRootNode"]=Expression.prototype.GetRootNode=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_Expression_GetRootNode_0(self),ExpressionNode)};Expression.prototype["__destroy__"]=Expression.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_Expression___destroy___0(self)};function VectorPairStringTextFormatting(){throw"cannot construct a VectorPairStringTextFormatting, no constructor in IDL"}VectorPairStringTextFormatting.prototype=Object.create(WrapperObject.prototype);VectorPairStringTextFormatting.prototype.constructor=VectorPairStringTextFormatting;VectorPairStringTextFormatting.prototype.__class__=VectorPairStringTextFormatting;VectorPairStringTextFormatting.__cache__={};Module["VectorPairStringTextFormatting"]=VectorPairStringTextFormatting;VectorPairStringTextFormatting.prototype["size"]=VectorPairStringTextFormatting.prototype.size=function(){var self=this.ptr;return _emscripten_bind_VectorPairStringTextFormatting_size_0(self)};VectorPairStringTextFormatting.prototype["WRAPPED_GetString"]=VectorPairStringTextFormatting.prototype.WRAPPED_GetString=function(id){var self=this.ptr;if(id&&typeof id==="object")id=id.ptr;return UTF8ToString(_emscripten_bind_VectorPairStringTextFormatting_WRAPPED_GetString_1(self,id))};VectorPairStringTextFormatting.prototype["WRAPPED_GetTextFormatting"]=VectorPairStringTextFormatting.prototype.WRAPPED_GetTextFormatting=function(id){var self=this.ptr;if(id&&typeof id==="object")id=id.ptr;return wrapPointer(_emscripten_bind_VectorPairStringTextFormatting_WRAPPED_GetTextFormatting_1(self,id),TextFormatting)};VectorPairStringTextFormatting.prototype["__destroy__"]=VectorPairStringTextFormatting.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_VectorPairStringTextFormatting___destroy___0(self)};function TextFormatting(){throw"cannot construct a TextFormatting, no constructor in IDL"}TextFormatting.prototype=Object.create(WrapperObject.prototype);TextFormatting.prototype.constructor=TextFormatting;TextFormatting.prototype.__class__=TextFormatting;TextFormatting.__cache__={};Module["TextFormatting"]=TextFormatting;TextFormatting.prototype["GetUserData"]=TextFormatting.prototype.GetUserData=function(){var self=this.ptr;return _emscripten_bind_TextFormatting_GetUserData_0(self)};TextFormatting.prototype["__destroy__"]=TextFormatting.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_TextFormatting___destroy___0(self)};function InstructionSentenceFormatter(){throw"cannot construct a InstructionSentenceFormatter, no constructor in IDL"}InstructionSentenceFormatter.prototype=Object.create(WrapperObject.prototype);InstructionSentenceFormatter.prototype.constructor=InstructionSentenceFormatter;InstructionSentenceFormatter.prototype.__class__=InstructionSentenceFormatter;InstructionSentenceFormatter.__cache__={};Module["InstructionSentenceFormatter"]=InstructionSentenceFormatter;InstructionSentenceFormatter.prototype["STATIC_Get"]=InstructionSentenceFormatter.prototype.STATIC_Get=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_InstructionSentenceFormatter_STATIC_Get_0(self),InstructionSentenceFormatter)};InstructionSentenceFormatter.prototype["GetAsFormattedText"]=InstructionSentenceFormatter.prototype.GetAsFormattedText=function(instr,metadata){var self=this.ptr;if(instr&&typeof instr==="object")instr=instr.ptr;if(metadata&&typeof metadata==="object")metadata=metadata.ptr;return wrapPointer(_emscripten_bind_InstructionSentenceFormatter_GetAsFormattedText_2(self,instr,metadata),VectorPairStringTextFormatting)};InstructionSentenceFormatter.prototype["__destroy__"]=InstructionSentenceFormatter.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_InstructionSentenceFormatter___destroy___0(self)};function ParameterOptions(){throw"cannot construct a ParameterOptions, no constructor in IDL"}ParameterOptions.prototype=Object.create(WrapperObject.prototype);ParameterOptions.prototype.constructor=ParameterOptions;ParameterOptions.prototype.__class__=ParameterOptions;ParameterOptions.__cache__={};Module["ParameterOptions"]=ParameterOptions;ParameterOptions.prototype["SetDescription"]=ParameterOptions.prototype.SetDescription=function(description){var self=this.ptr;ensureCache.prepare();if(description&&typeof description==="object")description=description.ptr;else description=ensureString(description);return wrapPointer(_emscripten_bind_ParameterOptions_SetDescription_1(self,description),ParameterOptions)};ParameterOptions.prototype["SetTypeExtraInfo"]=ParameterOptions.prototype.SetTypeExtraInfo=function(typeExtraInfo){var self=this.ptr;ensureCache.prepare();if(typeExtraInfo&&typeof typeExtraInfo==="object")typeExtraInfo=typeExtraInfo.ptr;else typeExtraInfo=ensureString(typeExtraInfo);return wrapPointer(_emscripten_bind_ParameterOptions_SetTypeExtraInfo_1(self,typeExtraInfo),ParameterOptions)};ParameterOptions.prototype["STATIC_MakeNewOptions"]=ParameterOptions.prototype.STATIC_MakeNewOptions=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_ParameterOptions_STATIC_MakeNewOptions_0(self),ParameterOptions)};ParameterOptions.prototype["__destroy__"]=ParameterOptions.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_ParameterOptions___destroy___0(self)};function InstructionMetadata(){this.ptr=_emscripten_bind_InstructionMetadata_InstructionMetadata_0();getCache(InstructionMetadata)[this.ptr]=this}InstructionMetadata.prototype=Object.create(AbstractFunctionMetadata.prototype);InstructionMetadata.prototype.constructor=InstructionMetadata;InstructionMetadata.prototype.__class__=InstructionMetadata;InstructionMetadata.__cache__={};Module["InstructionMetadata"]=InstructionMetadata;InstructionMetadata.prototype["GetFullName"]=InstructionMetadata.prototype.GetFullName=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_InstructionMetadata_GetFullName_0(self))};InstructionMetadata.prototype["GetDescription"]=InstructionMetadata.prototype.GetDescription=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_InstructionMetadata_GetDescription_0(self))};InstructionMetadata.prototype["GetSentence"]=InstructionMetadata.prototype.GetSentence=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_InstructionMetadata_GetSentence_0(self))};InstructionMetadata.prototype["GetGroup"]=InstructionMetadata.prototype.GetGroup=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_InstructionMetadata_GetGroup_0(self))};InstructionMetadata.prototype["GetIconFilename"]=InstructionMetadata.prototype.GetIconFilename=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_InstructionMetadata_GetIconFilename_0(self))};InstructionMetadata.prototype["GetSmallIconFilename"]=InstructionMetadata.prototype.GetSmallIconFilename=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_InstructionMetadata_GetSmallIconFilename_0(self))};InstructionMetadata.prototype["GetHelpPath"]=InstructionMetadata.prototype.GetHelpPath=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_InstructionMetadata_GetHelpPath_0(self))};InstructionMetadata.prototype["CanHaveSubInstructions"]=InstructionMetadata.prototype.CanHaveSubInstructions=function(){var self=this.ptr;return!!_emscripten_bind_InstructionMetadata_CanHaveSubInstructions_0(self)};InstructionMetadata.prototype["GetParameter"]=InstructionMetadata.prototype.GetParameter=function(index){var self=this.ptr;if(index&&typeof index==="object")index=index.ptr;return wrapPointer(_emscripten_bind_InstructionMetadata_GetParameter_1(self,index),ParameterMetadata)};InstructionMetadata.prototype["GetParametersCount"]=InstructionMetadata.prototype.GetParametersCount=function(){var self=this.ptr;return _emscripten_bind_InstructionMetadata_GetParametersCount_0(self)};InstructionMetadata.prototype["GetParameters"]=InstructionMetadata.prototype.GetParameters=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_InstructionMetadata_GetParameters_0(self),ParameterMetadataContainer)};InstructionMetadata.prototype["GetUsageComplexity"]=InstructionMetadata.prototype.GetUsageComplexity=function(){var self=this.ptr;return _emscripten_bind_InstructionMetadata_GetUsageComplexity_0(self)};InstructionMetadata.prototype["IsHidden"]=InstructionMetadata.prototype.IsHidden=function(){var self=this.ptr;return!!_emscripten_bind_InstructionMetadata_IsHidden_0(self)};InstructionMetadata.prototype["GetDeprecationMessage"]=InstructionMetadata.prototype.GetDeprecationMessage=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_InstructionMetadata_GetDeprecationMessage_0(self))};InstructionMetadata.prototype["IsPrivate"]=InstructionMetadata.prototype.IsPrivate=function(){var self=this.ptr;return!!_emscripten_bind_InstructionMetadata_IsPrivate_0(self)};InstructionMetadata.prototype["IsAsync"]=InstructionMetadata.prototype.IsAsync=function(){var self=this.ptr;return!!_emscripten_bind_InstructionMetadata_IsAsync_0(self)};InstructionMetadata.prototype["IsOptionallyAsync"]=InstructionMetadata.prototype.IsOptionallyAsync=function(){var self=this.ptr;return!!_emscripten_bind_InstructionMetadata_IsOptionallyAsync_0(self)};InstructionMetadata.prototype["IsRelevantForLayoutEvents"]=InstructionMetadata.prototype.IsRelevantForLayoutEvents=function(){var self=this.ptr;return!!_emscripten_bind_InstructionMetadata_IsRelevantForLayoutEvents_0(self)};InstructionMetadata.prototype["IsRelevantForFunctionEvents"]=InstructionMetadata.prototype.IsRelevantForFunctionEvents=function(){var self=this.ptr;return!!_emscripten_bind_InstructionMetadata_IsRelevantForFunctionEvents_0(self)};InstructionMetadata.prototype["IsRelevantForAsynchronousFunctionEvents"]=InstructionMetadata.prototype.IsRelevantForAsynchronousFunctionEvents=function(){var self=this.ptr;return!!_emscripten_bind_InstructionMetadata_IsRelevantForAsynchronousFunctionEvents_0(self)};InstructionMetadata.prototype["IsRelevantForCustomObjectEvents"]=InstructionMetadata.prototype.IsRelevantForCustomObjectEvents=function(){var self=this.ptr;return!!_emscripten_bind_InstructionMetadata_IsRelevantForCustomObjectEvents_0(self)};InstructionMetadata.prototype["SetCanHaveSubInstructions"]=InstructionMetadata.prototype.SetCanHaveSubInstructions=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_InstructionMetadata_SetCanHaveSubInstructions_0(self),InstructionMetadata)};InstructionMetadata.prototype["SetHelpPath"]=InstructionMetadata.prototype.SetHelpPath=function(helpPath){var self=this.ptr;ensureCache.prepare();if(helpPath&&typeof helpPath==="object")helpPath=helpPath.ptr;else helpPath=ensureString(helpPath);return wrapPointer(_emscripten_bind_InstructionMetadata_SetHelpPath_1(self,helpPath),InstructionMetadata)};InstructionMetadata.prototype["SetHidden"]=InstructionMetadata.prototype.SetHidden=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_InstructionMetadata_SetHidden_0(self),InstructionMetadata)};InstructionMetadata.prototype["SetPrivate"]=InstructionMetadata.prototype.SetPrivate=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_InstructionMetadata_SetPrivate_0(self),InstructionMetadata)};InstructionMetadata.prototype["SetRelevantForLayoutEventsOnly"]=InstructionMetadata.prototype.SetRelevantForLayoutEventsOnly=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_InstructionMetadata_SetRelevantForLayoutEventsOnly_0(self),InstructionMetadata)};InstructionMetadata.prototype["SetRelevantForFunctionEventsOnly"]=InstructionMetadata.prototype.SetRelevantForFunctionEventsOnly=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_InstructionMetadata_SetRelevantForFunctionEventsOnly_0(self),InstructionMetadata)};InstructionMetadata.prototype["SetRelevantForAsynchronousFunctionEventsOnly"]=InstructionMetadata.prototype.SetRelevantForAsynchronousFunctionEventsOnly=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_InstructionMetadata_SetRelevantForAsynchronousFunctionEventsOnly_0(self),InstructionMetadata)};InstructionMetadata.prototype["SetRelevantForCustomObjectEventsOnly"]=InstructionMetadata.prototype.SetRelevantForCustomObjectEventsOnly=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_InstructionMetadata_SetRelevantForCustomObjectEventsOnly_0(self),InstructionMetadata)};InstructionMetadata.prototype["AddParameter"]=InstructionMetadata.prototype.AddParameter=function(type,description,optionalObjectType,parameterIsOptional){var self=this.ptr;ensureCache.prepare();if(type&&typeof type==="object")type=type.ptr;else type=ensureString(type);if(description&&typeof description==="object")description=description.ptr;else description=ensureString(description);if(optionalObjectType&&typeof optionalObjectType==="object")optionalObjectType=optionalObjectType.ptr;else optionalObjectType=ensureString(optionalObjectType);if(parameterIsOptional&&typeof parameterIsOptional==="object")parameterIsOptional=parameterIsOptional.ptr;if(optionalObjectType===undefined){return wrapPointer(_emscripten_bind_InstructionMetadata_AddParameter_2(self,type,description),InstructionMetadata)}if(parameterIsOptional===undefined){return wrapPointer(_emscripten_bind_InstructionMetadata_AddParameter_3(self,type,description,optionalObjectType),InstructionMetadata)}return wrapPointer(_emscripten_bind_InstructionMetadata_AddParameter_4(self,type,description,optionalObjectType,parameterIsOptional),InstructionMetadata)};InstructionMetadata.prototype["AddCodeOnlyParameter"]=InstructionMetadata.prototype.AddCodeOnlyParameter=function(type,supplementaryInformation){var self=this.ptr;ensureCache.prepare();if(type&&typeof type==="object")type=type.ptr;else type=ensureString(type);if(supplementaryInformation&&typeof supplementaryInformation==="object")supplementaryInformation=supplementaryInformation.ptr;else supplementaryInformation=ensureString(supplementaryInformation);return wrapPointer(_emscripten_bind_InstructionMetadata_AddCodeOnlyParameter_2(self,type,supplementaryInformation),InstructionMetadata)};InstructionMetadata.prototype["SetDefaultValue"]=InstructionMetadata.prototype.SetDefaultValue=function(defaultValue){var self=this.ptr;ensureCache.prepare();if(defaultValue&&typeof defaultValue==="object")defaultValue=defaultValue.ptr;else defaultValue=ensureString(defaultValue);return wrapPointer(_emscripten_bind_InstructionMetadata_SetDefaultValue_1(self,defaultValue),InstructionMetadata)};InstructionMetadata.prototype["SetParameterLongDescription"]=InstructionMetadata.prototype.SetParameterLongDescription=function(longDescription){var self=this.ptr;ensureCache.prepare();if(longDescription&&typeof longDescription==="object")longDescription=longDescription.ptr;else longDescription=ensureString(longDescription);return wrapPointer(_emscripten_bind_InstructionMetadata_SetParameterLongDescription_1(self,longDescription),InstructionMetadata)};InstructionMetadata.prototype["SetParameterHint"]=InstructionMetadata.prototype.SetParameterHint=function(hint){var self=this.ptr;ensureCache.prepare();if(hint&&typeof hint==="object")hint=hint.ptr;else hint=ensureString(hint);return wrapPointer(_emscripten_bind_InstructionMetadata_SetParameterHint_1(self,hint),InstructionMetadata)};InstructionMetadata.prototype["SetParameterExtraInfo"]=InstructionMetadata.prototype.SetParameterExtraInfo=function(extraInfo){var self=this.ptr;ensureCache.prepare();if(extraInfo&&typeof extraInfo==="object")extraInfo=extraInfo.ptr;else extraInfo=ensureString(extraInfo);return wrapPointer(_emscripten_bind_InstructionMetadata_SetParameterExtraInfo_1(self,extraInfo),InstructionMetadata)};InstructionMetadata.prototype["SetHint"]=InstructionMetadata.prototype.SetHint=function(hint){var self=this.ptr;ensureCache.prepare();if(hint&&typeof hint==="object")hint=hint.ptr;else hint=ensureString(hint);return wrapPointer(_emscripten_bind_InstructionMetadata_SetHint_1(self,hint),InstructionMetadata)};InstructionMetadata.prototype["GetHint"]=InstructionMetadata.prototype.GetHint=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_InstructionMetadata_GetHint_0(self))};InstructionMetadata.prototype["UseStandardOperatorParameters"]=InstructionMetadata.prototype.UseStandardOperatorParameters=function(type,options){var self=this.ptr;ensureCache.prepare();if(type&&typeof type==="object")type=type.ptr;else type=ensureString(type);if(options&&typeof options==="object")options=options.ptr;return wrapPointer(_emscripten_bind_InstructionMetadata_UseStandardOperatorParameters_2(self,type,options),InstructionMetadata)};InstructionMetadata.prototype["UseStandardRelationalOperatorParameters"]=InstructionMetadata.prototype.UseStandardRelationalOperatorParameters=function(type,options){var self=this.ptr;ensureCache.prepare();if(type&&typeof type==="object")type=type.ptr;else type=ensureString(type);if(options&&typeof options==="object")options=options.ptr;return wrapPointer(_emscripten_bind_InstructionMetadata_UseStandardRelationalOperatorParameters_2(self,type,options),InstructionMetadata)};InstructionMetadata.prototype["MarkAsSimple"]=InstructionMetadata.prototype.MarkAsSimple=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_InstructionMetadata_MarkAsSimple_0(self),InstructionMetadata)};InstructionMetadata.prototype["MarkAsAdvanced"]=InstructionMetadata.prototype.MarkAsAdvanced=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_InstructionMetadata_MarkAsAdvanced_0(self),InstructionMetadata)};InstructionMetadata.prototype["MarkAsComplex"]=InstructionMetadata.prototype.MarkAsComplex=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_InstructionMetadata_MarkAsComplex_0(self),InstructionMetadata)};InstructionMetadata.prototype["GetCodeExtraInformation"]=InstructionMetadata.prototype.GetCodeExtraInformation=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_InstructionMetadata_GetCodeExtraInformation_0(self),InstructionMetadata)};InstructionMetadata.prototype["SetFunctionName"]=InstructionMetadata.prototype.SetFunctionName=function(functionName_){var self=this.ptr;ensureCache.prepare();if(functionName_&&typeof functionName_==="object")functionName_=functionName_.ptr;else functionName_=ensureString(functionName_);return wrapPointer(_emscripten_bind_InstructionMetadata_SetFunctionName_1(self,functionName_),InstructionMetadata)};InstructionMetadata.prototype["SetAsyncFunctionName"]=InstructionMetadata.prototype.SetAsyncFunctionName=function(functionName_){var self=this.ptr;ensureCache.prepare();if(functionName_&&typeof functionName_==="object")functionName_=functionName_.ptr;else functionName_=ensureString(functionName_);return wrapPointer(_emscripten_bind_InstructionMetadata_SetAsyncFunctionName_1(self,functionName_),InstructionMetadata)};InstructionMetadata.prototype["GetFunctionName"]=InstructionMetadata.prototype.GetFunctionName=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_InstructionMetadata_GetFunctionName_0(self))};InstructionMetadata.prototype["GetAsyncFunctionName"]=InstructionMetadata.prototype.GetAsyncFunctionName=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_InstructionMetadata_GetAsyncFunctionName_0(self))};InstructionMetadata.prototype["SetManipulatedType"]=InstructionMetadata.prototype.SetManipulatedType=function(type_){var self=this.ptr;ensureCache.prepare();if(type_&&typeof type_==="object")type_=type_.ptr;else type_=ensureString(type_);return wrapPointer(_emscripten_bind_InstructionMetadata_SetManipulatedType_1(self,type_),InstructionMetadata)};InstructionMetadata.prototype["SetGetter"]=InstructionMetadata.prototype.SetGetter=function(getter){var self=this.ptr;ensureCache.prepare();if(getter&&typeof getter==="object")getter=getter.ptr;else getter=ensureString(getter);return wrapPointer(_emscripten_bind_InstructionMetadata_SetGetter_1(self,getter),InstructionMetadata)};InstructionMetadata.prototype["SetMutators"]=InstructionMetadata.prototype.SetMutators=function(mutators){var self=this.ptr;if(mutators&&typeof mutators==="object")mutators=mutators.ptr;return wrapPointer(_emscripten_bind_InstructionMetadata_SetMutators_1(self,mutators),InstructionMetadata)};InstructionMetadata.prototype["SetIncludeFile"]=InstructionMetadata.prototype.SetIncludeFile=function(includeFile){var self=this.ptr;ensureCache.prepare();if(includeFile&&typeof includeFile==="object")includeFile=includeFile.ptr;else includeFile=ensureString(includeFile);return wrapPointer(_emscripten_bind_InstructionMetadata_SetIncludeFile_1(self,includeFile),InstructionMetadata)};InstructionMetadata.prototype["AddIncludeFile"]=InstructionMetadata.prototype.AddIncludeFile=function(includeFile){var self=this.ptr;ensureCache.prepare();if(includeFile&&typeof includeFile==="object")includeFile=includeFile.ptr;else includeFile=ensureString(includeFile);return wrapPointer(_emscripten_bind_InstructionMetadata_AddIncludeFile_1(self,includeFile),InstructionMetadata)};InstructionMetadata.prototype["GetIncludeFiles"]=InstructionMetadata.prototype.GetIncludeFiles=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_InstructionMetadata_GetIncludeFiles_0(self),VectorString)};InstructionMetadata.prototype["__destroy__"]=InstructionMetadata.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_InstructionMetadata___destroy___0(self)};function ExpressionMetadata(returnType,extensionNamespace,name,fullname,description,group,smallicon){ensureCache.prepare();if(returnType&&typeof returnType==="object")returnType=returnType.ptr;else returnType=ensureString(returnType);if(extensionNamespace&&typeof extensionNamespace==="object")extensionNamespace=extensionNamespace.ptr;else extensionNamespace=ensureString(extensionNamespace);if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);if(fullname&&typeof fullname==="object")fullname=fullname.ptr;else fullname=ensureString(fullname);if(description&&typeof description==="object")description=description.ptr;else description=ensureString(description);if(group&&typeof group==="object")group=group.ptr;else group=ensureString(group);if(smallicon&&typeof smallicon==="object")smallicon=smallicon.ptr;else smallicon=ensureString(smallicon);this.ptr=_emscripten_bind_ExpressionMetadata_ExpressionMetadata_7(returnType,extensionNamespace,name,fullname,description,group,smallicon);getCache(ExpressionMetadata)[this.ptr]=this}ExpressionMetadata.prototype=Object.create(AbstractFunctionMetadata.prototype);ExpressionMetadata.prototype.constructor=ExpressionMetadata;ExpressionMetadata.prototype.__class__=ExpressionMetadata;ExpressionMetadata.__cache__={};Module["ExpressionMetadata"]=ExpressionMetadata;ExpressionMetadata.prototype["GetReturnType"]=ExpressionMetadata.prototype.GetReturnType=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_ExpressionMetadata_GetReturnType_0(self))};ExpressionMetadata.prototype["GetFullName"]=ExpressionMetadata.prototype.GetFullName=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_ExpressionMetadata_GetFullName_0(self))};ExpressionMetadata.prototype["GetDescription"]=ExpressionMetadata.prototype.GetDescription=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_ExpressionMetadata_GetDescription_0(self))};ExpressionMetadata.prototype["GetGroup"]=ExpressionMetadata.prototype.GetGroup=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_ExpressionMetadata_GetGroup_0(self))};ExpressionMetadata.prototype["GetSmallIconFilename"]=ExpressionMetadata.prototype.GetSmallIconFilename=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_ExpressionMetadata_GetSmallIconFilename_0(self))};ExpressionMetadata.prototype["GetHelpPath"]=ExpressionMetadata.prototype.GetHelpPath=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_ExpressionMetadata_GetHelpPath_0(self))};ExpressionMetadata.prototype["IsShown"]=ExpressionMetadata.prototype.IsShown=function(){var self=this.ptr;return!!_emscripten_bind_ExpressionMetadata_IsShown_0(self)};ExpressionMetadata.prototype["IsPrivate"]=ExpressionMetadata.prototype.IsPrivate=function(){var self=this.ptr;return!!_emscripten_bind_ExpressionMetadata_IsPrivate_0(self)};ExpressionMetadata.prototype["IsDeprecated"]=ExpressionMetadata.prototype.IsDeprecated=function(){var self=this.ptr;return!!_emscripten_bind_ExpressionMetadata_IsDeprecated_0(self)};ExpressionMetadata.prototype["GetDeprecationMessage"]=ExpressionMetadata.prototype.GetDeprecationMessage=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_ExpressionMetadata_GetDeprecationMessage_0(self))};ExpressionMetadata.prototype["IsRelevantForLayoutEvents"]=ExpressionMetadata.prototype.IsRelevantForLayoutEvents=function(){var self=this.ptr;return!!_emscripten_bind_ExpressionMetadata_IsRelevantForLayoutEvents_0(self)};ExpressionMetadata.prototype["IsRelevantForFunctionEvents"]=ExpressionMetadata.prototype.IsRelevantForFunctionEvents=function(){var self=this.ptr;return!!_emscripten_bind_ExpressionMetadata_IsRelevantForFunctionEvents_0(self)};ExpressionMetadata.prototype["IsRelevantForAsynchronousFunctionEvents"]=ExpressionMetadata.prototype.IsRelevantForAsynchronousFunctionEvents=function(){var self=this.ptr;return!!_emscripten_bind_ExpressionMetadata_IsRelevantForAsynchronousFunctionEvents_0(self)};ExpressionMetadata.prototype["IsRelevantForCustomObjectEvents"]=ExpressionMetadata.prototype.IsRelevantForCustomObjectEvents=function(){var self=this.ptr;return!!_emscripten_bind_ExpressionMetadata_IsRelevantForCustomObjectEvents_0(self)};ExpressionMetadata.prototype["GetParameter"]=ExpressionMetadata.prototype.GetParameter=function(id){var self=this.ptr;if(id&&typeof id==="object")id=id.ptr;return wrapPointer(_emscripten_bind_ExpressionMetadata_GetParameter_1(self,id),ParameterMetadata)};ExpressionMetadata.prototype["GetParametersCount"]=ExpressionMetadata.prototype.GetParametersCount=function(){var self=this.ptr;return _emscripten_bind_ExpressionMetadata_GetParametersCount_0(self)};ExpressionMetadata.prototype["GetParameters"]=ExpressionMetadata.prototype.GetParameters=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_ExpressionMetadata_GetParameters_0(self),ParameterMetadataContainer)};ExpressionMetadata.prototype["SetHidden"]=ExpressionMetadata.prototype.SetHidden=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_ExpressionMetadata_SetHidden_0(self),ExpressionMetadata)};ExpressionMetadata.prototype["SetPrivate"]=ExpressionMetadata.prototype.SetPrivate=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_ExpressionMetadata_SetPrivate_0(self),ExpressionMetadata)};ExpressionMetadata.prototype["SetRelevantForLayoutEventsOnly"]=ExpressionMetadata.prototype.SetRelevantForLayoutEventsOnly=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_ExpressionMetadata_SetRelevantForLayoutEventsOnly_0(self),ExpressionMetadata)};ExpressionMetadata.prototype["SetRelevantForFunctionEventsOnly"]=ExpressionMetadata.prototype.SetRelevantForFunctionEventsOnly=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_ExpressionMetadata_SetRelevantForFunctionEventsOnly_0(self),ExpressionMetadata)};ExpressionMetadata.prototype["SetRelevantForAsynchronousFunctionEventsOnly"]=ExpressionMetadata.prototype.SetRelevantForAsynchronousFunctionEventsOnly=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_ExpressionMetadata_SetRelevantForAsynchronousFunctionEventsOnly_0(self),ExpressionMetadata)};ExpressionMetadata.prototype["SetRelevantForCustomObjectEventsOnly"]=ExpressionMetadata.prototype.SetRelevantForCustomObjectEventsOnly=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_ExpressionMetadata_SetRelevantForCustomObjectEventsOnly_0(self),ExpressionMetadata)};ExpressionMetadata.prototype["AddParameter"]=ExpressionMetadata.prototype.AddParameter=function(type,description,optionalObjectType,parameterIsOptional){var self=this.ptr;ensureCache.prepare();if(type&&typeof type==="object")type=type.ptr;else type=ensureString(type);if(description&&typeof description==="object")description=description.ptr;else description=ensureString(description);if(optionalObjectType&&typeof optionalObjectType==="object")optionalObjectType=optionalObjectType.ptr;else optionalObjectType=ensureString(optionalObjectType);if(parameterIsOptional&&typeof parameterIsOptional==="object")parameterIsOptional=parameterIsOptional.ptr;if(optionalObjectType===undefined){return wrapPointer(_emscripten_bind_ExpressionMetadata_AddParameter_2(self,type,description),ExpressionMetadata)}if(parameterIsOptional===undefined){return wrapPointer(_emscripten_bind_ExpressionMetadata_AddParameter_3(self,type,description,optionalObjectType),ExpressionMetadata)}return wrapPointer(_emscripten_bind_ExpressionMetadata_AddParameter_4(self,type,description,optionalObjectType,parameterIsOptional),ExpressionMetadata)};ExpressionMetadata.prototype["AddCodeOnlyParameter"]=ExpressionMetadata.prototype.AddCodeOnlyParameter=function(type,supplementaryInformation){var self=this.ptr;ensureCache.prepare();if(type&&typeof type==="object")type=type.ptr;else type=ensureString(type);if(supplementaryInformation&&typeof supplementaryInformation==="object")supplementaryInformation=supplementaryInformation.ptr;else supplementaryInformation=ensureString(supplementaryInformation);return wrapPointer(_emscripten_bind_ExpressionMetadata_AddCodeOnlyParameter_2(self,type,supplementaryInformation),ExpressionMetadata)};ExpressionMetadata.prototype["SetDefaultValue"]=ExpressionMetadata.prototype.SetDefaultValue=function(defaultValue){var self=this.ptr;ensureCache.prepare();if(defaultValue&&typeof defaultValue==="object")defaultValue=defaultValue.ptr;else defaultValue=ensureString(defaultValue);return wrapPointer(_emscripten_bind_ExpressionMetadata_SetDefaultValue_1(self,defaultValue),ExpressionMetadata)};ExpressionMetadata.prototype["SetParameterLongDescription"]=ExpressionMetadata.prototype.SetParameterLongDescription=function(longDescription){var self=this.ptr;ensureCache.prepare();if(longDescription&&typeof longDescription==="object")longDescription=longDescription.ptr;else longDescription=ensureString(longDescription);return wrapPointer(_emscripten_bind_ExpressionMetadata_SetParameterLongDescription_1(self,longDescription),ExpressionMetadata)};ExpressionMetadata.prototype["SetParameterHint"]=ExpressionMetadata.prototype.SetParameterHint=function(hint){var self=this.ptr;ensureCache.prepare();if(hint&&typeof hint==="object")hint=hint.ptr;else hint=ensureString(hint);return wrapPointer(_emscripten_bind_ExpressionMetadata_SetParameterHint_1(self,hint),ExpressionMetadata)};ExpressionMetadata.prototype["SetParameterExtraInfo"]=ExpressionMetadata.prototype.SetParameterExtraInfo=function(extraInfo){var self=this.ptr;ensureCache.prepare();if(extraInfo&&typeof extraInfo==="object")extraInfo=extraInfo.ptr;else extraInfo=ensureString(extraInfo);return wrapPointer(_emscripten_bind_ExpressionMetadata_SetParameterExtraInfo_1(self,extraInfo),ExpressionMetadata)};ExpressionMetadata.prototype["GetCodeExtraInformation"]=ExpressionMetadata.prototype.GetCodeExtraInformation=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_ExpressionMetadata_GetCodeExtraInformation_0(self),ExpressionMetadata)};ExpressionMetadata.prototype["SetFunctionName"]=ExpressionMetadata.prototype.SetFunctionName=function(functionName){var self=this.ptr;ensureCache.prepare();if(functionName&&typeof functionName==="object")functionName=functionName.ptr;else functionName=ensureString(functionName);return wrapPointer(_emscripten_bind_ExpressionMetadata_SetFunctionName_1(self,functionName),ExpressionMetadata)};ExpressionMetadata.prototype["GetFunctionName"]=ExpressionMetadata.prototype.GetFunctionName=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_ExpressionMetadata_GetFunctionName_0(self))};ExpressionMetadata.prototype["SetStatic"]=ExpressionMetadata.prototype.SetStatic=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_ExpressionMetadata_SetStatic_0(self),ExpressionMetadata)};ExpressionMetadata.prototype["SetIncludeFile"]=ExpressionMetadata.prototype.SetIncludeFile=function(includeFile){var self=this.ptr;ensureCache.prepare();if(includeFile&&typeof includeFile==="object")includeFile=includeFile.ptr;else includeFile=ensureString(includeFile);return wrapPointer(_emscripten_bind_ExpressionMetadata_SetIncludeFile_1(self,includeFile),ExpressionMetadata)};ExpressionMetadata.prototype["AddIncludeFile"]=ExpressionMetadata.prototype.AddIncludeFile=function(includeFile){var self=this.ptr;ensureCache.prepare();if(includeFile&&typeof includeFile==="object")includeFile=includeFile.ptr;else includeFile=ensureString(includeFile);return wrapPointer(_emscripten_bind_ExpressionMetadata_AddIncludeFile_1(self,includeFile),ExpressionMetadata)};ExpressionMetadata.prototype["GetIncludeFiles"]=ExpressionMetadata.prototype.GetIncludeFiles=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_ExpressionMetadata_GetIncludeFiles_0(self),VectorString)};ExpressionMetadata.prototype["__destroy__"]=ExpressionMetadata.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_ExpressionMetadata___destroy___0(self)};function MultipleInstructionMetadata(){throw"cannot construct a MultipleInstructionMetadata, no constructor in IDL"}MultipleInstructionMetadata.prototype=Object.create(AbstractFunctionMetadata.prototype);MultipleInstructionMetadata.prototype.constructor=MultipleInstructionMetadata;MultipleInstructionMetadata.prototype.__class__=MultipleInstructionMetadata;MultipleInstructionMetadata.__cache__={};Module["MultipleInstructionMetadata"]=MultipleInstructionMetadata;MultipleInstructionMetadata.prototype["AddParameter"]=MultipleInstructionMetadata.prototype.AddParameter=function(type,description,optionalObjectType,parameterIsOptional){var self=this.ptr;ensureCache.prepare();if(type&&typeof type==="object")type=type.ptr;else type=ensureString(type);if(description&&typeof description==="object")description=description.ptr;else description=ensureString(description);if(optionalObjectType&&typeof optionalObjectType==="object")optionalObjectType=optionalObjectType.ptr;else optionalObjectType=ensureString(optionalObjectType);if(parameterIsOptional&&typeof parameterIsOptional==="object")parameterIsOptional=parameterIsOptional.ptr;if(optionalObjectType===undefined){return wrapPointer(_emscripten_bind_MultipleInstructionMetadata_AddParameter_2(self,type,description),MultipleInstructionMetadata)}if(parameterIsOptional===undefined){return wrapPointer(_emscripten_bind_MultipleInstructionMetadata_AddParameter_3(self,type,description,optionalObjectType),MultipleInstructionMetadata)}return wrapPointer(_emscripten_bind_MultipleInstructionMetadata_AddParameter_4(self,type,description,optionalObjectType,parameterIsOptional),MultipleInstructionMetadata)};MultipleInstructionMetadata.prototype["AddCodeOnlyParameter"]=MultipleInstructionMetadata.prototype.AddCodeOnlyParameter=function(type,supplementaryInformation){var self=this.ptr;ensureCache.prepare();if(type&&typeof type==="object")type=type.ptr;else type=ensureString(type);if(supplementaryInformation&&typeof supplementaryInformation==="object")supplementaryInformation=supplementaryInformation.ptr;else supplementaryInformation=ensureString(supplementaryInformation);return wrapPointer(_emscripten_bind_MultipleInstructionMetadata_AddCodeOnlyParameter_2(self,type,supplementaryInformation),MultipleInstructionMetadata)};MultipleInstructionMetadata.prototype["SetDefaultValue"]=MultipleInstructionMetadata.prototype.SetDefaultValue=function(defaultValue){var self=this.ptr;ensureCache.prepare();if(defaultValue&&typeof defaultValue==="object")defaultValue=defaultValue.ptr;else defaultValue=ensureString(defaultValue);return wrapPointer(_emscripten_bind_MultipleInstructionMetadata_SetDefaultValue_1(self,defaultValue),MultipleInstructionMetadata)};MultipleInstructionMetadata.prototype["SetParameterLongDescription"]=MultipleInstructionMetadata.prototype.SetParameterLongDescription=function(longDescription){var self=this.ptr;ensureCache.prepare();if(longDescription&&typeof longDescription==="object")longDescription=longDescription.ptr;else longDescription=ensureString(longDescription);return wrapPointer(_emscripten_bind_MultipleInstructionMetadata_SetParameterLongDescription_1(self,longDescription),MultipleInstructionMetadata)};MultipleInstructionMetadata.prototype["SetParameterHint"]=MultipleInstructionMetadata.prototype.SetParameterHint=function(hint){var self=this.ptr;ensureCache.prepare();if(hint&&typeof hint==="object")hint=hint.ptr;else hint=ensureString(hint);return wrapPointer(_emscripten_bind_MultipleInstructionMetadata_SetParameterHint_1(self,hint),MultipleInstructionMetadata)};MultipleInstructionMetadata.prototype["SetParameterExtraInfo"]=MultipleInstructionMetadata.prototype.SetParameterExtraInfo=function(extraInfo){var self=this.ptr;ensureCache.prepare();if(extraInfo&&typeof extraInfo==="object")extraInfo=extraInfo.ptr;else extraInfo=ensureString(extraInfo);return wrapPointer(_emscripten_bind_MultipleInstructionMetadata_SetParameterExtraInfo_1(self,extraInfo),MultipleInstructionMetadata)};MultipleInstructionMetadata.prototype["UseStandardParameters"]=MultipleInstructionMetadata.prototype.UseStandardParameters=function(type,options){var self=this.ptr;ensureCache.prepare();if(type&&typeof type==="object")type=type.ptr;else type=ensureString(type);if(options&&typeof options==="object")options=options.ptr;return wrapPointer(_emscripten_bind_MultipleInstructionMetadata_UseStandardParameters_2(self,type,options),MultipleInstructionMetadata)};MultipleInstructionMetadata.prototype["SetHidden"]=MultipleInstructionMetadata.prototype.SetHidden=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_MultipleInstructionMetadata_SetHidden_0(self),MultipleInstructionMetadata)};MultipleInstructionMetadata.prototype["SetFunctionName"]=MultipleInstructionMetadata.prototype.SetFunctionName=function(functionName){var self=this.ptr;ensureCache.prepare();if(functionName&&typeof functionName==="object")functionName=functionName.ptr;else functionName=ensureString(functionName);return wrapPointer(_emscripten_bind_MultipleInstructionMetadata_SetFunctionName_1(self,functionName),MultipleInstructionMetadata)};MultipleInstructionMetadata.prototype["SetGetter"]=MultipleInstructionMetadata.prototype.SetGetter=function(getter){var self=this.ptr;ensureCache.prepare();if(getter&&typeof getter==="object")getter=getter.ptr;else getter=ensureString(getter);return wrapPointer(_emscripten_bind_MultipleInstructionMetadata_SetGetter_1(self,getter),MultipleInstructionMetadata)};MultipleInstructionMetadata.prototype["SetIncludeFile"]=MultipleInstructionMetadata.prototype.SetIncludeFile=function(includeFile){var self=this.ptr;ensureCache.prepare();if(includeFile&&typeof includeFile==="object")includeFile=includeFile.ptr;else includeFile=ensureString(includeFile);return wrapPointer(_emscripten_bind_MultipleInstructionMetadata_SetIncludeFile_1(self,includeFile),MultipleInstructionMetadata)};MultipleInstructionMetadata.prototype["AddIncludeFile"]=MultipleInstructionMetadata.prototype.AddIncludeFile=function(includeFile){var self=this.ptr;ensureCache.prepare();if(includeFile&&typeof includeFile==="object")includeFile=includeFile.ptr;else includeFile=ensureString(includeFile);return wrapPointer(_emscripten_bind_MultipleInstructionMetadata_AddIncludeFile_1(self,includeFile),MultipleInstructionMetadata)};MultipleInstructionMetadata.prototype["GetIncludeFiles"]=MultipleInstructionMetadata.prototype.GetIncludeFiles=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_MultipleInstructionMetadata_GetIncludeFiles_0(self),VectorString)};MultipleInstructionMetadata.prototype["MarkAsSimple"]=MultipleInstructionMetadata.prototype.MarkAsSimple=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_MultipleInstructionMetadata_MarkAsSimple_0(self),MultipleInstructionMetadata)};MultipleInstructionMetadata.prototype["MarkAsAdvanced"]=MultipleInstructionMetadata.prototype.MarkAsAdvanced=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_MultipleInstructionMetadata_MarkAsAdvanced_0(self),MultipleInstructionMetadata)};MultipleInstructionMetadata.prototype["MarkAsComplex"]=MultipleInstructionMetadata.prototype.MarkAsComplex=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_MultipleInstructionMetadata_MarkAsComplex_0(self),MultipleInstructionMetadata)};MultipleInstructionMetadata.prototype["SetPrivate"]=MultipleInstructionMetadata.prototype.SetPrivate=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_MultipleInstructionMetadata_SetPrivate_0(self),MultipleInstructionMetadata)};MultipleInstructionMetadata.prototype["__destroy__"]=MultipleInstructionMetadata.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_MultipleInstructionMetadata___destroy___0(self)};function DependencyMetadata(){this.ptr=_emscripten_bind_DependencyMetadata_DependencyMetadata_0();getCache(DependencyMetadata)[this.ptr]=this}DependencyMetadata.prototype=Object.create(WrapperObject.prototype);DependencyMetadata.prototype.constructor=DependencyMetadata;DependencyMetadata.prototype.__class__=DependencyMetadata;DependencyMetadata.__cache__={};Module["DependencyMetadata"]=DependencyMetadata;DependencyMetadata.prototype["GetName"]=DependencyMetadata.prototype.GetName=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_DependencyMetadata_GetName_0(self))};DependencyMetadata.prototype["SetName"]=DependencyMetadata.prototype.SetName=function(name_){var self=this.ptr;ensureCache.prepare();if(name_&&typeof name_==="object")name_=name_.ptr;else name_=ensureString(name_);return wrapPointer(_emscripten_bind_DependencyMetadata_SetName_1(self,name_),DependencyMetadata)};DependencyMetadata.prototype["GetExportName"]=DependencyMetadata.prototype.GetExportName=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_DependencyMetadata_GetExportName_0(self))};DependencyMetadata.prototype["SetExportName"]=DependencyMetadata.prototype.SetExportName=function(exportName_){var self=this.ptr;ensureCache.prepare();if(exportName_&&typeof exportName_==="object")exportName_=exportName_.ptr;else exportName_=ensureString(exportName_);return wrapPointer(_emscripten_bind_DependencyMetadata_SetExportName_1(self,exportName_),DependencyMetadata)};DependencyMetadata.prototype["GetVersion"]=DependencyMetadata.prototype.GetVersion=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_DependencyMetadata_GetVersion_0(self))};DependencyMetadata.prototype["SetVersion"]=DependencyMetadata.prototype.SetVersion=function(version_){var self=this.ptr;ensureCache.prepare();if(version_&&typeof version_==="object")version_=version_.ptr;else version_=ensureString(version_);return wrapPointer(_emscripten_bind_DependencyMetadata_SetVersion_1(self,version_),DependencyMetadata)};DependencyMetadata.prototype["GetDependencyType"]=DependencyMetadata.prototype.GetDependencyType=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_DependencyMetadata_GetDependencyType_0(self))};DependencyMetadata.prototype["SetDependencyType"]=DependencyMetadata.prototype.SetDependencyType=function(dependencyType_){var self=this.ptr;ensureCache.prepare();if(dependencyType_&&typeof dependencyType_==="object")dependencyType_=dependencyType_.ptr;else dependencyType_=ensureString(dependencyType_);return wrapPointer(_emscripten_bind_DependencyMetadata_SetDependencyType_1(self,dependencyType_),DependencyMetadata)};DependencyMetadata.prototype["SetExtraSetting"]=DependencyMetadata.prototype.SetExtraSetting=function(settingName,settingValue){var self=this.ptr;ensureCache.prepare();if(settingName&&typeof settingName==="object")settingName=settingName.ptr;else settingName=ensureString(settingName);if(settingValue&&typeof settingValue==="object")settingValue=settingValue.ptr;return wrapPointer(_emscripten_bind_DependencyMetadata_SetExtraSetting_2(self,settingName,settingValue),DependencyMetadata)};DependencyMetadata.prototype["GetAllExtraSettings"]=DependencyMetadata.prototype.GetAllExtraSettings=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_DependencyMetadata_GetAllExtraSettings_0(self),MapStringPropertyDescriptor)};DependencyMetadata.prototype["OnlyIfSomeExtraSettingsNonEmpty"]=DependencyMetadata.prototype.OnlyIfSomeExtraSettingsNonEmpty=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_DependencyMetadata_OnlyIfSomeExtraSettingsNonEmpty_0(self),DependencyMetadata)};DependencyMetadata.prototype["OnlyIfOtherDependencyIsExported"]=DependencyMetadata.prototype.OnlyIfOtherDependencyIsExported=function(otherDependency){var self=this.ptr;ensureCache.prepare();if(otherDependency&&typeof otherDependency==="object")otherDependency=otherDependency.ptr;else otherDependency=ensureString(otherDependency);return wrapPointer(_emscripten_bind_DependencyMetadata_OnlyIfOtherDependencyIsExported_1(self,otherDependency),DependencyMetadata)};DependencyMetadata.prototype["CopyFrom"]=DependencyMetadata.prototype.CopyFrom=function(dependencyMetadata){var self=this.ptr;if(dependencyMetadata&&typeof dependencyMetadata==="object")dependencyMetadata=dependencyMetadata.ptr;_emscripten_bind_DependencyMetadata_CopyFrom_1(self,dependencyMetadata)};DependencyMetadata.prototype["__destroy__"]=DependencyMetadata.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_DependencyMetadata___destroy___0(self)};function SourceFileMetadata(){this.ptr=_emscripten_bind_SourceFileMetadata_SourceFileMetadata_0();getCache(SourceFileMetadata)[this.ptr]=this}SourceFileMetadata.prototype=Object.create(WrapperObject.prototype);SourceFileMetadata.prototype.constructor=SourceFileMetadata;SourceFileMetadata.prototype.__class__=SourceFileMetadata;SourceFileMetadata.__cache__={};Module["SourceFileMetadata"]=SourceFileMetadata;SourceFileMetadata.prototype["GetResourceName"]=SourceFileMetadata.prototype.GetResourceName=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_SourceFileMetadata_GetResourceName_0(self))};SourceFileMetadata.prototype["SetResourceName"]=SourceFileMetadata.prototype.SetResourceName=function(resourceName_){var self=this.ptr;ensureCache.prepare();if(resourceName_&&typeof resourceName_==="object")resourceName_=resourceName_.ptr;else resourceName_=ensureString(resourceName_);return wrapPointer(_emscripten_bind_SourceFileMetadata_SetResourceName_1(self,resourceName_),SourceFileMetadata)};SourceFileMetadata.prototype["GetIncludePosition"]=SourceFileMetadata.prototype.GetIncludePosition=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_SourceFileMetadata_GetIncludePosition_0(self))};SourceFileMetadata.prototype["SetIncludePosition"]=SourceFileMetadata.prototype.SetIncludePosition=function(includePosition_){var self=this.ptr;ensureCache.prepare();if(includePosition_&&typeof includePosition_==="object")includePosition_=includePosition_.ptr;else includePosition_=ensureString(includePosition_);return wrapPointer(_emscripten_bind_SourceFileMetadata_SetIncludePosition_1(self,includePosition_),SourceFileMetadata)};SourceFileMetadata.prototype["__destroy__"]=SourceFileMetadata.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_SourceFileMetadata___destroy___0(self)};function ParameterMetadata(){this.ptr=_emscripten_bind_ParameterMetadata_ParameterMetadata_0();getCache(ParameterMetadata)[this.ptr]=this}ParameterMetadata.prototype=Object.create(WrapperObject.prototype);ParameterMetadata.prototype.constructor=ParameterMetadata;ParameterMetadata.prototype.__class__=ParameterMetadata;ParameterMetadata.__cache__={};Module["ParameterMetadata"]=ParameterMetadata;ParameterMetadata.prototype["GetType"]=ParameterMetadata.prototype.GetType=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_ParameterMetadata_GetType_0(self))};ParameterMetadata.prototype["SetType"]=ParameterMetadata.prototype.SetType=function(type_){var self=this.ptr;ensureCache.prepare();if(type_&&typeof type_==="object")type_=type_.ptr;else type_=ensureString(type_);return wrapPointer(_emscripten_bind_ParameterMetadata_SetType_1(self,type_),ParameterMetadata)};ParameterMetadata.prototype["GetName"]=ParameterMetadata.prototype.GetName=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_ParameterMetadata_GetName_0(self))};ParameterMetadata.prototype["SetName"]=ParameterMetadata.prototype.SetName=function(name_){var self=this.ptr;ensureCache.prepare();if(name_&&typeof name_==="object")name_=name_.ptr;else name_=ensureString(name_);return wrapPointer(_emscripten_bind_ParameterMetadata_SetName_1(self,name_),ParameterMetadata)};ParameterMetadata.prototype["GetExtraInfo"]=ParameterMetadata.prototype.GetExtraInfo=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_ParameterMetadata_GetExtraInfo_0(self))};ParameterMetadata.prototype["SetExtraInfo"]=ParameterMetadata.prototype.SetExtraInfo=function(extraInfo_){var self=this.ptr;ensureCache.prepare();if(extraInfo_&&typeof extraInfo_==="object")extraInfo_=extraInfo_.ptr;else extraInfo_=ensureString(extraInfo_);return wrapPointer(_emscripten_bind_ParameterMetadata_SetExtraInfo_1(self,extraInfo_),ParameterMetadata)};ParameterMetadata.prototype["IsOptional"]=ParameterMetadata.prototype.IsOptional=function(){var self=this.ptr;return!!_emscripten_bind_ParameterMetadata_IsOptional_0(self)};ParameterMetadata.prototype["SetOptional"]=ParameterMetadata.prototype.SetOptional=function(optional_){var self=this.ptr;if(optional_&&typeof optional_==="object")optional_=optional_.ptr;return wrapPointer(_emscripten_bind_ParameterMetadata_SetOptional_1(self,optional_),ParameterMetadata)};ParameterMetadata.prototype["GetDescription"]=ParameterMetadata.prototype.GetDescription=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_ParameterMetadata_GetDescription_0(self))};ParameterMetadata.prototype["SetDescription"]=ParameterMetadata.prototype.SetDescription=function(description_){var self=this.ptr;ensureCache.prepare();if(description_&&typeof description_==="object")description_=description_.ptr;else description_=ensureString(description_);return wrapPointer(_emscripten_bind_ParameterMetadata_SetDescription_1(self,description_),ParameterMetadata)};ParameterMetadata.prototype["GetLongDescription"]=ParameterMetadata.prototype.GetLongDescription=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_ParameterMetadata_GetLongDescription_0(self))};ParameterMetadata.prototype["SetLongDescription"]=ParameterMetadata.prototype.SetLongDescription=function(longDescription_){var self=this.ptr;ensureCache.prepare();if(longDescription_&&typeof longDescription_==="object")longDescription_=longDescription_.ptr;else longDescription_=ensureString(longDescription_);return wrapPointer(_emscripten_bind_ParameterMetadata_SetLongDescription_1(self,longDescription_),ParameterMetadata)};ParameterMetadata.prototype["GetHint"]=ParameterMetadata.prototype.GetHint=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_ParameterMetadata_GetHint_0(self))};ParameterMetadata.prototype["SetHint"]=ParameterMetadata.prototype.SetHint=function(hint_){var self=this.ptr;ensureCache.prepare();if(hint_&&typeof hint_==="object")hint_=hint_.ptr;else hint_=ensureString(hint_);return wrapPointer(_emscripten_bind_ParameterMetadata_SetHint_1(self,hint_),ParameterMetadata)};ParameterMetadata.prototype["IsCodeOnly"]=ParameterMetadata.prototype.IsCodeOnly=function(){var self=this.ptr;return!!_emscripten_bind_ParameterMetadata_IsCodeOnly_0(self)};ParameterMetadata.prototype["SetCodeOnly"]=ParameterMetadata.prototype.SetCodeOnly=function(codeOnly_){var self=this.ptr;if(codeOnly_&&typeof codeOnly_==="object")codeOnly_=codeOnly_.ptr;return wrapPointer(_emscripten_bind_ParameterMetadata_SetCodeOnly_1(self,codeOnly_),ParameterMetadata)};ParameterMetadata.prototype["GetDefaultValue"]=ParameterMetadata.prototype.GetDefaultValue=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_ParameterMetadata_GetDefaultValue_0(self))};ParameterMetadata.prototype["SetDefaultValue"]=ParameterMetadata.prototype.SetDefaultValue=function(defaultValue_){var self=this.ptr;ensureCache.prepare();if(defaultValue_&&typeof defaultValue_==="object")defaultValue_=defaultValue_.ptr;else defaultValue_=ensureString(defaultValue_);return wrapPointer(_emscripten_bind_ParameterMetadata_SetDefaultValue_1(self,defaultValue_),ParameterMetadata)};ParameterMetadata.prototype["SetValueTypeMetadata"]=ParameterMetadata.prototype.SetValueTypeMetadata=function(type){var self=this.ptr;if(type&&typeof type==="object")type=type.ptr;return wrapPointer(_emscripten_bind_ParameterMetadata_SetValueTypeMetadata_1(self,type),ParameterMetadata)};ParameterMetadata.prototype["GetValueTypeMetadata"]=ParameterMetadata.prototype.GetValueTypeMetadata=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_ParameterMetadata_GetValueTypeMetadata_0(self),ValueTypeMetadata)};ParameterMetadata.prototype["STATIC_IsObject"]=ParameterMetadata.prototype.STATIC_IsObject=function(param){var self=this.ptr;ensureCache.prepare();if(param&&typeof param==="object")param=param.ptr;else param=ensureString(param);return!!_emscripten_bind_ParameterMetadata_STATIC_IsObject_1(self,param)};ParameterMetadata.prototype["STATIC_IsBehavior"]=ParameterMetadata.prototype.STATIC_IsBehavior=function(param){var self=this.ptr;ensureCache.prepare();if(param&&typeof param==="object")param=param.ptr;else param=ensureString(param);return!!_emscripten_bind_ParameterMetadata_STATIC_IsBehavior_1(self,param)};ParameterMetadata.prototype["STATIC_IsExpression"]=ParameterMetadata.prototype.STATIC_IsExpression=function(type_,parameterType){var self=this.ptr;ensureCache.prepare();if(type_&&typeof type_==="object")type_=type_.ptr;else type_=ensureString(type_);if(parameterType&&typeof parameterType==="object")parameterType=parameterType.ptr;else parameterType=ensureString(parameterType);return!!_emscripten_bind_ParameterMetadata_STATIC_IsExpression_2(self,type_,parameterType)};ParameterMetadata.prototype["SerializeTo"]=ParameterMetadata.prototype.SerializeTo=function(element){var self=this.ptr;if(element&&typeof element==="object")element=element.ptr;_emscripten_bind_ParameterMetadata_SerializeTo_1(self,element)};ParameterMetadata.prototype["UnserializeFrom"]=ParameterMetadata.prototype.UnserializeFrom=function(element){var self=this.ptr;if(element&&typeof element==="object")element=element.ptr;_emscripten_bind_ParameterMetadata_UnserializeFrom_1(self,element)};ParameterMetadata.prototype["__destroy__"]=ParameterMetadata.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_ParameterMetadata___destroy___0(self)};function ValueTypeMetadata(){this.ptr=_emscripten_bind_ValueTypeMetadata_ValueTypeMetadata_0();getCache(ValueTypeMetadata)[this.ptr]=this}ValueTypeMetadata.prototype=Object.create(WrapperObject.prototype);ValueTypeMetadata.prototype.constructor=ValueTypeMetadata;ValueTypeMetadata.prototype.__class__=ValueTypeMetadata;ValueTypeMetadata.__cache__={};Module["ValueTypeMetadata"]=ValueTypeMetadata;ValueTypeMetadata.prototype["GetName"]=ValueTypeMetadata.prototype.GetName=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_ValueTypeMetadata_GetName_0(self))};ValueTypeMetadata.prototype["SetName"]=ValueTypeMetadata.prototype.SetName=function(name_){var self=this.ptr;ensureCache.prepare();if(name_&&typeof name_==="object")name_=name_.ptr;else name_=ensureString(name_);return wrapPointer(_emscripten_bind_ValueTypeMetadata_SetName_1(self,name_),ValueTypeMetadata)};ValueTypeMetadata.prototype["GetExtraInfo"]=ValueTypeMetadata.prototype.GetExtraInfo=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_ValueTypeMetadata_GetExtraInfo_0(self))};ValueTypeMetadata.prototype["SetExtraInfo"]=ValueTypeMetadata.prototype.SetExtraInfo=function(extraInfo_){var self=this.ptr;ensureCache.prepare();if(extraInfo_&&typeof extraInfo_==="object")extraInfo_=extraInfo_.ptr;else extraInfo_=ensureString(extraInfo_);return wrapPointer(_emscripten_bind_ValueTypeMetadata_SetExtraInfo_1(self,extraInfo_),ValueTypeMetadata)};ValueTypeMetadata.prototype["IsOptional"]=ValueTypeMetadata.prototype.IsOptional=function(){var self=this.ptr;return!!_emscripten_bind_ValueTypeMetadata_IsOptional_0(self)};ValueTypeMetadata.prototype["SetOptional"]=ValueTypeMetadata.prototype.SetOptional=function(optional_){var self=this.ptr;if(optional_&&typeof optional_==="object")optional_=optional_.ptr;return wrapPointer(_emscripten_bind_ValueTypeMetadata_SetOptional_1(self,optional_),ValueTypeMetadata)};ValueTypeMetadata.prototype["GetDefaultValue"]=ValueTypeMetadata.prototype.GetDefaultValue=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_ValueTypeMetadata_GetDefaultValue_0(self))};ValueTypeMetadata.prototype["SetDefaultValue"]=ValueTypeMetadata.prototype.SetDefaultValue=function(defaultValue_){var self=this.ptr;ensureCache.prepare();if(defaultValue_&&typeof defaultValue_==="object")defaultValue_=defaultValue_.ptr;else defaultValue_=ensureString(defaultValue_);return wrapPointer(_emscripten_bind_ValueTypeMetadata_SetDefaultValue_1(self,defaultValue_),ValueTypeMetadata)};ValueTypeMetadata.prototype["IsObject"]=ValueTypeMetadata.prototype.IsObject=function(){var self=this.ptr;return!!_emscripten_bind_ValueTypeMetadata_IsObject_0(self)};ValueTypeMetadata.prototype["IsBehavior"]=ValueTypeMetadata.prototype.IsBehavior=function(){var self=this.ptr;return!!_emscripten_bind_ValueTypeMetadata_IsBehavior_0(self)};ValueTypeMetadata.prototype["IsNumber"]=ValueTypeMetadata.prototype.IsNumber=function(){var self=this.ptr;return!!_emscripten_bind_ValueTypeMetadata_IsNumber_0(self)};ValueTypeMetadata.prototype["IsString"]=ValueTypeMetadata.prototype.IsString=function(){var self=this.ptr;return!!_emscripten_bind_ValueTypeMetadata_IsString_0(self)};ValueTypeMetadata.prototype["IsVariable"]=ValueTypeMetadata.prototype.IsVariable=function(){var self=this.ptr;return!!_emscripten_bind_ValueTypeMetadata_IsVariable_0(self)};ValueTypeMetadata.prototype["STATIC_IsTypeObject"]=ValueTypeMetadata.prototype.STATIC_IsTypeObject=function(parameterType){var self=this.ptr;ensureCache.prepare();if(parameterType&&typeof parameterType==="object")parameterType=parameterType.ptr;else parameterType=ensureString(parameterType);return!!_emscripten_bind_ValueTypeMetadata_STATIC_IsTypeObject_1(self,parameterType)};ValueTypeMetadata.prototype["STATIC_IsTypeBehavior"]=ValueTypeMetadata.prototype.STATIC_IsTypeBehavior=function(parameterType){var self=this.ptr;ensureCache.prepare();if(parameterType&&typeof parameterType==="object")parameterType=parameterType.ptr;else parameterType=ensureString(parameterType);return!!_emscripten_bind_ValueTypeMetadata_STATIC_IsTypeBehavior_1(self,parameterType)};ValueTypeMetadata.prototype["STATIC_IsTypeExpression"]=ValueTypeMetadata.prototype.STATIC_IsTypeExpression=function(type,parameterType){var self=this.ptr;ensureCache.prepare();if(type&&typeof type==="object")type=type.ptr;else type=ensureString(type);if(parameterType&&typeof parameterType==="object")parameterType=parameterType.ptr;else parameterType=ensureString(parameterType);return!!_emscripten_bind_ValueTypeMetadata_STATIC_IsTypeExpression_2(self,type,parameterType)};ValueTypeMetadata.prototype["STATIC_GetPrimitiveValueType"]=ValueTypeMetadata.prototype.STATIC_GetPrimitiveValueType=function(parameterType){var self=this.ptr;ensureCache.prepare();if(parameterType&&typeof parameterType==="object")parameterType=parameterType.ptr;else parameterType=ensureString(parameterType);return UTF8ToString(_emscripten_bind_ValueTypeMetadata_STATIC_GetPrimitiveValueType_1(self,parameterType))};ValueTypeMetadata.prototype["STATIC_ConvertPropertyTypeToValueType"]=ValueTypeMetadata.prototype.STATIC_ConvertPropertyTypeToValueType=function(propertyType){var self=this.ptr;ensureCache.prepare();if(propertyType&&typeof propertyType==="object")propertyType=propertyType.ptr;else propertyType=ensureString(propertyType);return UTF8ToString(_emscripten_bind_ValueTypeMetadata_STATIC_ConvertPropertyTypeToValueType_1(self,propertyType))};ValueTypeMetadata.prototype["SerializeTo"]=ValueTypeMetadata.prototype.SerializeTo=function(element){var self=this.ptr;if(element&&typeof element==="object")element=element.ptr;_emscripten_bind_ValueTypeMetadata_SerializeTo_1(self,element)};ValueTypeMetadata.prototype["UnserializeFrom"]=ValueTypeMetadata.prototype.UnserializeFrom=function(element){var self=this.ptr;if(element&&typeof element==="object")element=element.ptr;_emscripten_bind_ValueTypeMetadata_UnserializeFrom_1(self,element)};ValueTypeMetadata.prototype["__destroy__"]=ValueTypeMetadata.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_ValueTypeMetadata___destroy___0(self)};function ParameterMetadataContainer(){throw"cannot construct a ParameterMetadataContainer, no constructor in IDL"}ParameterMetadataContainer.prototype=Object.create(WrapperObject.prototype);ParameterMetadataContainer.prototype.constructor=ParameterMetadataContainer;ParameterMetadataContainer.prototype.__class__=ParameterMetadataContainer;ParameterMetadataContainer.__cache__={};Module["ParameterMetadataContainer"]=ParameterMetadataContainer;ParameterMetadataContainer.prototype["InsertNewParameter"]=ParameterMetadataContainer.prototype.InsertNewParameter=function(name,pos){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);if(pos&&typeof pos==="object")pos=pos.ptr;return wrapPointer(_emscripten_bind_ParameterMetadataContainer_InsertNewParameter_2(self,name,pos),ParameterMetadata)};ParameterMetadataContainer.prototype["InsertParameter"]=ParameterMetadataContainer.prototype.InsertParameter=function(parameterMetadata,pos){var self=this.ptr;if(parameterMetadata&&typeof parameterMetadata==="object")parameterMetadata=parameterMetadata.ptr;if(pos&&typeof pos==="object")pos=pos.ptr;return wrapPointer(_emscripten_bind_ParameterMetadataContainer_InsertParameter_2(self,parameterMetadata,pos),ParameterMetadata)};ParameterMetadataContainer.prototype["HasParameterNamed"]=ParameterMetadataContainer.prototype.HasParameterNamed=function(name){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);return!!_emscripten_bind_ParameterMetadataContainer_HasParameterNamed_1(self,name)};ParameterMetadataContainer.prototype["GetParameter"]=ParameterMetadataContainer.prototype.GetParameter=function(name){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);return wrapPointer(_emscripten_bind_ParameterMetadataContainer_GetParameter_1(self,name),ParameterMetadata)};ParameterMetadataContainer.prototype["GetParameterAt"]=ParameterMetadataContainer.prototype.GetParameterAt=function(pos){var self=this.ptr;if(pos&&typeof pos==="object")pos=pos.ptr;return wrapPointer(_emscripten_bind_ParameterMetadataContainer_GetParameterAt_1(self,pos),ParameterMetadata)};ParameterMetadataContainer.prototype["RemoveParameter"]=ParameterMetadataContainer.prototype.RemoveParameter=function(name){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);_emscripten_bind_ParameterMetadataContainer_RemoveParameter_1(self,name)};ParameterMetadataContainer.prototype["MoveParameter"]=ParameterMetadataContainer.prototype.MoveParameter=function(oldIndex,newIndex){var self=this.ptr;if(oldIndex&&typeof oldIndex==="object")oldIndex=oldIndex.ptr;if(newIndex&&typeof newIndex==="object")newIndex=newIndex.ptr;_emscripten_bind_ParameterMetadataContainer_MoveParameter_2(self,oldIndex,newIndex)};ParameterMetadataContainer.prototype["GetParametersCount"]=ParameterMetadataContainer.prototype.GetParametersCount=function(){var self=this.ptr;return _emscripten_bind_ParameterMetadataContainer_GetParametersCount_0(self)};ParameterMetadataContainer.prototype["GetParameterPosition"]=ParameterMetadataContainer.prototype.GetParameterPosition=function(parameterMetadata){var self=this.ptr;if(parameterMetadata&&typeof parameterMetadata==="object")parameterMetadata=parameterMetadata.ptr;return _emscripten_bind_ParameterMetadataContainer_GetParameterPosition_1(self,parameterMetadata)};ParameterMetadataContainer.prototype["ClearParameters"]=ParameterMetadataContainer.prototype.ClearParameters=function(){var self=this.ptr;_emscripten_bind_ParameterMetadataContainer_ClearParameters_0(self)};ParameterMetadataContainer.prototype["AddNewParameter"]=ParameterMetadataContainer.prototype.AddNewParameter=function(name){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);return wrapPointer(_emscripten_bind_ParameterMetadataContainer_AddNewParameter_1(self,name),ParameterMetadata)};ParameterMetadataContainer.prototype["__destroy__"]=ParameterMetadataContainer.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_ParameterMetadataContainer___destroy___0(self)};function ParameterMetadataTools(){throw"cannot construct a ParameterMetadataTools, no constructor in IDL"}ParameterMetadataTools.prototype=Object.create(WrapperObject.prototype);ParameterMetadataTools.prototype.constructor=ParameterMetadataTools;ParameterMetadataTools.prototype.__class__=ParameterMetadataTools;ParameterMetadataTools.__cache__={};Module["ParameterMetadataTools"]=ParameterMetadataTools;ParameterMetadataTools.prototype["STATIC_ParametersToObjectsContainer"]=ParameterMetadataTools.prototype.STATIC_ParametersToObjectsContainer=function(project,parameters,outputObjectsContainer){var self=this.ptr;if(project&&typeof project==="object")project=project.ptr;if(parameters&&typeof parameters==="object")parameters=parameters.ptr;if(outputObjectsContainer&&typeof outputObjectsContainer==="object")outputObjectsContainer=outputObjectsContainer.ptr;_emscripten_bind_ParameterMetadataTools_STATIC_ParametersToObjectsContainer_3(self,project,parameters,outputObjectsContainer)};ParameterMetadataTools.prototype["STATIC_GetObjectParameterIndexFor"]=ParameterMetadataTools.prototype.STATIC_GetObjectParameterIndexFor=function(parameters,parameterIndex){var self=this.ptr;if(parameters&&typeof parameters==="object")parameters=parameters.ptr;if(parameterIndex&&typeof parameterIndex==="object")parameterIndex=parameterIndex.ptr;return _emscripten_bind_ParameterMetadataTools_STATIC_GetObjectParameterIndexFor_2(self,parameters,parameterIndex)};ParameterMetadataTools.prototype["__destroy__"]=ParameterMetadataTools.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_ParameterMetadataTools___destroy___0(self)};function ObjectMetadata(){throw"cannot construct a ObjectMetadata, no constructor in IDL"}ObjectMetadata.prototype=Object.create(WrapperObject.prototype);ObjectMetadata.prototype.constructor=ObjectMetadata;ObjectMetadata.prototype.__class__=ObjectMetadata;ObjectMetadata.__cache__={};Module["ObjectMetadata"]=ObjectMetadata;ObjectMetadata.prototype["GetName"]=ObjectMetadata.prototype.GetName=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_ObjectMetadata_GetName_0(self))};ObjectMetadata.prototype["GetFullName"]=ObjectMetadata.prototype.GetFullName=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_ObjectMetadata_GetFullName_0(self))};ObjectMetadata.prototype["GetDescription"]=ObjectMetadata.prototype.GetDescription=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_ObjectMetadata_GetDescription_0(self))};ObjectMetadata.prototype["GetIconFilename"]=ObjectMetadata.prototype.GetIconFilename=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_ObjectMetadata_GetIconFilename_0(self))};ObjectMetadata.prototype["GetHelpPath"]=ObjectMetadata.prototype.GetHelpPath=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_ObjectMetadata_GetHelpPath_0(self))};ObjectMetadata.prototype["GetCategory"]=ObjectMetadata.prototype.GetCategory=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_ObjectMetadata_GetCategory_0(self))};ObjectMetadata.prototype["GetAssetStoreTag"]=ObjectMetadata.prototype.GetAssetStoreTag=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_ObjectMetadata_GetAssetStoreTag_0(self))};ObjectMetadata.prototype["SetCategory"]=ObjectMetadata.prototype.SetCategory=function(categoryFullName){var self=this.ptr;ensureCache.prepare();if(categoryFullName&&typeof categoryFullName==="object")categoryFullName=categoryFullName.ptr;else categoryFullName=ensureString(categoryFullName);return wrapPointer(_emscripten_bind_ObjectMetadata_SetCategory_1(self,categoryFullName),ObjectMetadata)};ObjectMetadata.prototype["SetAssetStoreTag"]=ObjectMetadata.prototype.SetAssetStoreTag=function(assetStoreTag){var self=this.ptr;ensureCache.prepare();if(assetStoreTag&&typeof assetStoreTag==="object")assetStoreTag=assetStoreTag.ptr;else assetStoreTag=ensureString(assetStoreTag);return wrapPointer(_emscripten_bind_ObjectMetadata_SetAssetStoreTag_1(self,assetStoreTag),ObjectMetadata)};ObjectMetadata.prototype["AddInGameEditorResource"]=ObjectMetadata.prototype.AddInGameEditorResource=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_ObjectMetadata_AddInGameEditorResource_0(self),InGameEditorResourceMetadata)};ObjectMetadata.prototype["AddScopedCondition"]=ObjectMetadata.prototype.AddScopedCondition=function(name,fullname,description,sentence,group,icon,smallicon){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);if(fullname&&typeof fullname==="object")fullname=fullname.ptr;else fullname=ensureString(fullname);if(description&&typeof description==="object")description=description.ptr;else description=ensureString(description);if(sentence&&typeof sentence==="object")sentence=sentence.ptr;else sentence=ensureString(sentence);if(group&&typeof group==="object")group=group.ptr;else group=ensureString(group);if(icon&&typeof icon==="object")icon=icon.ptr;else icon=ensureString(icon);if(smallicon&&typeof smallicon==="object")smallicon=smallicon.ptr;else smallicon=ensureString(smallicon);return wrapPointer(_emscripten_bind_ObjectMetadata_AddScopedCondition_7(self,name,fullname,description,sentence,group,icon,smallicon),InstructionMetadata)};ObjectMetadata.prototype["AddScopedAction"]=ObjectMetadata.prototype.AddScopedAction=function(name,fullname,description,sentence,group,icon,smallicon){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);if(fullname&&typeof fullname==="object")fullname=fullname.ptr;else fullname=ensureString(fullname);if(description&&typeof description==="object")description=description.ptr;else description=ensureString(description);if(sentence&&typeof sentence==="object")sentence=sentence.ptr;else sentence=ensureString(sentence);if(group&&typeof group==="object")group=group.ptr;else group=ensureString(group);if(icon&&typeof icon==="object")icon=icon.ptr;else icon=ensureString(icon);if(smallicon&&typeof smallicon==="object")smallicon=smallicon.ptr;else smallicon=ensureString(smallicon);return wrapPointer(_emscripten_bind_ObjectMetadata_AddScopedAction_7(self,name,fullname,description,sentence,group,icon,smallicon),InstructionMetadata)};ObjectMetadata.prototype["AddCondition"]=ObjectMetadata.prototype.AddCondition=function(name,fullname,description,sentence,group,icon,smallicon){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);if(fullname&&typeof fullname==="object")fullname=fullname.ptr;else fullname=ensureString(fullname);if(description&&typeof description==="object")description=description.ptr;else description=ensureString(description);if(sentence&&typeof sentence==="object")sentence=sentence.ptr;else sentence=ensureString(sentence);if(group&&typeof group==="object")group=group.ptr;else group=ensureString(group);if(icon&&typeof icon==="object")icon=icon.ptr;else icon=ensureString(icon);if(smallicon&&typeof smallicon==="object")smallicon=smallicon.ptr;else smallicon=ensureString(smallicon);return wrapPointer(_emscripten_bind_ObjectMetadata_AddCondition_7(self,name,fullname,description,sentence,group,icon,smallicon),InstructionMetadata)};ObjectMetadata.prototype["AddAction"]=ObjectMetadata.prototype.AddAction=function(name,fullname,description,sentence,group,icon,smallicon){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);if(fullname&&typeof fullname==="object")fullname=fullname.ptr;else fullname=ensureString(fullname);if(description&&typeof description==="object")description=description.ptr;else description=ensureString(description);if(sentence&&typeof sentence==="object")sentence=sentence.ptr;else sentence=ensureString(sentence);if(group&&typeof group==="object")group=group.ptr;else group=ensureString(group);if(icon&&typeof icon==="object")icon=icon.ptr;else icon=ensureString(icon);if(smallicon&&typeof smallicon==="object")smallicon=smallicon.ptr;else smallicon=ensureString(smallicon);return wrapPointer(_emscripten_bind_ObjectMetadata_AddAction_7(self,name,fullname,description,sentence,group,icon,smallicon),InstructionMetadata)};ObjectMetadata.prototype["AddExpression"]=ObjectMetadata.prototype.AddExpression=function(name,fullname,description,group,smallicon){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);if(fullname&&typeof fullname==="object")fullname=fullname.ptr;else fullname=ensureString(fullname);if(description&&typeof description==="object")description=description.ptr;else description=ensureString(description);if(group&&typeof group==="object")group=group.ptr;else group=ensureString(group);if(smallicon&&typeof smallicon==="object")smallicon=smallicon.ptr;else smallicon=ensureString(smallicon);return wrapPointer(_emscripten_bind_ObjectMetadata_AddExpression_5(self,name,fullname,description,group,smallicon),ExpressionMetadata)};ObjectMetadata.prototype["AddStrExpression"]=ObjectMetadata.prototype.AddStrExpression=function(name,fullname,description,group,smallicon){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);if(fullname&&typeof fullname==="object")fullname=fullname.ptr;else fullname=ensureString(fullname);if(description&&typeof description==="object")description=description.ptr;else description=ensureString(description);if(group&&typeof group==="object")group=group.ptr;else group=ensureString(group);if(smallicon&&typeof smallicon==="object")smallicon=smallicon.ptr;else smallicon=ensureString(smallicon);return wrapPointer(_emscripten_bind_ObjectMetadata_AddStrExpression_5(self,name,fullname,description,group,smallicon),ExpressionMetadata)};ObjectMetadata.prototype["AddExpressionAndCondition"]=ObjectMetadata.prototype.AddExpressionAndCondition=function(type,name,fullname,description,sentenceName,group,icon){var self=this.ptr;ensureCache.prepare();if(type&&typeof type==="object")type=type.ptr;else type=ensureString(type);if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);if(fullname&&typeof fullname==="object")fullname=fullname.ptr;else fullname=ensureString(fullname);if(description&&typeof description==="object")description=description.ptr;else description=ensureString(description);if(sentenceName&&typeof sentenceName==="object")sentenceName=sentenceName.ptr;else sentenceName=ensureString(sentenceName);if(group&&typeof group==="object")group=group.ptr;else group=ensureString(group);if(icon&&typeof icon==="object")icon=icon.ptr;else icon=ensureString(icon);return wrapPointer(_emscripten_bind_ObjectMetadata_AddExpressionAndCondition_7(self,type,name,fullname,description,sentenceName,group,icon),MultipleInstructionMetadata)};ObjectMetadata.prototype["AddExpressionAndConditionAndAction"]=ObjectMetadata.prototype.AddExpressionAndConditionAndAction=function(type,name,fullname,description,sentenceName,group,icon){var self=this.ptr;ensureCache.prepare();if(type&&typeof type==="object")type=type.ptr;else type=ensureString(type);if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);if(fullname&&typeof fullname==="object")fullname=fullname.ptr;else fullname=ensureString(fullname);if(description&&typeof description==="object")description=description.ptr;else description=ensureString(description);if(sentenceName&&typeof sentenceName==="object")sentenceName=sentenceName.ptr;else sentenceName=ensureString(sentenceName);if(group&&typeof group==="object")group=group.ptr;else group=ensureString(group);if(icon&&typeof icon==="object")icon=icon.ptr;else icon=ensureString(icon);return wrapPointer(_emscripten_bind_ObjectMetadata_AddExpressionAndConditionAndAction_7(self,type,name,fullname,description,sentenceName,group,icon),MultipleInstructionMetadata)};ObjectMetadata.prototype["GetAllActions"]=ObjectMetadata.prototype.GetAllActions=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_ObjectMetadata_GetAllActions_0(self),MapStringInstructionMetadata)};ObjectMetadata.prototype["GetAllConditions"]=ObjectMetadata.prototype.GetAllConditions=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_ObjectMetadata_GetAllConditions_0(self),MapStringInstructionMetadata)};ObjectMetadata.prototype["GetAllExpressions"]=ObjectMetadata.prototype.GetAllExpressions=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_ObjectMetadata_GetAllExpressions_0(self),MapStringExpressionMetadata)};ObjectMetadata.prototype["GetAllStrExpressions"]=ObjectMetadata.prototype.GetAllStrExpressions=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_ObjectMetadata_GetAllStrExpressions_0(self),MapStringExpressionMetadata)};ObjectMetadata.prototype["SetIncludeFile"]=ObjectMetadata.prototype.SetIncludeFile=function(includeFile){var self=this.ptr;ensureCache.prepare();if(includeFile&&typeof includeFile==="object")includeFile=includeFile.ptr;else includeFile=ensureString(includeFile);return wrapPointer(_emscripten_bind_ObjectMetadata_SetIncludeFile_1(self,includeFile),ObjectMetadata)};ObjectMetadata.prototype["AddIncludeFile"]=ObjectMetadata.prototype.AddIncludeFile=function(includeFile){var self=this.ptr;ensureCache.prepare();if(includeFile&&typeof includeFile==="object")includeFile=includeFile.ptr;else includeFile=ensureString(includeFile);return wrapPointer(_emscripten_bind_ObjectMetadata_AddIncludeFile_1(self,includeFile),ObjectMetadata)};ObjectMetadata.prototype["GetDefaultBehaviors"]=ObjectMetadata.prototype.GetDefaultBehaviors=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_ObjectMetadata_GetDefaultBehaviors_0(self),SetString)};ObjectMetadata.prototype["HasDefaultBehavior"]=ObjectMetadata.prototype.HasDefaultBehavior=function(behaviorType){var self=this.ptr;ensureCache.prepare();if(behaviorType&&typeof behaviorType==="object")behaviorType=behaviorType.ptr;else behaviorType=ensureString(behaviorType);return!!_emscripten_bind_ObjectMetadata_HasDefaultBehavior_1(self,behaviorType)};ObjectMetadata.prototype["AddDefaultBehavior"]=ObjectMetadata.prototype.AddDefaultBehavior=function(behaviorType){var self=this.ptr;ensureCache.prepare();if(behaviorType&&typeof behaviorType==="object")behaviorType=behaviorType.ptr;else behaviorType=ensureString(behaviorType);return wrapPointer(_emscripten_bind_ObjectMetadata_AddDefaultBehavior_1(self,behaviorType),ObjectMetadata)};ObjectMetadata.prototype["IsPrivate"]=ObjectMetadata.prototype.IsPrivate=function(){var self=this.ptr;return!!_emscripten_bind_ObjectMetadata_IsPrivate_0(self)};ObjectMetadata.prototype["SetPrivate"]=ObjectMetadata.prototype.SetPrivate=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_ObjectMetadata_SetPrivate_0(self),ObjectMetadata)};ObjectMetadata.prototype["SetHidden"]=ObjectMetadata.prototype.SetHidden=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_ObjectMetadata_SetHidden_0(self),ObjectMetadata)};ObjectMetadata.prototype["IsHidden"]=ObjectMetadata.prototype.IsHidden=function(){var self=this.ptr;return!!_emscripten_bind_ObjectMetadata_IsHidden_0(self)};ObjectMetadata.prototype["MarkAsRenderedIn3D"]=ObjectMetadata.prototype.MarkAsRenderedIn3D=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_ObjectMetadata_MarkAsRenderedIn3D_0(self),ObjectMetadata)};ObjectMetadata.prototype["IsRenderedIn3D"]=ObjectMetadata.prototype.IsRenderedIn3D=function(){var self=this.ptr;return!!_emscripten_bind_ObjectMetadata_IsRenderedIn3D_0(self)};ObjectMetadata.prototype["SetOpenFullEditorLabel"]=ObjectMetadata.prototype.SetOpenFullEditorLabel=function(label){var self=this.ptr;ensureCache.prepare();if(label&&typeof label==="object")label=label.ptr;else label=ensureString(label);return wrapPointer(_emscripten_bind_ObjectMetadata_SetOpenFullEditorLabel_1(self,label),ObjectMetadata)};ObjectMetadata.prototype["GetOpenFullEditorLabel"]=ObjectMetadata.prototype.GetOpenFullEditorLabel=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_ObjectMetadata_GetOpenFullEditorLabel_0(self))};ObjectMetadata.prototype["__destroy__"]=ObjectMetadata.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_ObjectMetadata___destroy___0(self)};function InGameEditorResourceMetadata(){throw"cannot construct a InGameEditorResourceMetadata, no constructor in IDL"}InGameEditorResourceMetadata.prototype=Object.create(WrapperObject.prototype);InGameEditorResourceMetadata.prototype.constructor=InGameEditorResourceMetadata;InGameEditorResourceMetadata.prototype.__class__=InGameEditorResourceMetadata;InGameEditorResourceMetadata.__cache__={};Module["InGameEditorResourceMetadata"]=InGameEditorResourceMetadata;InGameEditorResourceMetadata.prototype["SetResourceName"]=InGameEditorResourceMetadata.prototype.SetResourceName=function(resourceName){var self=this.ptr;ensureCache.prepare();if(resourceName&&typeof resourceName==="object")resourceName=resourceName.ptr;else resourceName=ensureString(resourceName);return wrapPointer(_emscripten_bind_InGameEditorResourceMetadata_SetResourceName_1(self,resourceName),InGameEditorResourceMetadata)};InGameEditorResourceMetadata.prototype["SetFilePath"]=InGameEditorResourceMetadata.prototype.SetFilePath=function(relativeFilePath){var self=this.ptr;ensureCache.prepare();if(relativeFilePath&&typeof relativeFilePath==="object")relativeFilePath=relativeFilePath.ptr;else relativeFilePath=ensureString(relativeFilePath);return wrapPointer(_emscripten_bind_InGameEditorResourceMetadata_SetFilePath_1(self,relativeFilePath),InGameEditorResourceMetadata)};InGameEditorResourceMetadata.prototype["SetKind"]=InGameEditorResourceMetadata.prototype.SetKind=function(kind){var self=this.ptr;ensureCache.prepare();if(kind&&typeof kind==="object")kind=kind.ptr;else kind=ensureString(kind);return wrapPointer(_emscripten_bind_InGameEditorResourceMetadata_SetKind_1(self,kind),InGameEditorResourceMetadata)};InGameEditorResourceMetadata.prototype["__destroy__"]=InGameEditorResourceMetadata.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_InGameEditorResourceMetadata___destroy___0(self)};function QuickCustomization(){throw"cannot construct a QuickCustomization, no constructor in IDL"}QuickCustomization.prototype=Object.create(WrapperObject.prototype);QuickCustomization.prototype.constructor=QuickCustomization;QuickCustomization.prototype.__class__=QuickCustomization;QuickCustomization.__cache__={};Module["QuickCustomization"]=QuickCustomization;QuickCustomization.prototype["__destroy__"]=QuickCustomization.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_QuickCustomization___destroy___0(self)};function QuickCustomizationVisibilitiesContainer(){throw"cannot construct a QuickCustomizationVisibilitiesContainer, no constructor in IDL"}QuickCustomizationVisibilitiesContainer.prototype=Object.create(WrapperObject.prototype);QuickCustomizationVisibilitiesContainer.prototype.constructor=QuickCustomizationVisibilitiesContainer;QuickCustomizationVisibilitiesContainer.prototype.__class__=QuickCustomizationVisibilitiesContainer;QuickCustomizationVisibilitiesContainer.__cache__={};Module["QuickCustomizationVisibilitiesContainer"]=QuickCustomizationVisibilitiesContainer;QuickCustomizationVisibilitiesContainer.prototype["Set"]=QuickCustomizationVisibilitiesContainer.prototype.Set=function(name,visibility){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);if(visibility&&typeof visibility==="object")visibility=visibility.ptr;_emscripten_bind_QuickCustomizationVisibilitiesContainer_Set_2(self,name,visibility)};QuickCustomizationVisibilitiesContainer.prototype["Get"]=QuickCustomizationVisibilitiesContainer.prototype.Get=function(name){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);return _emscripten_bind_QuickCustomizationVisibilitiesContainer_Get_1(self,name)};QuickCustomizationVisibilitiesContainer.prototype["__destroy__"]=QuickCustomizationVisibilitiesContainer.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_QuickCustomizationVisibilitiesContainer___destroy___0(self)};function Screenshot(){throw"cannot construct a Screenshot, no constructor in IDL"}Screenshot.prototype=Object.create(WrapperObject.prototype);Screenshot.prototype.constructor=Screenshot;Screenshot.prototype.__class__=Screenshot;Screenshot.__cache__={};Module["Screenshot"]=Screenshot;Screenshot.prototype["GetDelayTimeInSeconds"]=Screenshot.prototype.GetDelayTimeInSeconds=function(){var self=this.ptr;return _emscripten_bind_Screenshot_GetDelayTimeInSeconds_0(self)};Screenshot.prototype["SetDelayTimeInSeconds"]=Screenshot.prototype.SetDelayTimeInSeconds=function(delayTimeInSeconds){var self=this.ptr;if(delayTimeInSeconds&&typeof delayTimeInSeconds==="object")delayTimeInSeconds=delayTimeInSeconds.ptr;_emscripten_bind_Screenshot_SetDelayTimeInSeconds_1(self,delayTimeInSeconds)};Screenshot.prototype["GetSignedUrl"]=Screenshot.prototype.GetSignedUrl=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_Screenshot_GetSignedUrl_0(self))};Screenshot.prototype["SetSignedUrl"]=Screenshot.prototype.SetSignedUrl=function(signedUrl){var self=this.ptr;ensureCache.prepare();if(signedUrl&&typeof signedUrl==="object")signedUrl=signedUrl.ptr;else signedUrl=ensureString(signedUrl);_emscripten_bind_Screenshot_SetSignedUrl_1(self,signedUrl)};Screenshot.prototype["GetPublicUrl"]=Screenshot.prototype.GetPublicUrl=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_Screenshot_GetPublicUrl_0(self))};Screenshot.prototype["SetPublicUrl"]=Screenshot.prototype.SetPublicUrl=function(publicUrl){var self=this.ptr;ensureCache.prepare();if(publicUrl&&typeof publicUrl==="object")publicUrl=publicUrl.ptr;else publicUrl=ensureString(publicUrl);_emscripten_bind_Screenshot_SetPublicUrl_1(self,publicUrl)};Screenshot.prototype["__destroy__"]=Screenshot.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_Screenshot___destroy___0(self)};function CaptureOptions(){throw"cannot construct a CaptureOptions, no constructor in IDL"}CaptureOptions.prototype=Object.create(WrapperObject.prototype);CaptureOptions.prototype.constructor=CaptureOptions;CaptureOptions.prototype.__class__=CaptureOptions;CaptureOptions.__cache__={};Module["CaptureOptions"]=CaptureOptions;CaptureOptions.prototype["AddScreenshot"]=CaptureOptions.prototype.AddScreenshot=function(screenshot){var self=this.ptr;if(screenshot&&typeof screenshot==="object")screenshot=screenshot.ptr;_emscripten_bind_CaptureOptions_AddScreenshot_1(self,screenshot)};CaptureOptions.prototype["ClearScreenshots"]=CaptureOptions.prototype.ClearScreenshots=function(){var self=this.ptr;_emscripten_bind_CaptureOptions_ClearScreenshots_0(self)};CaptureOptions.prototype["GetScreenshots"]=CaptureOptions.prototype.GetScreenshots=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_CaptureOptions_GetScreenshots_0(self),VectorScreenshot)};CaptureOptions.prototype["__destroy__"]=CaptureOptions.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_CaptureOptions___destroy___0(self)};function BehaviorMetadata(){throw"cannot construct a BehaviorMetadata, no constructor in IDL"}BehaviorMetadata.prototype=Object.create(WrapperObject.prototype);BehaviorMetadata.prototype.constructor=BehaviorMetadata;BehaviorMetadata.prototype.__class__=BehaviorMetadata;BehaviorMetadata.__cache__={};Module["BehaviorMetadata"]=BehaviorMetadata;BehaviorMetadata.prototype["GetName"]=BehaviorMetadata.prototype.GetName=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_BehaviorMetadata_GetName_0(self))};BehaviorMetadata.prototype["GetFullName"]=BehaviorMetadata.prototype.GetFullName=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_BehaviorMetadata_GetFullName_0(self))};BehaviorMetadata.prototype["GetDefaultName"]=BehaviorMetadata.prototype.GetDefaultName=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_BehaviorMetadata_GetDefaultName_0(self))};BehaviorMetadata.prototype["GetDescription"]=BehaviorMetadata.prototype.GetDescription=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_BehaviorMetadata_GetDescription_0(self))};BehaviorMetadata.prototype["GetGroup"]=BehaviorMetadata.prototype.GetGroup=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_BehaviorMetadata_GetGroup_0(self))};BehaviorMetadata.prototype["GetIconFilename"]=BehaviorMetadata.prototype.GetIconFilename=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_BehaviorMetadata_GetIconFilename_0(self))};BehaviorMetadata.prototype["GetHelpPath"]=BehaviorMetadata.prototype.GetHelpPath=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_BehaviorMetadata_GetHelpPath_0(self))};BehaviorMetadata.prototype["AddScopedCondition"]=BehaviorMetadata.prototype.AddScopedCondition=function(name,fullname,description,sentence,group,icon,smallicon){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);if(fullname&&typeof fullname==="object")fullname=fullname.ptr;else fullname=ensureString(fullname);if(description&&typeof description==="object")description=description.ptr;else description=ensureString(description);if(sentence&&typeof sentence==="object")sentence=sentence.ptr;else sentence=ensureString(sentence);if(group&&typeof group==="object")group=group.ptr;else group=ensureString(group);if(icon&&typeof icon==="object")icon=icon.ptr;else icon=ensureString(icon);if(smallicon&&typeof smallicon==="object")smallicon=smallicon.ptr;else smallicon=ensureString(smallicon);return wrapPointer(_emscripten_bind_BehaviorMetadata_AddScopedCondition_7(self,name,fullname,description,sentence,group,icon,smallicon),InstructionMetadata)};BehaviorMetadata.prototype["AddScopedAction"]=BehaviorMetadata.prototype.AddScopedAction=function(name,fullname,description,sentence,group,icon,smallicon){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);if(fullname&&typeof fullname==="object")fullname=fullname.ptr;else fullname=ensureString(fullname);if(description&&typeof description==="object")description=description.ptr;else description=ensureString(description);if(sentence&&typeof sentence==="object")sentence=sentence.ptr;else sentence=ensureString(sentence);if(group&&typeof group==="object")group=group.ptr;else group=ensureString(group);if(icon&&typeof icon==="object")icon=icon.ptr;else icon=ensureString(icon);if(smallicon&&typeof smallicon==="object")smallicon=smallicon.ptr;else smallicon=ensureString(smallicon);return wrapPointer(_emscripten_bind_BehaviorMetadata_AddScopedAction_7(self,name,fullname,description,sentence,group,icon,smallicon),InstructionMetadata)};BehaviorMetadata.prototype["AddCondition"]=BehaviorMetadata.prototype.AddCondition=function(name,fullname,description,sentence,group,icon,smallicon){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);if(fullname&&typeof fullname==="object")fullname=fullname.ptr;else fullname=ensureString(fullname);if(description&&typeof description==="object")description=description.ptr;else description=ensureString(description);if(sentence&&typeof sentence==="object")sentence=sentence.ptr;else sentence=ensureString(sentence);if(group&&typeof group==="object")group=group.ptr;else group=ensureString(group);if(icon&&typeof icon==="object")icon=icon.ptr;else icon=ensureString(icon);if(smallicon&&typeof smallicon==="object")smallicon=smallicon.ptr;else smallicon=ensureString(smallicon);return wrapPointer(_emscripten_bind_BehaviorMetadata_AddCondition_7(self,name,fullname,description,sentence,group,icon,smallicon),InstructionMetadata)};BehaviorMetadata.prototype["AddAction"]=BehaviorMetadata.prototype.AddAction=function(name,fullname,description,sentence,group,icon,smallicon){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);if(fullname&&typeof fullname==="object")fullname=fullname.ptr;else fullname=ensureString(fullname);if(description&&typeof description==="object")description=description.ptr;else description=ensureString(description);if(sentence&&typeof sentence==="object")sentence=sentence.ptr;else sentence=ensureString(sentence);if(group&&typeof group==="object")group=group.ptr;else group=ensureString(group);if(icon&&typeof icon==="object")icon=icon.ptr;else icon=ensureString(icon);if(smallicon&&typeof smallicon==="object")smallicon=smallicon.ptr;else smallicon=ensureString(smallicon);return wrapPointer(_emscripten_bind_BehaviorMetadata_AddAction_7(self,name,fullname,description,sentence,group,icon,smallicon),InstructionMetadata)};BehaviorMetadata.prototype["AddExpression"]=BehaviorMetadata.prototype.AddExpression=function(name,fullname,description,group,smallicon){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);if(fullname&&typeof fullname==="object")fullname=fullname.ptr;else fullname=ensureString(fullname);if(description&&typeof description==="object")description=description.ptr;else description=ensureString(description);if(group&&typeof group==="object")group=group.ptr;else group=ensureString(group);if(smallicon&&typeof smallicon==="object")smallicon=smallicon.ptr;else smallicon=ensureString(smallicon);return wrapPointer(_emscripten_bind_BehaviorMetadata_AddExpression_5(self,name,fullname,description,group,smallicon),ExpressionMetadata)};BehaviorMetadata.prototype["AddStrExpression"]=BehaviorMetadata.prototype.AddStrExpression=function(name,fullname,description,group,smallicon){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);if(fullname&&typeof fullname==="object")fullname=fullname.ptr;else fullname=ensureString(fullname);if(description&&typeof description==="object")description=description.ptr;else description=ensureString(description);if(group&&typeof group==="object")group=group.ptr;else group=ensureString(group);if(smallicon&&typeof smallicon==="object")smallicon=smallicon.ptr;else smallicon=ensureString(smallicon);return wrapPointer(_emscripten_bind_BehaviorMetadata_AddStrExpression_5(self,name,fullname,description,group,smallicon),ExpressionMetadata)};BehaviorMetadata.prototype["AddExpressionAndCondition"]=BehaviorMetadata.prototype.AddExpressionAndCondition=function(type,name,fullname,description,sentenceName,group,icon){var self=this.ptr;ensureCache.prepare();if(type&&typeof type==="object")type=type.ptr;else type=ensureString(type);if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);if(fullname&&typeof fullname==="object")fullname=fullname.ptr;else fullname=ensureString(fullname);if(description&&typeof description==="object")description=description.ptr;else description=ensureString(description);if(sentenceName&&typeof sentenceName==="object")sentenceName=sentenceName.ptr;else sentenceName=ensureString(sentenceName);if(group&&typeof group==="object")group=group.ptr;else group=ensureString(group);if(icon&&typeof icon==="object")icon=icon.ptr;else icon=ensureString(icon);return wrapPointer(_emscripten_bind_BehaviorMetadata_AddExpressionAndCondition_7(self,type,name,fullname,description,sentenceName,group,icon),MultipleInstructionMetadata)};BehaviorMetadata.prototype["AddExpressionAndConditionAndAction"]=BehaviorMetadata.prototype.AddExpressionAndConditionAndAction=function(type,name,fullname,description,sentenceName,group,icon){var self=this.ptr;ensureCache.prepare();if(type&&typeof type==="object")type=type.ptr;else type=ensureString(type);if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);if(fullname&&typeof fullname==="object")fullname=fullname.ptr;else fullname=ensureString(fullname);if(description&&typeof description==="object")description=description.ptr;else description=ensureString(description);if(sentenceName&&typeof sentenceName==="object")sentenceName=sentenceName.ptr;else sentenceName=ensureString(sentenceName);if(group&&typeof group==="object")group=group.ptr;else group=ensureString(group);if(icon&&typeof icon==="object")icon=icon.ptr;else icon=ensureString(icon);return wrapPointer(_emscripten_bind_BehaviorMetadata_AddExpressionAndConditionAndAction_7(self,type,name,fullname,description,sentenceName,group,icon),MultipleInstructionMetadata)};BehaviorMetadata.prototype["AddDuplicatedAction"]=BehaviorMetadata.prototype.AddDuplicatedAction=function(newActionName,copiedActionName){var self=this.ptr;ensureCache.prepare();if(newActionName&&typeof newActionName==="object")newActionName=newActionName.ptr;else newActionName=ensureString(newActionName);if(copiedActionName&&typeof copiedActionName==="object")copiedActionName=copiedActionName.ptr;else copiedActionName=ensureString(copiedActionName);return wrapPointer(_emscripten_bind_BehaviorMetadata_AddDuplicatedAction_2(self,newActionName,copiedActionName),InstructionMetadata)};BehaviorMetadata.prototype["AddDuplicatedCondition"]=BehaviorMetadata.prototype.AddDuplicatedCondition=function(newConditionName,copiedConditionName){var self=this.ptr;ensureCache.prepare();if(newConditionName&&typeof newConditionName==="object")newConditionName=newConditionName.ptr;else newConditionName=ensureString(newConditionName);if(copiedConditionName&&typeof copiedConditionName==="object")copiedConditionName=copiedConditionName.ptr;else copiedConditionName=ensureString(copiedConditionName);return wrapPointer(_emscripten_bind_BehaviorMetadata_AddDuplicatedCondition_2(self,newConditionName,copiedConditionName),InstructionMetadata)};BehaviorMetadata.prototype["AddDuplicatedExpression"]=BehaviorMetadata.prototype.AddDuplicatedExpression=function(newExpressionName,copiedExpressionName){var self=this.ptr;ensureCache.prepare();if(newExpressionName&&typeof newExpressionName==="object")newExpressionName=newExpressionName.ptr;else newExpressionName=ensureString(newExpressionName);if(copiedExpressionName&&typeof copiedExpressionName==="object")copiedExpressionName=copiedExpressionName.ptr;else copiedExpressionName=ensureString(copiedExpressionName);return wrapPointer(_emscripten_bind_BehaviorMetadata_AddDuplicatedExpression_2(self,newExpressionName,copiedExpressionName),ExpressionMetadata)};BehaviorMetadata.prototype["AddDuplicatedStrExpression"]=BehaviorMetadata.prototype.AddDuplicatedStrExpression=function(newExpressionName,copiedExpressionName){var self=this.ptr;ensureCache.prepare();if(newExpressionName&&typeof newExpressionName==="object")newExpressionName=newExpressionName.ptr;else newExpressionName=ensureString(newExpressionName);if(copiedExpressionName&&typeof copiedExpressionName==="object")copiedExpressionName=copiedExpressionName.ptr;else copiedExpressionName=ensureString(copiedExpressionName);return wrapPointer(_emscripten_bind_BehaviorMetadata_AddDuplicatedStrExpression_2(self,newExpressionName,copiedExpressionName),ExpressionMetadata)};BehaviorMetadata.prototype["GetAllActions"]=BehaviorMetadata.prototype.GetAllActions=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_BehaviorMetadata_GetAllActions_0(self),MapStringInstructionMetadata)};BehaviorMetadata.prototype["GetAllConditions"]=BehaviorMetadata.prototype.GetAllConditions=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_BehaviorMetadata_GetAllConditions_0(self),MapStringInstructionMetadata)};BehaviorMetadata.prototype["GetAllExpressions"]=BehaviorMetadata.prototype.GetAllExpressions=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_BehaviorMetadata_GetAllExpressions_0(self),MapStringExpressionMetadata)};BehaviorMetadata.prototype["GetAllStrExpressions"]=BehaviorMetadata.prototype.GetAllStrExpressions=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_BehaviorMetadata_GetAllStrExpressions_0(self),MapStringExpressionMetadata)};BehaviorMetadata.prototype["SetIncludeFile"]=BehaviorMetadata.prototype.SetIncludeFile=function(includeFile){var self=this.ptr;ensureCache.prepare();if(includeFile&&typeof includeFile==="object")includeFile=includeFile.ptr;else includeFile=ensureString(includeFile);return wrapPointer(_emscripten_bind_BehaviorMetadata_SetIncludeFile_1(self,includeFile),BehaviorMetadata)};BehaviorMetadata.prototype["AddIncludeFile"]=BehaviorMetadata.prototype.AddIncludeFile=function(includeFile){var self=this.ptr;ensureCache.prepare();if(includeFile&&typeof includeFile==="object")includeFile=includeFile.ptr;else includeFile=ensureString(includeFile);return wrapPointer(_emscripten_bind_BehaviorMetadata_AddIncludeFile_1(self,includeFile),BehaviorMetadata)};BehaviorMetadata.prototype["AddRequiredFile"]=BehaviorMetadata.prototype.AddRequiredFile=function(resourceFile){var self=this.ptr;ensureCache.prepare();if(resourceFile&&typeof resourceFile==="object")resourceFile=resourceFile.ptr;else resourceFile=ensureString(resourceFile);return wrapPointer(_emscripten_bind_BehaviorMetadata_AddRequiredFile_1(self,resourceFile),BehaviorMetadata)};BehaviorMetadata.prototype["SetObjectType"]=BehaviorMetadata.prototype.SetObjectType=function(objectType){var self=this.ptr;ensureCache.prepare();if(objectType&&typeof objectType==="object")objectType=objectType.ptr;else objectType=ensureString(objectType);return wrapPointer(_emscripten_bind_BehaviorMetadata_SetObjectType_1(self,objectType),BehaviorMetadata)};BehaviorMetadata.prototype["GetObjectType"]=BehaviorMetadata.prototype.GetObjectType=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_BehaviorMetadata_GetObjectType_0(self))};BehaviorMetadata.prototype["GetRequiredBehaviorTypes"]=BehaviorMetadata.prototype.GetRequiredBehaviorTypes=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_BehaviorMetadata_GetRequiredBehaviorTypes_0(self),VectorString)};BehaviorMetadata.prototype["IsPrivate"]=BehaviorMetadata.prototype.IsPrivate=function(){var self=this.ptr;return!!_emscripten_bind_BehaviorMetadata_IsPrivate_0(self)};BehaviorMetadata.prototype["SetPrivate"]=BehaviorMetadata.prototype.SetPrivate=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_BehaviorMetadata_SetPrivate_0(self),BehaviorMetadata)};BehaviorMetadata.prototype["IsHidden"]=BehaviorMetadata.prototype.IsHidden=function(){var self=this.ptr;return!!_emscripten_bind_BehaviorMetadata_IsHidden_0(self)};BehaviorMetadata.prototype["SetHidden"]=BehaviorMetadata.prototype.SetHidden=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_BehaviorMetadata_SetHidden_0(self),BehaviorMetadata)};BehaviorMetadata.prototype["IsRelevantForChildObjects"]=BehaviorMetadata.prototype.IsRelevantForChildObjects=function(){var self=this.ptr;return!!_emscripten_bind_BehaviorMetadata_IsRelevantForChildObjects_0(self)};BehaviorMetadata.prototype["MarkAsIrrelevantForChildObjects"]=BehaviorMetadata.prototype.MarkAsIrrelevantForChildObjects=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_BehaviorMetadata_MarkAsIrrelevantForChildObjects_0(self),BehaviorMetadata)};BehaviorMetadata.prototype["IsActivatedByDefaultInEditor"]=BehaviorMetadata.prototype.IsActivatedByDefaultInEditor=function(){var self=this.ptr;return!!_emscripten_bind_BehaviorMetadata_IsActivatedByDefaultInEditor_0(self)};BehaviorMetadata.prototype["MarkAsActivatedByDefaultInEditor"]=BehaviorMetadata.prototype.MarkAsActivatedByDefaultInEditor=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_BehaviorMetadata_MarkAsActivatedByDefaultInEditor_0(self),BehaviorMetadata)};BehaviorMetadata.prototype["GetQuickCustomizationVisibility"]=BehaviorMetadata.prototype.GetQuickCustomizationVisibility=function(){var self=this.ptr;return _emscripten_bind_BehaviorMetadata_GetQuickCustomizationVisibility_0(self)};BehaviorMetadata.prototype["SetQuickCustomizationVisibility"]=BehaviorMetadata.prototype.SetQuickCustomizationVisibility=function(visibility){var self=this.ptr;if(visibility&&typeof visibility==="object")visibility=visibility.ptr;return wrapPointer(_emscripten_bind_BehaviorMetadata_SetQuickCustomizationVisibility_1(self,visibility),BehaviorMetadata)};BehaviorMetadata.prototype["SetOpenFullEditorLabel"]=BehaviorMetadata.prototype.SetOpenFullEditorLabel=function(label){var self=this.ptr;ensureCache.prepare();if(label&&typeof label==="object")label=label.ptr;else label=ensureString(label);return wrapPointer(_emscripten_bind_BehaviorMetadata_SetOpenFullEditorLabel_1(self,label),BehaviorMetadata)};BehaviorMetadata.prototype["GetOpenFullEditorLabel"]=BehaviorMetadata.prototype.GetOpenFullEditorLabel=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_BehaviorMetadata_GetOpenFullEditorLabel_0(self))};BehaviorMetadata.prototype["Get"]=BehaviorMetadata.prototype.Get=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_BehaviorMetadata_Get_0(self),Behavior)};BehaviorMetadata.prototype["GetSharedDataInstance"]=BehaviorMetadata.prototype.GetSharedDataInstance=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_BehaviorMetadata_GetSharedDataInstance_0(self),BehaviorsSharedData)};BehaviorMetadata.prototype["GetProperties"]=BehaviorMetadata.prototype.GetProperties=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_BehaviorMetadata_GetProperties_0(self),MapStringPropertyDescriptor)};BehaviorMetadata.prototype["GetSharedProperties"]=BehaviorMetadata.prototype.GetSharedProperties=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_BehaviorMetadata_GetSharedProperties_0(self),MapStringPropertyDescriptor)};BehaviorMetadata.prototype["__destroy__"]=BehaviorMetadata.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_BehaviorMetadata___destroy___0(self)};function EffectMetadata(){throw"cannot construct a EffectMetadata, no constructor in IDL"}EffectMetadata.prototype=Object.create(WrapperObject.prototype);EffectMetadata.prototype.constructor=EffectMetadata;EffectMetadata.prototype.__class__=EffectMetadata;EffectMetadata.__cache__={};Module["EffectMetadata"]=EffectMetadata;EffectMetadata.prototype["SetFullName"]=EffectMetadata.prototype.SetFullName=function(fullName){var self=this.ptr;ensureCache.prepare();if(fullName&&typeof fullName==="object")fullName=fullName.ptr;else fullName=ensureString(fullName);return wrapPointer(_emscripten_bind_EffectMetadata_SetFullName_1(self,fullName),EffectMetadata)};EffectMetadata.prototype["SetDescription"]=EffectMetadata.prototype.SetDescription=function(description){var self=this.ptr;ensureCache.prepare();if(description&&typeof description==="object")description=description.ptr;else description=ensureString(description);return wrapPointer(_emscripten_bind_EffectMetadata_SetDescription_1(self,description),EffectMetadata)};EffectMetadata.prototype["SetHelpPath"]=EffectMetadata.prototype.SetHelpPath=function(helpPath){var self=this.ptr;ensureCache.prepare();if(helpPath&&typeof helpPath==="object")helpPath=helpPath.ptr;else helpPath=ensureString(helpPath);return wrapPointer(_emscripten_bind_EffectMetadata_SetHelpPath_1(self,helpPath),EffectMetadata)};EffectMetadata.prototype["SetIncludeFile"]=EffectMetadata.prototype.SetIncludeFile=function(includeFile){var self=this.ptr;ensureCache.prepare();if(includeFile&&typeof includeFile==="object")includeFile=includeFile.ptr;else includeFile=ensureString(includeFile);return wrapPointer(_emscripten_bind_EffectMetadata_SetIncludeFile_1(self,includeFile),EffectMetadata)};EffectMetadata.prototype["AddIncludeFile"]=EffectMetadata.prototype.AddIncludeFile=function(includeFile){var self=this.ptr;ensureCache.prepare();if(includeFile&&typeof includeFile==="object")includeFile=includeFile.ptr;else includeFile=ensureString(includeFile);return wrapPointer(_emscripten_bind_EffectMetadata_AddIncludeFile_1(self,includeFile),EffectMetadata)};EffectMetadata.prototype["MarkAsNotWorkingForObjects"]=EffectMetadata.prototype.MarkAsNotWorkingForObjects=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_EffectMetadata_MarkAsNotWorkingForObjects_0(self),EffectMetadata)};EffectMetadata.prototype["MarkAsOnlyWorkingFor2D"]=EffectMetadata.prototype.MarkAsOnlyWorkingFor2D=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_EffectMetadata_MarkAsOnlyWorkingFor2D_0(self),EffectMetadata)};EffectMetadata.prototype["MarkAsOnlyWorkingFor3D"]=EffectMetadata.prototype.MarkAsOnlyWorkingFor3D=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_EffectMetadata_MarkAsOnlyWorkingFor3D_0(self),EffectMetadata)};EffectMetadata.prototype["MarkAsUnique"]=EffectMetadata.prototype.MarkAsUnique=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_EffectMetadata_MarkAsUnique_0(self),EffectMetadata)};EffectMetadata.prototype["GetType"]=EffectMetadata.prototype.GetType=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_EffectMetadata_GetType_0(self))};EffectMetadata.prototype["GetFullName"]=EffectMetadata.prototype.GetFullName=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_EffectMetadata_GetFullName_0(self))};EffectMetadata.prototype["GetDescription"]=EffectMetadata.prototype.GetDescription=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_EffectMetadata_GetDescription_0(self))};EffectMetadata.prototype["GetHelpPath"]=EffectMetadata.prototype.GetHelpPath=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_EffectMetadata_GetHelpPath_0(self))};EffectMetadata.prototype["IsMarkedAsNotWorkingForObjects"]=EffectMetadata.prototype.IsMarkedAsNotWorkingForObjects=function(){var self=this.ptr;return!!_emscripten_bind_EffectMetadata_IsMarkedAsNotWorkingForObjects_0(self)};EffectMetadata.prototype["IsMarkedAsOnlyWorkingFor2D"]=EffectMetadata.prototype.IsMarkedAsOnlyWorkingFor2D=function(){var self=this.ptr;return!!_emscripten_bind_EffectMetadata_IsMarkedAsOnlyWorkingFor2D_0(self)};EffectMetadata.prototype["IsMarkedAsOnlyWorkingFor3D"]=EffectMetadata.prototype.IsMarkedAsOnlyWorkingFor3D=function(){var self=this.ptr;return!!_emscripten_bind_EffectMetadata_IsMarkedAsOnlyWorkingFor3D_0(self)};EffectMetadata.prototype["IsMarkedAsUnique"]=EffectMetadata.prototype.IsMarkedAsUnique=function(){var self=this.ptr;return!!_emscripten_bind_EffectMetadata_IsMarkedAsUnique_0(self)};EffectMetadata.prototype["GetProperties"]=EffectMetadata.prototype.GetProperties=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_EffectMetadata_GetProperties_0(self),MapStringPropertyDescriptor)};EffectMetadata.prototype["__destroy__"]=EffectMetadata.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_EffectMetadata___destroy___0(self)};function EventMetadata(){throw"cannot construct a EventMetadata, no constructor in IDL"}EventMetadata.prototype=Object.create(WrapperObject.prototype);EventMetadata.prototype.constructor=EventMetadata;EventMetadata.prototype.__class__=EventMetadata;EventMetadata.__cache__={};Module["EventMetadata"]=EventMetadata;EventMetadata.prototype["GetFullName"]=EventMetadata.prototype.GetFullName=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_EventMetadata_GetFullName_0(self))};EventMetadata.prototype["GetDescription"]=EventMetadata.prototype.GetDescription=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_EventMetadata_GetDescription_0(self))};EventMetadata.prototype["GetGroup"]=EventMetadata.prototype.GetGroup=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_EventMetadata_GetGroup_0(self))};EventMetadata.prototype["__destroy__"]=EventMetadata.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_EventMetadata___destroy___0(self)};function PlatformExtension(){this.ptr=_emscripten_bind_PlatformExtension_PlatformExtension_0();getCache(PlatformExtension)[this.ptr]=this}PlatformExtension.prototype=Object.create(WrapperObject.prototype);PlatformExtension.prototype.constructor=PlatformExtension;PlatformExtension.prototype.__class__=PlatformExtension;PlatformExtension.__cache__={};Module["PlatformExtension"]=PlatformExtension;PlatformExtension.prototype["SetExtensionInformation"]=PlatformExtension.prototype.SetExtensionInformation=function(name,fullname,description,author,license){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);if(fullname&&typeof fullname==="object")fullname=fullname.ptr;else fullname=ensureString(fullname);if(description&&typeof description==="object")description=description.ptr;else description=ensureString(description);if(author&&typeof author==="object")author=author.ptr;else author=ensureString(author);if(license&&typeof license==="object")license=license.ptr;else license=ensureString(license);return wrapPointer(_emscripten_bind_PlatformExtension_SetExtensionInformation_5(self,name,fullname,description,author,license),PlatformExtension)};PlatformExtension.prototype["SetExtensionHelpPath"]=PlatformExtension.prototype.SetExtensionHelpPath=function(helpPath){var self=this.ptr;ensureCache.prepare();if(helpPath&&typeof helpPath==="object")helpPath=helpPath.ptr;else helpPath=ensureString(helpPath);return wrapPointer(_emscripten_bind_PlatformExtension_SetExtensionHelpPath_1(self,helpPath),PlatformExtension)};PlatformExtension.prototype["SetIconUrl"]=PlatformExtension.prototype.SetIconUrl=function(iconUrl){var self=this.ptr;ensureCache.prepare();if(iconUrl&&typeof iconUrl==="object")iconUrl=iconUrl.ptr;else iconUrl=ensureString(iconUrl);return wrapPointer(_emscripten_bind_PlatformExtension_SetIconUrl_1(self,iconUrl),PlatformExtension)};PlatformExtension.prototype["SetCategory"]=PlatformExtension.prototype.SetCategory=function(category){var self=this.ptr;ensureCache.prepare();if(category&&typeof category==="object")category=category.ptr;else category=ensureString(category);return wrapPointer(_emscripten_bind_PlatformExtension_SetCategory_1(self,category),PlatformExtension)};PlatformExtension.prototype["SetShortDescription"]=PlatformExtension.prototype.SetShortDescription=function(shortDescription){var self=this.ptr;ensureCache.prepare();if(shortDescription&&typeof shortDescription==="object")shortDescription=shortDescription.ptr;else shortDescription=ensureString(shortDescription);return wrapPointer(_emscripten_bind_PlatformExtension_SetShortDescription_1(self,shortDescription),PlatformExtension)};PlatformExtension.prototype["GetShortDescription"]=PlatformExtension.prototype.GetShortDescription=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_PlatformExtension_GetShortDescription_0(self))};PlatformExtension.prototype["SetDimension"]=PlatformExtension.prototype.SetDimension=function(dimension){var self=this.ptr;ensureCache.prepare();if(dimension&&typeof dimension==="object")dimension=dimension.ptr;else dimension=ensureString(dimension);return wrapPointer(_emscripten_bind_PlatformExtension_SetDimension_1(self,dimension),PlatformExtension)};PlatformExtension.prototype["GetDimension"]=PlatformExtension.prototype.GetDimension=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_PlatformExtension_GetDimension_0(self))};PlatformExtension.prototype["AddInstructionOrExpressionGroupMetadata"]=PlatformExtension.prototype.AddInstructionOrExpressionGroupMetadata=function(name){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);return wrapPointer(_emscripten_bind_PlatformExtension_AddInstructionOrExpressionGroupMetadata_1(self,name),InstructionOrExpressionGroupMetadata)};PlatformExtension.prototype["MarkAsDeprecated"]=PlatformExtension.prototype.MarkAsDeprecated=function(){var self=this.ptr;_emscripten_bind_PlatformExtension_MarkAsDeprecated_0(self)};PlatformExtension.prototype["GetTags"]=PlatformExtension.prototype.GetTags=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_PlatformExtension_GetTags_0(self),VectorString)};PlatformExtension.prototype["SetTags"]=PlatformExtension.prototype.SetTags=function(csvTags){var self=this.ptr;ensureCache.prepare();if(csvTags&&typeof csvTags==="object")csvTags=csvTags.ptr;else csvTags=ensureString(csvTags);return wrapPointer(_emscripten_bind_PlatformExtension_SetTags_1(self,csvTags),PlatformExtension)};PlatformExtension.prototype["AddExpressionAndCondition"]=PlatformExtension.prototype.AddExpressionAndCondition=function(type,name,fullname,description,sentenceName,group,icon){var self=this.ptr;ensureCache.prepare();if(type&&typeof type==="object")type=type.ptr;else type=ensureString(type);if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);if(fullname&&typeof fullname==="object")fullname=fullname.ptr;else fullname=ensureString(fullname);if(description&&typeof description==="object")description=description.ptr;else description=ensureString(description);if(sentenceName&&typeof sentenceName==="object")sentenceName=sentenceName.ptr;else sentenceName=ensureString(sentenceName);if(group&&typeof group==="object")group=group.ptr;else group=ensureString(group);if(icon&&typeof icon==="object")icon=icon.ptr;else icon=ensureString(icon);return wrapPointer(_emscripten_bind_PlatformExtension_AddExpressionAndCondition_7(self,type,name,fullname,description,sentenceName,group,icon),MultipleInstructionMetadata)};PlatformExtension.prototype["AddExpressionAndConditionAndAction"]=PlatformExtension.prototype.AddExpressionAndConditionAndAction=function(type,name,fullname,description,sentenceName,group,icon){var self=this.ptr;ensureCache.prepare();if(type&&typeof type==="object")type=type.ptr;else type=ensureString(type);if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);if(fullname&&typeof fullname==="object")fullname=fullname.ptr;else fullname=ensureString(fullname);if(description&&typeof description==="object")description=description.ptr;else description=ensureString(description);if(sentenceName&&typeof sentenceName==="object")sentenceName=sentenceName.ptr;else sentenceName=ensureString(sentenceName);if(group&&typeof group==="object")group=group.ptr;else group=ensureString(group);if(icon&&typeof icon==="object")icon=icon.ptr;else icon=ensureString(icon);return wrapPointer(_emscripten_bind_PlatformExtension_AddExpressionAndConditionAndAction_7(self,type,name,fullname,description,sentenceName,group,icon),MultipleInstructionMetadata)};PlatformExtension.prototype["AddCondition"]=PlatformExtension.prototype.AddCondition=function(name,fullname,description,sentence,group,icon,smallicon){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);if(fullname&&typeof fullname==="object")fullname=fullname.ptr;else fullname=ensureString(fullname);if(description&&typeof description==="object")description=description.ptr;else description=ensureString(description);if(sentence&&typeof sentence==="object")sentence=sentence.ptr;else sentence=ensureString(sentence);if(group&&typeof group==="object")group=group.ptr;else group=ensureString(group);if(icon&&typeof icon==="object")icon=icon.ptr;else icon=ensureString(icon);if(smallicon&&typeof smallicon==="object")smallicon=smallicon.ptr;else smallicon=ensureString(smallicon);return wrapPointer(_emscripten_bind_PlatformExtension_AddCondition_7(self,name,fullname,description,sentence,group,icon,smallicon),InstructionMetadata)};PlatformExtension.prototype["AddAction"]=PlatformExtension.prototype.AddAction=function(name,fullname,description,sentence,group,icon,smallicon){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);if(fullname&&typeof fullname==="object")fullname=fullname.ptr;else fullname=ensureString(fullname);if(description&&typeof description==="object")description=description.ptr;else description=ensureString(description);if(sentence&&typeof sentence==="object")sentence=sentence.ptr;else sentence=ensureString(sentence);if(group&&typeof group==="object")group=group.ptr;else group=ensureString(group);if(icon&&typeof icon==="object")icon=icon.ptr;else icon=ensureString(icon);if(smallicon&&typeof smallicon==="object")smallicon=smallicon.ptr;else smallicon=ensureString(smallicon);return wrapPointer(_emscripten_bind_PlatformExtension_AddAction_7(self,name,fullname,description,sentence,group,icon,smallicon),InstructionMetadata)};PlatformExtension.prototype["AddExpression"]=PlatformExtension.prototype.AddExpression=function(name,fullname,description,group,smallicon){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);if(fullname&&typeof fullname==="object")fullname=fullname.ptr;else fullname=ensureString(fullname);if(description&&typeof description==="object")description=description.ptr;else description=ensureString(description);if(group&&typeof group==="object")group=group.ptr;else group=ensureString(group);if(smallicon&&typeof smallicon==="object")smallicon=smallicon.ptr;else smallicon=ensureString(smallicon);return wrapPointer(_emscripten_bind_PlatformExtension_AddExpression_5(self,name,fullname,description,group,smallicon),ExpressionMetadata)};PlatformExtension.prototype["AddStrExpression"]=PlatformExtension.prototype.AddStrExpression=function(name,fullname,description,group,smallicon){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);if(fullname&&typeof fullname==="object")fullname=fullname.ptr;else fullname=ensureString(fullname);if(description&&typeof description==="object")description=description.ptr;else description=ensureString(description);if(group&&typeof group==="object")group=group.ptr;else group=ensureString(group);if(smallicon&&typeof smallicon==="object")smallicon=smallicon.ptr;else smallicon=ensureString(smallicon);return wrapPointer(_emscripten_bind_PlatformExtension_AddStrExpression_5(self,name,fullname,description,group,smallicon),ExpressionMetadata)};PlatformExtension.prototype["AddDependency"]=PlatformExtension.prototype.AddDependency=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_PlatformExtension_AddDependency_0(self),DependencyMetadata)};PlatformExtension.prototype["WRAPPED_AddBehavior"]=PlatformExtension.prototype.WRAPPED_AddBehavior=function(name,fullname,defaultName,description,group,icon24x24,className,instance,sharedDatasInstance){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);if(fullname&&typeof fullname==="object")fullname=fullname.ptr;else fullname=ensureString(fullname);if(defaultName&&typeof defaultName==="object")defaultName=defaultName.ptr;else defaultName=ensureString(defaultName);if(description&&typeof description==="object")description=description.ptr;else description=ensureString(description);if(group&&typeof group==="object")group=group.ptr;else group=ensureString(group);if(icon24x24&&typeof icon24x24==="object")icon24x24=icon24x24.ptr;else icon24x24=ensureString(icon24x24);if(className&&typeof className==="object")className=className.ptr;else className=ensureString(className);if(instance&&typeof instance==="object")instance=instance.ptr;if(sharedDatasInstance&&typeof sharedDatasInstance==="object")sharedDatasInstance=sharedDatasInstance.ptr;return wrapPointer(_emscripten_bind_PlatformExtension_WRAPPED_AddBehavior_9(self,name,fullname,defaultName,description,group,icon24x24,className,instance,sharedDatasInstance),BehaviorMetadata)};PlatformExtension.prototype["WRAPPED_AddObject"]=PlatformExtension.prototype.WRAPPED_AddObject=function(name,fullname,description,icon24x24,instance){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);if(fullname&&typeof fullname==="object")fullname=fullname.ptr;else fullname=ensureString(fullname);if(description&&typeof description==="object")description=description.ptr;else description=ensureString(description);if(icon24x24&&typeof icon24x24==="object")icon24x24=icon24x24.ptr;else icon24x24=ensureString(icon24x24);if(instance&&typeof instance==="object")instance=instance.ptr;return wrapPointer(_emscripten_bind_PlatformExtension_WRAPPED_AddObject_5(self,name,fullname,description,icon24x24,instance),ObjectMetadata)};PlatformExtension.prototype["AddEffect"]=PlatformExtension.prototype.AddEffect=function(name){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);return wrapPointer(_emscripten_bind_PlatformExtension_AddEffect_1(self,name),EffectMetadata)};PlatformExtension.prototype["RegisterProperty"]=PlatformExtension.prototype.RegisterProperty=function(name){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);return wrapPointer(_emscripten_bind_PlatformExtension_RegisterProperty_1(self,name),PropertyDescriptor)};PlatformExtension.prototype["GetFullName"]=PlatformExtension.prototype.GetFullName=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_PlatformExtension_GetFullName_0(self))};PlatformExtension.prototype["GetName"]=PlatformExtension.prototype.GetName=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_PlatformExtension_GetName_0(self))};PlatformExtension.prototype["GetCategory"]=PlatformExtension.prototype.GetCategory=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_PlatformExtension_GetCategory_0(self))};PlatformExtension.prototype["GetDescription"]=PlatformExtension.prototype.GetDescription=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_PlatformExtension_GetDescription_0(self))};PlatformExtension.prototype["GetAuthor"]=PlatformExtension.prototype.GetAuthor=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_PlatformExtension_GetAuthor_0(self))};PlatformExtension.prototype["GetLicense"]=PlatformExtension.prototype.GetLicense=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_PlatformExtension_GetLicense_0(self))};PlatformExtension.prototype["GetHelpPath"]=PlatformExtension.prototype.GetHelpPath=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_PlatformExtension_GetHelpPath_0(self))};PlatformExtension.prototype["GetIconUrl"]=PlatformExtension.prototype.GetIconUrl=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_PlatformExtension_GetIconUrl_0(self))};PlatformExtension.prototype["GetNameSpace"]=PlatformExtension.prototype.GetNameSpace=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_PlatformExtension_GetNameSpace_0(self))};PlatformExtension.prototype["AddDuplicatedAction"]=PlatformExtension.prototype.AddDuplicatedAction=function(newActionName,copiedActionName){var self=this.ptr;ensureCache.prepare();if(newActionName&&typeof newActionName==="object")newActionName=newActionName.ptr;else newActionName=ensureString(newActionName);if(copiedActionName&&typeof copiedActionName==="object")copiedActionName=copiedActionName.ptr;else copiedActionName=ensureString(copiedActionName);return wrapPointer(_emscripten_bind_PlatformExtension_AddDuplicatedAction_2(self,newActionName,copiedActionName),InstructionMetadata)};PlatformExtension.prototype["AddDuplicatedCondition"]=PlatformExtension.prototype.AddDuplicatedCondition=function(newConditionName,copiedConditionName){var self=this.ptr;ensureCache.prepare();if(newConditionName&&typeof newConditionName==="object")newConditionName=newConditionName.ptr;else newConditionName=ensureString(newConditionName);if(copiedConditionName&&typeof copiedConditionName==="object")copiedConditionName=copiedConditionName.ptr;else copiedConditionName=ensureString(copiedConditionName);return wrapPointer(_emscripten_bind_PlatformExtension_AddDuplicatedCondition_2(self,newConditionName,copiedConditionName),InstructionMetadata)};PlatformExtension.prototype["AddDuplicatedExpression"]=PlatformExtension.prototype.AddDuplicatedExpression=function(newExpressionName,copiedExpressionName){var self=this.ptr;ensureCache.prepare();if(newExpressionName&&typeof newExpressionName==="object")newExpressionName=newExpressionName.ptr;else newExpressionName=ensureString(newExpressionName);if(copiedExpressionName&&typeof copiedExpressionName==="object")copiedExpressionName=copiedExpressionName.ptr;else copiedExpressionName=ensureString(copiedExpressionName);return wrapPointer(_emscripten_bind_PlatformExtension_AddDuplicatedExpression_2(self,newExpressionName,copiedExpressionName),ExpressionMetadata)};PlatformExtension.prototype["AddDuplicatedStrExpression"]=PlatformExtension.prototype.AddDuplicatedStrExpression=function(newExpressionName,copiedExpressionName){var self=this.ptr;ensureCache.prepare();if(newExpressionName&&typeof newExpressionName==="object")newExpressionName=newExpressionName.ptr;else newExpressionName=ensureString(newExpressionName);if(copiedExpressionName&&typeof copiedExpressionName==="object")copiedExpressionName=copiedExpressionName.ptr;else copiedExpressionName=ensureString(copiedExpressionName);return wrapPointer(_emscripten_bind_PlatformExtension_AddDuplicatedStrExpression_2(self,newExpressionName,copiedExpressionName),ExpressionMetadata)};PlatformExtension.prototype["GetExtensionObjectsTypes"]=PlatformExtension.prototype.GetExtensionObjectsTypes=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_PlatformExtension_GetExtensionObjectsTypes_0(self),VectorString)};PlatformExtension.prototype["GetBehaviorsTypes"]=PlatformExtension.prototype.GetBehaviorsTypes=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_PlatformExtension_GetBehaviorsTypes_0(self),VectorString)};PlatformExtension.prototype["GetExtensionEffectTypes"]=PlatformExtension.prototype.GetExtensionEffectTypes=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_PlatformExtension_GetExtensionEffectTypes_0(self),VectorString)};PlatformExtension.prototype["GetObjectMetadata"]=PlatformExtension.prototype.GetObjectMetadata=function(type){var self=this.ptr;ensureCache.prepare();if(type&&typeof type==="object")type=type.ptr;else type=ensureString(type);return wrapPointer(_emscripten_bind_PlatformExtension_GetObjectMetadata_1(self,type),ObjectMetadata)};PlatformExtension.prototype["GetBehaviorMetadata"]=PlatformExtension.prototype.GetBehaviorMetadata=function(type){var self=this.ptr;ensureCache.prepare();if(type&&typeof type==="object")type=type.ptr;else type=ensureString(type);return wrapPointer(_emscripten_bind_PlatformExtension_GetBehaviorMetadata_1(self,type),BehaviorMetadata)};PlatformExtension.prototype["GetEffectMetadata"]=PlatformExtension.prototype.GetEffectMetadata=function(type){var self=this.ptr;ensureCache.prepare();if(type&&typeof type==="object")type=type.ptr;else type=ensureString(type);return wrapPointer(_emscripten_bind_PlatformExtension_GetEffectMetadata_1(self,type),EffectMetadata)};PlatformExtension.prototype["GetAllEvents"]=PlatformExtension.prototype.GetAllEvents=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_PlatformExtension_GetAllEvents_0(self),MapStringEventMetadata)};PlatformExtension.prototype["GetAllActions"]=PlatformExtension.prototype.GetAllActions=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_PlatformExtension_GetAllActions_0(self),MapStringInstructionMetadata)};PlatformExtension.prototype["GetAllConditions"]=PlatformExtension.prototype.GetAllConditions=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_PlatformExtension_GetAllConditions_0(self),MapStringInstructionMetadata)};PlatformExtension.prototype["GetAllExpressions"]=PlatformExtension.prototype.GetAllExpressions=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_PlatformExtension_GetAllExpressions_0(self),MapStringExpressionMetadata)};PlatformExtension.prototype["GetAllStrExpressions"]=PlatformExtension.prototype.GetAllStrExpressions=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_PlatformExtension_GetAllStrExpressions_0(self),MapStringExpressionMetadata)};PlatformExtension.prototype["GetAllActionsForObject"]=PlatformExtension.prototype.GetAllActionsForObject=function(objectType){var self=this.ptr;ensureCache.prepare();if(objectType&&typeof objectType==="object")objectType=objectType.ptr;else objectType=ensureString(objectType);return wrapPointer(_emscripten_bind_PlatformExtension_GetAllActionsForObject_1(self,objectType),MapStringInstructionMetadata)};PlatformExtension.prototype["GetAllConditionsForObject"]=PlatformExtension.prototype.GetAllConditionsForObject=function(objectType){var self=this.ptr;ensureCache.prepare();if(objectType&&typeof objectType==="object")objectType=objectType.ptr;else objectType=ensureString(objectType);return wrapPointer(_emscripten_bind_PlatformExtension_GetAllConditionsForObject_1(self,objectType),MapStringInstructionMetadata)};PlatformExtension.prototype["GetAllExpressionsForObject"]=PlatformExtension.prototype.GetAllExpressionsForObject=function(objectType){var self=this.ptr;ensureCache.prepare();if(objectType&&typeof objectType==="object")objectType=objectType.ptr;else objectType=ensureString(objectType);return wrapPointer(_emscripten_bind_PlatformExtension_GetAllExpressionsForObject_1(self,objectType),MapStringExpressionMetadata)};PlatformExtension.prototype["GetAllStrExpressionsForObject"]=PlatformExtension.prototype.GetAllStrExpressionsForObject=function(objectType){var self=this.ptr;ensureCache.prepare();if(objectType&&typeof objectType==="object")objectType=objectType.ptr;else objectType=ensureString(objectType);return wrapPointer(_emscripten_bind_PlatformExtension_GetAllStrExpressionsForObject_1(self,objectType),MapStringExpressionMetadata)};PlatformExtension.prototype["GetAllActionsForBehavior"]=PlatformExtension.prototype.GetAllActionsForBehavior=function(autoType){var self=this.ptr;ensureCache.prepare();if(autoType&&typeof autoType==="object")autoType=autoType.ptr;else autoType=ensureString(autoType);return wrapPointer(_emscripten_bind_PlatformExtension_GetAllActionsForBehavior_1(self,autoType),MapStringInstructionMetadata)};PlatformExtension.prototype["GetAllConditionsForBehavior"]=PlatformExtension.prototype.GetAllConditionsForBehavior=function(autoType){var self=this.ptr;ensureCache.prepare();if(autoType&&typeof autoType==="object")autoType=autoType.ptr;else autoType=ensureString(autoType);return wrapPointer(_emscripten_bind_PlatformExtension_GetAllConditionsForBehavior_1(self,autoType),MapStringInstructionMetadata)};PlatformExtension.prototype["GetAllExpressionsForBehavior"]=PlatformExtension.prototype.GetAllExpressionsForBehavior=function(autoType){var self=this.ptr;ensureCache.prepare();if(autoType&&typeof autoType==="object")autoType=autoType.ptr;else autoType=ensureString(autoType);return wrapPointer(_emscripten_bind_PlatformExtension_GetAllExpressionsForBehavior_1(self,autoType),MapStringExpressionMetadata)};PlatformExtension.prototype["GetAllStrExpressionsForBehavior"]=PlatformExtension.prototype.GetAllStrExpressionsForBehavior=function(autoType){var self=this.ptr;ensureCache.prepare();if(autoType&&typeof autoType==="object")autoType=autoType.ptr;else autoType=ensureString(autoType);return wrapPointer(_emscripten_bind_PlatformExtension_GetAllStrExpressionsForBehavior_1(self,autoType),MapStringExpressionMetadata)};PlatformExtension.prototype["GetAllProperties"]=PlatformExtension.prototype.GetAllProperties=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_PlatformExtension_GetAllProperties_0(self),MapStringPropertyDescriptor)};PlatformExtension.prototype["GetAllDependencies"]=PlatformExtension.prototype.GetAllDependencies=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_PlatformExtension_GetAllDependencies_0(self),VectorDependencyMetadata)};PlatformExtension.prototype["GetAllSourceFiles"]=PlatformExtension.prototype.GetAllSourceFiles=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_PlatformExtension_GetAllSourceFiles_0(self),VectorSourceFileMetadata)};PlatformExtension.prototype["STATIC_GetNamespaceSeparator"]=PlatformExtension.prototype.STATIC_GetNamespaceSeparator=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_PlatformExtension_STATIC_GetNamespaceSeparator_0(self))};PlatformExtension.prototype["STATIC_GetBehaviorFullType"]=PlatformExtension.prototype.STATIC_GetBehaviorFullType=function(extensionName,behaviorName){var self=this.ptr;ensureCache.prepare();if(extensionName&&typeof extensionName==="object")extensionName=extensionName.ptr;else extensionName=ensureString(extensionName);if(behaviorName&&typeof behaviorName==="object")behaviorName=behaviorName.ptr;else behaviorName=ensureString(behaviorName);return UTF8ToString(_emscripten_bind_PlatformExtension_STATIC_GetBehaviorFullType_2(self,extensionName,behaviorName))};PlatformExtension.prototype["STATIC_GetExtensionFromFullBehaviorType"]=PlatformExtension.prototype.STATIC_GetExtensionFromFullBehaviorType=function(type){var self=this.ptr;ensureCache.prepare();if(type&&typeof type==="object")type=type.ptr;else type=ensureString(type);return UTF8ToString(_emscripten_bind_PlatformExtension_STATIC_GetExtensionFromFullBehaviorType_1(self,type))};PlatformExtension.prototype["STATIC_GetBehaviorNameFromFullBehaviorType"]=PlatformExtension.prototype.STATIC_GetBehaviorNameFromFullBehaviorType=function(type){var self=this.ptr;ensureCache.prepare();if(type&&typeof type==="object")type=type.ptr;else type=ensureString(type);return UTF8ToString(_emscripten_bind_PlatformExtension_STATIC_GetBehaviorNameFromFullBehaviorType_1(self,type))};PlatformExtension.prototype["STATIC_GetObjectFullType"]=PlatformExtension.prototype.STATIC_GetObjectFullType=function(extensionName,objectName){var self=this.ptr;ensureCache.prepare();if(extensionName&&typeof extensionName==="object")extensionName=extensionName.ptr;else extensionName=ensureString(extensionName);if(objectName&&typeof objectName==="object")objectName=objectName.ptr;else objectName=ensureString(objectName);return UTF8ToString(_emscripten_bind_PlatformExtension_STATIC_GetObjectFullType_2(self,extensionName,objectName))};PlatformExtension.prototype["STATIC_GetExtensionFromFullObjectType"]=PlatformExtension.prototype.STATIC_GetExtensionFromFullObjectType=function(type){var self=this.ptr;ensureCache.prepare();if(type&&typeof type==="object")type=type.ptr;else type=ensureString(type);return UTF8ToString(_emscripten_bind_PlatformExtension_STATIC_GetExtensionFromFullObjectType_1(self,type))};PlatformExtension.prototype["STATIC_GetObjectNameFromFullObjectType"]=PlatformExtension.prototype.STATIC_GetObjectNameFromFullObjectType=function(type){var self=this.ptr;ensureCache.prepare();if(type&&typeof type==="object")type=type.ptr;else type=ensureString(type);return UTF8ToString(_emscripten_bind_PlatformExtension_STATIC_GetObjectNameFromFullObjectType_1(self,type))};PlatformExtension.prototype["__destroy__"]=PlatformExtension.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_PlatformExtension___destroy___0(self)};function EventsList(){this.ptr=_emscripten_bind_EventsList_EventsList_0();getCache(EventsList)[this.ptr]=this}EventsList.prototype=Object.create(WrapperObject.prototype);EventsList.prototype.constructor=EventsList;EventsList.prototype.__class__=EventsList;EventsList.__cache__={};Module["EventsList"]=EventsList;EventsList.prototype["InsertEvent"]=EventsList.prototype.InsertEvent=function(event,pos){var self=this.ptr;if(event&&typeof event==="object")event=event.ptr;if(pos&&typeof pos==="object")pos=pos.ptr;return wrapPointer(_emscripten_bind_EventsList_InsertEvent_2(self,event,pos),BaseEvent)};EventsList.prototype["InsertNewEvent"]=EventsList.prototype.InsertNewEvent=function(project,type,pos){var self=this.ptr;ensureCache.prepare();if(project&&typeof project==="object")project=project.ptr;if(type&&typeof type==="object")type=type.ptr;else type=ensureString(type);if(pos&&typeof pos==="object")pos=pos.ptr;return wrapPointer(_emscripten_bind_EventsList_InsertNewEvent_3(self,project,type,pos),BaseEvent)};EventsList.prototype["InsertEvents"]=EventsList.prototype.InsertEvents=function(list,begin,end,pos){var self=this.ptr;if(list&&typeof list==="object")list=list.ptr;if(begin&&typeof begin==="object")begin=begin.ptr;if(end&&typeof end==="object")end=end.ptr;if(pos&&typeof pos==="object")pos=pos.ptr;_emscripten_bind_EventsList_InsertEvents_4(self,list,begin,end,pos)};EventsList.prototype["GetEventAt"]=EventsList.prototype.GetEventAt=function(pos){var self=this.ptr;if(pos&&typeof pos==="object")pos=pos.ptr;return wrapPointer(_emscripten_bind_EventsList_GetEventAt_1(self,pos),BaseEvent)};EventsList.prototype["RemoveEventAt"]=EventsList.prototype.RemoveEventAt=function(pos){var self=this.ptr;if(pos&&typeof pos==="object")pos=pos.ptr;_emscripten_bind_EventsList_RemoveEventAt_1(self,pos)};EventsList.prototype["RemoveEvent"]=EventsList.prototype.RemoveEvent=function(event){var self=this.ptr;if(event&&typeof event==="object")event=event.ptr;_emscripten_bind_EventsList_RemoveEvent_1(self,event)};EventsList.prototype["GetEventsCount"]=EventsList.prototype.GetEventsCount=function(){var self=this.ptr;return _emscripten_bind_EventsList_GetEventsCount_0(self)};EventsList.prototype["Contains"]=EventsList.prototype.Contains=function(event,recursive){var self=this.ptr;if(event&&typeof event==="object")event=event.ptr;if(recursive&&typeof recursive==="object")recursive=recursive.ptr;return!!_emscripten_bind_EventsList_Contains_2(self,event,recursive)};EventsList.prototype["MoveEventToAnotherEventsList"]=EventsList.prototype.MoveEventToAnotherEventsList=function(eventToMove,newEventsList,newPosition){var self=this.ptr;if(eventToMove&&typeof eventToMove==="object")eventToMove=eventToMove.ptr;if(newEventsList&&typeof newEventsList==="object")newEventsList=newEventsList.ptr;if(newPosition&&typeof newPosition==="object")newPosition=newPosition.ptr;return!!_emscripten_bind_EventsList_MoveEventToAnotherEventsList_3(self,eventToMove,newEventsList,newPosition)};EventsList.prototype["IsEmpty"]=EventsList.prototype.IsEmpty=function(){var self=this.ptr;return!!_emscripten_bind_EventsList_IsEmpty_0(self)};EventsList.prototype["Clear"]=EventsList.prototype.Clear=function(){var self=this.ptr;_emscripten_bind_EventsList_Clear_0(self)};EventsList.prototype["SerializeTo"]=EventsList.prototype.SerializeTo=function(element){var self=this.ptr;if(element&&typeof element==="object")element=element.ptr;_emscripten_bind_EventsList_SerializeTo_1(self,element)};EventsList.prototype["UnserializeFrom"]=EventsList.prototype.UnserializeFrom=function(project,element){var self=this.ptr;if(project&&typeof project==="object")project=project.ptr;if(element&&typeof element==="object")element=element.ptr;_emscripten_bind_EventsList_UnserializeFrom_2(self,project,element)};EventsList.prototype["__destroy__"]=EventsList.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_EventsList___destroy___0(self)};function StandardEvent(){this.ptr=_emscripten_bind_StandardEvent_StandardEvent_0();getCache(StandardEvent)[this.ptr]=this}StandardEvent.prototype=Object.create(BaseEvent.prototype);StandardEvent.prototype.constructor=StandardEvent;StandardEvent.prototype.__class__=StandardEvent;StandardEvent.__cache__={};Module["StandardEvent"]=StandardEvent;StandardEvent.prototype["GetConditions"]=StandardEvent.prototype.GetConditions=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_StandardEvent_GetConditions_0(self),InstructionsList)};StandardEvent.prototype["GetActions"]=StandardEvent.prototype.GetActions=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_StandardEvent_GetActions_0(self),InstructionsList)};StandardEvent.prototype["Clone"]=StandardEvent.prototype.Clone=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_StandardEvent_Clone_0(self),BaseEvent)};StandardEvent.prototype["GetType"]=StandardEvent.prototype.GetType=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_StandardEvent_GetType_0(self))};StandardEvent.prototype["SetType"]=StandardEvent.prototype.SetType=function(type){var self=this.ptr;ensureCache.prepare();if(type&&typeof type==="object")type=type.ptr;else type=ensureString(type);_emscripten_bind_StandardEvent_SetType_1(self,type)};StandardEvent.prototype["IsExecutable"]=StandardEvent.prototype.IsExecutable=function(){var self=this.ptr;return!!_emscripten_bind_StandardEvent_IsExecutable_0(self)};StandardEvent.prototype["CanHaveSubEvents"]=StandardEvent.prototype.CanHaveSubEvents=function(){var self=this.ptr;return!!_emscripten_bind_StandardEvent_CanHaveSubEvents_0(self)};StandardEvent.prototype["HasSubEvents"]=StandardEvent.prototype.HasSubEvents=function(){var self=this.ptr;return!!_emscripten_bind_StandardEvent_HasSubEvents_0(self)};StandardEvent.prototype["GetSubEvents"]=StandardEvent.prototype.GetSubEvents=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_StandardEvent_GetSubEvents_0(self),EventsList)};StandardEvent.prototype["CanHaveVariables"]=StandardEvent.prototype.CanHaveVariables=function(){var self=this.ptr;return!!_emscripten_bind_StandardEvent_CanHaveVariables_0(self)};StandardEvent.prototype["HasVariables"]=StandardEvent.prototype.HasVariables=function(){var self=this.ptr;return!!_emscripten_bind_StandardEvent_HasVariables_0(self)};StandardEvent.prototype["GetVariables"]=StandardEvent.prototype.GetVariables=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_StandardEvent_GetVariables_0(self),VariablesContainer)};StandardEvent.prototype["IsDisabled"]=StandardEvent.prototype.IsDisabled=function(){var self=this.ptr;return!!_emscripten_bind_StandardEvent_IsDisabled_0(self)};StandardEvent.prototype["SetDisabled"]=StandardEvent.prototype.SetDisabled=function(disable){var self=this.ptr;if(disable&&typeof disable==="object")disable=disable.ptr;_emscripten_bind_StandardEvent_SetDisabled_1(self,disable)};StandardEvent.prototype["IsFolded"]=StandardEvent.prototype.IsFolded=function(){var self=this.ptr;return!!_emscripten_bind_StandardEvent_IsFolded_0(self)};StandardEvent.prototype["SetFolded"]=StandardEvent.prototype.SetFolded=function(folded){var self=this.ptr;if(folded&&typeof folded==="object")folded=folded.ptr;_emscripten_bind_StandardEvent_SetFolded_1(self,folded)};StandardEvent.prototype["SerializeTo"]=StandardEvent.prototype.SerializeTo=function(element){var self=this.ptr;if(element&&typeof element==="object")element=element.ptr;_emscripten_bind_StandardEvent_SerializeTo_1(self,element)};StandardEvent.prototype["UnserializeFrom"]=StandardEvent.prototype.UnserializeFrom=function(project,element){var self=this.ptr;if(project&&typeof project==="object")project=project.ptr;if(element&&typeof element==="object")element=element.ptr;_emscripten_bind_StandardEvent_UnserializeFrom_2(self,project,element)};StandardEvent.prototype["GetAiGeneratedEventId"]=StandardEvent.prototype.GetAiGeneratedEventId=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_StandardEvent_GetAiGeneratedEventId_0(self))};StandardEvent.prototype["SetAiGeneratedEventId"]=StandardEvent.prototype.SetAiGeneratedEventId=function(aiGeneratedEventId){var self=this.ptr;ensureCache.prepare();if(aiGeneratedEventId&&typeof aiGeneratedEventId==="object")aiGeneratedEventId=aiGeneratedEventId.ptr;else aiGeneratedEventId=ensureString(aiGeneratedEventId);_emscripten_bind_StandardEvent_SetAiGeneratedEventId_1(self,aiGeneratedEventId)};StandardEvent.prototype["__destroy__"]=StandardEvent.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_StandardEvent___destroy___0(self)};function ElseEvent(){this.ptr=_emscripten_bind_ElseEvent_ElseEvent_0();getCache(ElseEvent)[this.ptr]=this}ElseEvent.prototype=Object.create(BaseEvent.prototype);ElseEvent.prototype.constructor=ElseEvent;ElseEvent.prototype.__class__=ElseEvent;ElseEvent.__cache__={};Module["ElseEvent"]=ElseEvent;ElseEvent.prototype["GetConditions"]=ElseEvent.prototype.GetConditions=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_ElseEvent_GetConditions_0(self),InstructionsList)};ElseEvent.prototype["GetActions"]=ElseEvent.prototype.GetActions=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_ElseEvent_GetActions_0(self),InstructionsList)};ElseEvent.prototype["Clone"]=ElseEvent.prototype.Clone=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_ElseEvent_Clone_0(self),BaseEvent)};ElseEvent.prototype["GetType"]=ElseEvent.prototype.GetType=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_ElseEvent_GetType_0(self))};ElseEvent.prototype["SetType"]=ElseEvent.prototype.SetType=function(type){var self=this.ptr;ensureCache.prepare();if(type&&typeof type==="object")type=type.ptr;else type=ensureString(type);_emscripten_bind_ElseEvent_SetType_1(self,type)};ElseEvent.prototype["IsExecutable"]=ElseEvent.prototype.IsExecutable=function(){var self=this.ptr;return!!_emscripten_bind_ElseEvent_IsExecutable_0(self)};ElseEvent.prototype["CanHaveSubEvents"]=ElseEvent.prototype.CanHaveSubEvents=function(){var self=this.ptr;return!!_emscripten_bind_ElseEvent_CanHaveSubEvents_0(self)};ElseEvent.prototype["HasSubEvents"]=ElseEvent.prototype.HasSubEvents=function(){var self=this.ptr;return!!_emscripten_bind_ElseEvent_HasSubEvents_0(self)};ElseEvent.prototype["GetSubEvents"]=ElseEvent.prototype.GetSubEvents=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_ElseEvent_GetSubEvents_0(self),EventsList)};ElseEvent.prototype["CanHaveVariables"]=ElseEvent.prototype.CanHaveVariables=function(){var self=this.ptr;return!!_emscripten_bind_ElseEvent_CanHaveVariables_0(self)};ElseEvent.prototype["HasVariables"]=ElseEvent.prototype.HasVariables=function(){var self=this.ptr;return!!_emscripten_bind_ElseEvent_HasVariables_0(self)};ElseEvent.prototype["GetVariables"]=ElseEvent.prototype.GetVariables=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_ElseEvent_GetVariables_0(self),VariablesContainer)};ElseEvent.prototype["IsDisabled"]=ElseEvent.prototype.IsDisabled=function(){var self=this.ptr;return!!_emscripten_bind_ElseEvent_IsDisabled_0(self)};ElseEvent.prototype["SetDisabled"]=ElseEvent.prototype.SetDisabled=function(disable){var self=this.ptr;if(disable&&typeof disable==="object")disable=disable.ptr;_emscripten_bind_ElseEvent_SetDisabled_1(self,disable)};ElseEvent.prototype["IsFolded"]=ElseEvent.prototype.IsFolded=function(){var self=this.ptr;return!!_emscripten_bind_ElseEvent_IsFolded_0(self)};ElseEvent.prototype["SetFolded"]=ElseEvent.prototype.SetFolded=function(folded){var self=this.ptr;if(folded&&typeof folded==="object")folded=folded.ptr;_emscripten_bind_ElseEvent_SetFolded_1(self,folded)};ElseEvent.prototype["SerializeTo"]=ElseEvent.prototype.SerializeTo=function(element){var self=this.ptr;if(element&&typeof element==="object")element=element.ptr;_emscripten_bind_ElseEvent_SerializeTo_1(self,element)};ElseEvent.prototype["UnserializeFrom"]=ElseEvent.prototype.UnserializeFrom=function(project,element){var self=this.ptr;if(project&&typeof project==="object")project=project.ptr;if(element&&typeof element==="object")element=element.ptr;_emscripten_bind_ElseEvent_UnserializeFrom_2(self,project,element)};ElseEvent.prototype["GetAiGeneratedEventId"]=ElseEvent.prototype.GetAiGeneratedEventId=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_ElseEvent_GetAiGeneratedEventId_0(self))};ElseEvent.prototype["SetAiGeneratedEventId"]=ElseEvent.prototype.SetAiGeneratedEventId=function(aiGeneratedEventId){var self=this.ptr;ensureCache.prepare();if(aiGeneratedEventId&&typeof aiGeneratedEventId==="object")aiGeneratedEventId=aiGeneratedEventId.ptr;else aiGeneratedEventId=ensureString(aiGeneratedEventId);_emscripten_bind_ElseEvent_SetAiGeneratedEventId_1(self,aiGeneratedEventId)};ElseEvent.prototype["__destroy__"]=ElseEvent.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_ElseEvent___destroy___0(self)};function RepeatEvent(){this.ptr=_emscripten_bind_RepeatEvent_RepeatEvent_0();getCache(RepeatEvent)[this.ptr]=this}RepeatEvent.prototype=Object.create(BaseEvent.prototype);RepeatEvent.prototype.constructor=RepeatEvent;RepeatEvent.prototype.__class__=RepeatEvent;RepeatEvent.__cache__={};Module["RepeatEvent"]=RepeatEvent;RepeatEvent.prototype["GetConditions"]=RepeatEvent.prototype.GetConditions=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_RepeatEvent_GetConditions_0(self),InstructionsList)};RepeatEvent.prototype["GetActions"]=RepeatEvent.prototype.GetActions=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_RepeatEvent_GetActions_0(self),InstructionsList)};RepeatEvent.prototype["SetRepeatExpressionPlainString"]=RepeatEvent.prototype.SetRepeatExpressionPlainString=function(expr){var self=this.ptr;ensureCache.prepare();if(expr&&typeof expr==="object")expr=expr.ptr;else expr=ensureString(expr);_emscripten_bind_RepeatEvent_SetRepeatExpressionPlainString_1(self,expr)};RepeatEvent.prototype["GetRepeatExpression"]=RepeatEvent.prototype.GetRepeatExpression=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_RepeatEvent_GetRepeatExpression_0(self),Expression)};RepeatEvent.prototype["GetLoopIndexVariableName"]=RepeatEvent.prototype.GetLoopIndexVariableName=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_RepeatEvent_GetLoopIndexVariableName_0(self))};RepeatEvent.prototype["SetLoopIndexVariableName"]=RepeatEvent.prototype.SetLoopIndexVariableName=function(name){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);_emscripten_bind_RepeatEvent_SetLoopIndexVariableName_1(self,name)};RepeatEvent.prototype["Clone"]=RepeatEvent.prototype.Clone=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_RepeatEvent_Clone_0(self),BaseEvent)};RepeatEvent.prototype["GetType"]=RepeatEvent.prototype.GetType=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_RepeatEvent_GetType_0(self))};RepeatEvent.prototype["SetType"]=RepeatEvent.prototype.SetType=function(type){var self=this.ptr;ensureCache.prepare();if(type&&typeof type==="object")type=type.ptr;else type=ensureString(type);_emscripten_bind_RepeatEvent_SetType_1(self,type)};RepeatEvent.prototype["IsExecutable"]=RepeatEvent.prototype.IsExecutable=function(){var self=this.ptr;return!!_emscripten_bind_RepeatEvent_IsExecutable_0(self)};RepeatEvent.prototype["CanHaveSubEvents"]=RepeatEvent.prototype.CanHaveSubEvents=function(){var self=this.ptr;return!!_emscripten_bind_RepeatEvent_CanHaveSubEvents_0(self)};RepeatEvent.prototype["HasSubEvents"]=RepeatEvent.prototype.HasSubEvents=function(){var self=this.ptr;return!!_emscripten_bind_RepeatEvent_HasSubEvents_0(self)};RepeatEvent.prototype["GetSubEvents"]=RepeatEvent.prototype.GetSubEvents=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_RepeatEvent_GetSubEvents_0(self),EventsList)};RepeatEvent.prototype["CanHaveVariables"]=RepeatEvent.prototype.CanHaveVariables=function(){var self=this.ptr;return!!_emscripten_bind_RepeatEvent_CanHaveVariables_0(self)};RepeatEvent.prototype["HasVariables"]=RepeatEvent.prototype.HasVariables=function(){var self=this.ptr;return!!_emscripten_bind_RepeatEvent_HasVariables_0(self)};RepeatEvent.prototype["GetVariables"]=RepeatEvent.prototype.GetVariables=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_RepeatEvent_GetVariables_0(self),VariablesContainer)};RepeatEvent.prototype["IsDisabled"]=RepeatEvent.prototype.IsDisabled=function(){var self=this.ptr;return!!_emscripten_bind_RepeatEvent_IsDisabled_0(self)};RepeatEvent.prototype["SetDisabled"]=RepeatEvent.prototype.SetDisabled=function(disable){var self=this.ptr;if(disable&&typeof disable==="object")disable=disable.ptr;_emscripten_bind_RepeatEvent_SetDisabled_1(self,disable)};RepeatEvent.prototype["IsFolded"]=RepeatEvent.prototype.IsFolded=function(){var self=this.ptr;return!!_emscripten_bind_RepeatEvent_IsFolded_0(self)};RepeatEvent.prototype["SetFolded"]=RepeatEvent.prototype.SetFolded=function(folded){var self=this.ptr;if(folded&&typeof folded==="object")folded=folded.ptr;_emscripten_bind_RepeatEvent_SetFolded_1(self,folded)};RepeatEvent.prototype["SerializeTo"]=RepeatEvent.prototype.SerializeTo=function(element){var self=this.ptr;if(element&&typeof element==="object")element=element.ptr;_emscripten_bind_RepeatEvent_SerializeTo_1(self,element)};RepeatEvent.prototype["UnserializeFrom"]=RepeatEvent.prototype.UnserializeFrom=function(project,element){var self=this.ptr;if(project&&typeof project==="object")project=project.ptr;if(element&&typeof element==="object")element=element.ptr;_emscripten_bind_RepeatEvent_UnserializeFrom_2(self,project,element)};RepeatEvent.prototype["GetAiGeneratedEventId"]=RepeatEvent.prototype.GetAiGeneratedEventId=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_RepeatEvent_GetAiGeneratedEventId_0(self))};RepeatEvent.prototype["SetAiGeneratedEventId"]=RepeatEvent.prototype.SetAiGeneratedEventId=function(aiGeneratedEventId){var self=this.ptr;ensureCache.prepare();if(aiGeneratedEventId&&typeof aiGeneratedEventId==="object")aiGeneratedEventId=aiGeneratedEventId.ptr;else aiGeneratedEventId=ensureString(aiGeneratedEventId);_emscripten_bind_RepeatEvent_SetAiGeneratedEventId_1(self,aiGeneratedEventId)};RepeatEvent.prototype["__destroy__"]=RepeatEvent.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_RepeatEvent___destroy___0(self)};function WhileEvent(){this.ptr=_emscripten_bind_WhileEvent_WhileEvent_0();getCache(WhileEvent)[this.ptr]=this}WhileEvent.prototype=Object.create(BaseEvent.prototype);WhileEvent.prototype.constructor=WhileEvent;WhileEvent.prototype.__class__=WhileEvent;WhileEvent.__cache__={};Module["WhileEvent"]=WhileEvent;WhileEvent.prototype["GetConditions"]=WhileEvent.prototype.GetConditions=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_WhileEvent_GetConditions_0(self),InstructionsList)};WhileEvent.prototype["GetWhileConditions"]=WhileEvent.prototype.GetWhileConditions=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_WhileEvent_GetWhileConditions_0(self),InstructionsList)};WhileEvent.prototype["GetActions"]=WhileEvent.prototype.GetActions=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_WhileEvent_GetActions_0(self),InstructionsList)};WhileEvent.prototype["GetLoopIndexVariableName"]=WhileEvent.prototype.GetLoopIndexVariableName=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_WhileEvent_GetLoopIndexVariableName_0(self))};WhileEvent.prototype["SetLoopIndexVariableName"]=WhileEvent.prototype.SetLoopIndexVariableName=function(name){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);_emscripten_bind_WhileEvent_SetLoopIndexVariableName_1(self,name)};WhileEvent.prototype["Clone"]=WhileEvent.prototype.Clone=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_WhileEvent_Clone_0(self),BaseEvent)};WhileEvent.prototype["GetType"]=WhileEvent.prototype.GetType=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_WhileEvent_GetType_0(self))};WhileEvent.prototype["SetType"]=WhileEvent.prototype.SetType=function(type){var self=this.ptr;ensureCache.prepare();if(type&&typeof type==="object")type=type.ptr;else type=ensureString(type);_emscripten_bind_WhileEvent_SetType_1(self,type)};WhileEvent.prototype["IsExecutable"]=WhileEvent.prototype.IsExecutable=function(){var self=this.ptr;return!!_emscripten_bind_WhileEvent_IsExecutable_0(self)};WhileEvent.prototype["CanHaveSubEvents"]=WhileEvent.prototype.CanHaveSubEvents=function(){var self=this.ptr;return!!_emscripten_bind_WhileEvent_CanHaveSubEvents_0(self)};WhileEvent.prototype["HasSubEvents"]=WhileEvent.prototype.HasSubEvents=function(){var self=this.ptr;return!!_emscripten_bind_WhileEvent_HasSubEvents_0(self)};WhileEvent.prototype["GetSubEvents"]=WhileEvent.prototype.GetSubEvents=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_WhileEvent_GetSubEvents_0(self),EventsList)};WhileEvent.prototype["CanHaveVariables"]=WhileEvent.prototype.CanHaveVariables=function(){var self=this.ptr;return!!_emscripten_bind_WhileEvent_CanHaveVariables_0(self)};WhileEvent.prototype["HasVariables"]=WhileEvent.prototype.HasVariables=function(){var self=this.ptr;return!!_emscripten_bind_WhileEvent_HasVariables_0(self)};WhileEvent.prototype["GetVariables"]=WhileEvent.prototype.GetVariables=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_WhileEvent_GetVariables_0(self),VariablesContainer)};WhileEvent.prototype["IsDisabled"]=WhileEvent.prototype.IsDisabled=function(){var self=this.ptr;return!!_emscripten_bind_WhileEvent_IsDisabled_0(self)};WhileEvent.prototype["SetDisabled"]=WhileEvent.prototype.SetDisabled=function(disable){var self=this.ptr;if(disable&&typeof disable==="object")disable=disable.ptr;_emscripten_bind_WhileEvent_SetDisabled_1(self,disable)};WhileEvent.prototype["IsFolded"]=WhileEvent.prototype.IsFolded=function(){var self=this.ptr;return!!_emscripten_bind_WhileEvent_IsFolded_0(self)};WhileEvent.prototype["SetFolded"]=WhileEvent.prototype.SetFolded=function(folded){var self=this.ptr;if(folded&&typeof folded==="object")folded=folded.ptr;_emscripten_bind_WhileEvent_SetFolded_1(self,folded)};WhileEvent.prototype["SerializeTo"]=WhileEvent.prototype.SerializeTo=function(element){var self=this.ptr;if(element&&typeof element==="object")element=element.ptr;_emscripten_bind_WhileEvent_SerializeTo_1(self,element)};WhileEvent.prototype["UnserializeFrom"]=WhileEvent.prototype.UnserializeFrom=function(project,element){var self=this.ptr;if(project&&typeof project==="object")project=project.ptr;if(element&&typeof element==="object")element=element.ptr;_emscripten_bind_WhileEvent_UnserializeFrom_2(self,project,element)};WhileEvent.prototype["GetAiGeneratedEventId"]=WhileEvent.prototype.GetAiGeneratedEventId=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_WhileEvent_GetAiGeneratedEventId_0(self))};WhileEvent.prototype["SetAiGeneratedEventId"]=WhileEvent.prototype.SetAiGeneratedEventId=function(aiGeneratedEventId){var self=this.ptr;ensureCache.prepare();if(aiGeneratedEventId&&typeof aiGeneratedEventId==="object")aiGeneratedEventId=aiGeneratedEventId.ptr;else aiGeneratedEventId=ensureString(aiGeneratedEventId);_emscripten_bind_WhileEvent_SetAiGeneratedEventId_1(self,aiGeneratedEventId)};WhileEvent.prototype["__destroy__"]=WhileEvent.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_WhileEvent___destroy___0(self)};function ForEachEvent(){this.ptr=_emscripten_bind_ForEachEvent_ForEachEvent_0();getCache(ForEachEvent)[this.ptr]=this}ForEachEvent.prototype=Object.create(BaseEvent.prototype);ForEachEvent.prototype.constructor=ForEachEvent;ForEachEvent.prototype.__class__=ForEachEvent;ForEachEvent.__cache__={};Module["ForEachEvent"]=ForEachEvent;ForEachEvent.prototype["SetObjectToPick"]=ForEachEvent.prototype.SetObjectToPick=function(objects){var self=this.ptr;ensureCache.prepare();if(objects&&typeof objects==="object")objects=objects.ptr;else objects=ensureString(objects);_emscripten_bind_ForEachEvent_SetObjectToPick_1(self,objects)};ForEachEvent.prototype["GetObjectToPick"]=ForEachEvent.prototype.GetObjectToPick=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_ForEachEvent_GetObjectToPick_0(self))};ForEachEvent.prototype["GetConditions"]=ForEachEvent.prototype.GetConditions=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_ForEachEvent_GetConditions_0(self),InstructionsList)};ForEachEvent.prototype["GetActions"]=ForEachEvent.prototype.GetActions=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_ForEachEvent_GetActions_0(self),InstructionsList)};ForEachEvent.prototype["GetLoopIndexVariableName"]=ForEachEvent.prototype.GetLoopIndexVariableName=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_ForEachEvent_GetLoopIndexVariableName_0(self))};ForEachEvent.prototype["SetLoopIndexVariableName"]=ForEachEvent.prototype.SetLoopIndexVariableName=function(name){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);_emscripten_bind_ForEachEvent_SetLoopIndexVariableName_1(self,name)};ForEachEvent.prototype["GetOrderBy"]=ForEachEvent.prototype.GetOrderBy=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_ForEachEvent_GetOrderBy_0(self))};ForEachEvent.prototype["SetOrderBy"]=ForEachEvent.prototype.SetOrderBy=function(orderBy){var self=this.ptr;ensureCache.prepare();if(orderBy&&typeof orderBy==="object")orderBy=orderBy.ptr;else orderBy=ensureString(orderBy);_emscripten_bind_ForEachEvent_SetOrderBy_1(self,orderBy)};ForEachEvent.prototype["GetOrderByExpression"]=ForEachEvent.prototype.GetOrderByExpression=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_ForEachEvent_GetOrderByExpression_0(self),Expression)};ForEachEvent.prototype["GetOrder"]=ForEachEvent.prototype.GetOrder=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_ForEachEvent_GetOrder_0(self))};ForEachEvent.prototype["SetOrder"]=ForEachEvent.prototype.SetOrder=function(order){var self=this.ptr;ensureCache.prepare();if(order&&typeof order==="object")order=order.ptr;else order=ensureString(order);_emscripten_bind_ForEachEvent_SetOrder_1(self,order)};ForEachEvent.prototype["GetLimit"]=ForEachEvent.prototype.GetLimit=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_ForEachEvent_GetLimit_0(self))};ForEachEvent.prototype["SetLimit"]=ForEachEvent.prototype.SetLimit=function(limit){var self=this.ptr;ensureCache.prepare();if(limit&&typeof limit==="object")limit=limit.ptr;else limit=ensureString(limit);_emscripten_bind_ForEachEvent_SetLimit_1(self,limit)};ForEachEvent.prototype["GetLimitExpression"]=ForEachEvent.prototype.GetLimitExpression=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_ForEachEvent_GetLimitExpression_0(self),Expression)};ForEachEvent.prototype["Clone"]=ForEachEvent.prototype.Clone=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_ForEachEvent_Clone_0(self),BaseEvent)};ForEachEvent.prototype["GetType"]=ForEachEvent.prototype.GetType=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_ForEachEvent_GetType_0(self))};ForEachEvent.prototype["SetType"]=ForEachEvent.prototype.SetType=function(type){var self=this.ptr;ensureCache.prepare();if(type&&typeof type==="object")type=type.ptr;else type=ensureString(type);_emscripten_bind_ForEachEvent_SetType_1(self,type)};ForEachEvent.prototype["IsExecutable"]=ForEachEvent.prototype.IsExecutable=function(){var self=this.ptr;return!!_emscripten_bind_ForEachEvent_IsExecutable_0(self)};ForEachEvent.prototype["CanHaveSubEvents"]=ForEachEvent.prototype.CanHaveSubEvents=function(){var self=this.ptr;return!!_emscripten_bind_ForEachEvent_CanHaveSubEvents_0(self)};ForEachEvent.prototype["HasSubEvents"]=ForEachEvent.prototype.HasSubEvents=function(){var self=this.ptr;return!!_emscripten_bind_ForEachEvent_HasSubEvents_0(self)};ForEachEvent.prototype["GetSubEvents"]=ForEachEvent.prototype.GetSubEvents=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_ForEachEvent_GetSubEvents_0(self),EventsList)};ForEachEvent.prototype["CanHaveVariables"]=ForEachEvent.prototype.CanHaveVariables=function(){var self=this.ptr;return!!_emscripten_bind_ForEachEvent_CanHaveVariables_0(self)};ForEachEvent.prototype["HasVariables"]=ForEachEvent.prototype.HasVariables=function(){var self=this.ptr;return!!_emscripten_bind_ForEachEvent_HasVariables_0(self)};ForEachEvent.prototype["GetVariables"]=ForEachEvent.prototype.GetVariables=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_ForEachEvent_GetVariables_0(self),VariablesContainer)};ForEachEvent.prototype["IsDisabled"]=ForEachEvent.prototype.IsDisabled=function(){var self=this.ptr;return!!_emscripten_bind_ForEachEvent_IsDisabled_0(self)};ForEachEvent.prototype["SetDisabled"]=ForEachEvent.prototype.SetDisabled=function(disable){var self=this.ptr;if(disable&&typeof disable==="object")disable=disable.ptr;_emscripten_bind_ForEachEvent_SetDisabled_1(self,disable)};ForEachEvent.prototype["IsFolded"]=ForEachEvent.prototype.IsFolded=function(){var self=this.ptr;return!!_emscripten_bind_ForEachEvent_IsFolded_0(self)};ForEachEvent.prototype["SetFolded"]=ForEachEvent.prototype.SetFolded=function(folded){var self=this.ptr;if(folded&&typeof folded==="object")folded=folded.ptr;_emscripten_bind_ForEachEvent_SetFolded_1(self,folded)};ForEachEvent.prototype["SerializeTo"]=ForEachEvent.prototype.SerializeTo=function(element){var self=this.ptr;if(element&&typeof element==="object")element=element.ptr;_emscripten_bind_ForEachEvent_SerializeTo_1(self,element)};ForEachEvent.prototype["UnserializeFrom"]=ForEachEvent.prototype.UnserializeFrom=function(project,element){var self=this.ptr;if(project&&typeof project==="object")project=project.ptr;if(element&&typeof element==="object")element=element.ptr;_emscripten_bind_ForEachEvent_UnserializeFrom_2(self,project,element)};ForEachEvent.prototype["GetAiGeneratedEventId"]=ForEachEvent.prototype.GetAiGeneratedEventId=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_ForEachEvent_GetAiGeneratedEventId_0(self))};ForEachEvent.prototype["SetAiGeneratedEventId"]=ForEachEvent.prototype.SetAiGeneratedEventId=function(aiGeneratedEventId){var self=this.ptr;ensureCache.prepare();if(aiGeneratedEventId&&typeof aiGeneratedEventId==="object")aiGeneratedEventId=aiGeneratedEventId.ptr;else aiGeneratedEventId=ensureString(aiGeneratedEventId);_emscripten_bind_ForEachEvent_SetAiGeneratedEventId_1(self,aiGeneratedEventId)};ForEachEvent.prototype["__destroy__"]=ForEachEvent.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_ForEachEvent___destroy___0(self)};function ForEachChildVariableEvent(){this.ptr=_emscripten_bind_ForEachChildVariableEvent_ForEachChildVariableEvent_0();getCache(ForEachChildVariableEvent)[this.ptr]=this}ForEachChildVariableEvent.prototype=Object.create(BaseEvent.prototype);ForEachChildVariableEvent.prototype.constructor=ForEachChildVariableEvent;ForEachChildVariableEvent.prototype.__class__=ForEachChildVariableEvent;ForEachChildVariableEvent.__cache__={};Module["ForEachChildVariableEvent"]=ForEachChildVariableEvent;ForEachChildVariableEvent.prototype["GetConditions"]=ForEachChildVariableEvent.prototype.GetConditions=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_ForEachChildVariableEvent_GetConditions_0(self),InstructionsList)};ForEachChildVariableEvent.prototype["GetActions"]=ForEachChildVariableEvent.prototype.GetActions=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_ForEachChildVariableEvent_GetActions_0(self),InstructionsList)};ForEachChildVariableEvent.prototype["GetIterableVariableName"]=ForEachChildVariableEvent.prototype.GetIterableVariableName=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_ForEachChildVariableEvent_GetIterableVariableName_0(self))};ForEachChildVariableEvent.prototype["GetKeyIteratorVariableName"]=ForEachChildVariableEvent.prototype.GetKeyIteratorVariableName=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_ForEachChildVariableEvent_GetKeyIteratorVariableName_0(self))};ForEachChildVariableEvent.prototype["GetValueIteratorVariableName"]=ForEachChildVariableEvent.prototype.GetValueIteratorVariableName=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_ForEachChildVariableEvent_GetValueIteratorVariableName_0(self))};ForEachChildVariableEvent.prototype["SetIterableVariableName"]=ForEachChildVariableEvent.prototype.SetIterableVariableName=function(newName){var self=this.ptr;ensureCache.prepare();if(newName&&typeof newName==="object")newName=newName.ptr;else newName=ensureString(newName);_emscripten_bind_ForEachChildVariableEvent_SetIterableVariableName_1(self,newName)};ForEachChildVariableEvent.prototype["SetKeyIteratorVariableName"]=ForEachChildVariableEvent.prototype.SetKeyIteratorVariableName=function(newName){var self=this.ptr;ensureCache.prepare();if(newName&&typeof newName==="object")newName=newName.ptr;else newName=ensureString(newName);_emscripten_bind_ForEachChildVariableEvent_SetKeyIteratorVariableName_1(self,newName)};ForEachChildVariableEvent.prototype["SetValueIteratorVariableName"]=ForEachChildVariableEvent.prototype.SetValueIteratorVariableName=function(newName){var self=this.ptr;ensureCache.prepare();if(newName&&typeof newName==="object")newName=newName.ptr;else newName=ensureString(newName);_emscripten_bind_ForEachChildVariableEvent_SetValueIteratorVariableName_1(self,newName)};ForEachChildVariableEvent.prototype["GetLoopIndexVariableName"]=ForEachChildVariableEvent.prototype.GetLoopIndexVariableName=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_ForEachChildVariableEvent_GetLoopIndexVariableName_0(self))};ForEachChildVariableEvent.prototype["SetLoopIndexVariableName"]=ForEachChildVariableEvent.prototype.SetLoopIndexVariableName=function(name){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);_emscripten_bind_ForEachChildVariableEvent_SetLoopIndexVariableName_1(self,name)};ForEachChildVariableEvent.prototype["Clone"]=ForEachChildVariableEvent.prototype.Clone=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_ForEachChildVariableEvent_Clone_0(self),BaseEvent)};ForEachChildVariableEvent.prototype["GetType"]=ForEachChildVariableEvent.prototype.GetType=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_ForEachChildVariableEvent_GetType_0(self))};ForEachChildVariableEvent.prototype["SetType"]=ForEachChildVariableEvent.prototype.SetType=function(type){var self=this.ptr;ensureCache.prepare();if(type&&typeof type==="object")type=type.ptr;else type=ensureString(type);_emscripten_bind_ForEachChildVariableEvent_SetType_1(self,type)};ForEachChildVariableEvent.prototype["IsExecutable"]=ForEachChildVariableEvent.prototype.IsExecutable=function(){var self=this.ptr;return!!_emscripten_bind_ForEachChildVariableEvent_IsExecutable_0(self)};ForEachChildVariableEvent.prototype["CanHaveSubEvents"]=ForEachChildVariableEvent.prototype.CanHaveSubEvents=function(){var self=this.ptr;return!!_emscripten_bind_ForEachChildVariableEvent_CanHaveSubEvents_0(self)};ForEachChildVariableEvent.prototype["HasSubEvents"]=ForEachChildVariableEvent.prototype.HasSubEvents=function(){var self=this.ptr;return!!_emscripten_bind_ForEachChildVariableEvent_HasSubEvents_0(self)};ForEachChildVariableEvent.prototype["GetSubEvents"]=ForEachChildVariableEvent.prototype.GetSubEvents=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_ForEachChildVariableEvent_GetSubEvents_0(self),EventsList)};ForEachChildVariableEvent.prototype["CanHaveVariables"]=ForEachChildVariableEvent.prototype.CanHaveVariables=function(){var self=this.ptr;return!!_emscripten_bind_ForEachChildVariableEvent_CanHaveVariables_0(self)};ForEachChildVariableEvent.prototype["HasVariables"]=ForEachChildVariableEvent.prototype.HasVariables=function(){var self=this.ptr;return!!_emscripten_bind_ForEachChildVariableEvent_HasVariables_0(self)};ForEachChildVariableEvent.prototype["GetVariables"]=ForEachChildVariableEvent.prototype.GetVariables=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_ForEachChildVariableEvent_GetVariables_0(self),VariablesContainer)};ForEachChildVariableEvent.prototype["IsDisabled"]=ForEachChildVariableEvent.prototype.IsDisabled=function(){var self=this.ptr;return!!_emscripten_bind_ForEachChildVariableEvent_IsDisabled_0(self)};ForEachChildVariableEvent.prototype["SetDisabled"]=ForEachChildVariableEvent.prototype.SetDisabled=function(disable){var self=this.ptr;if(disable&&typeof disable==="object")disable=disable.ptr;_emscripten_bind_ForEachChildVariableEvent_SetDisabled_1(self,disable)};ForEachChildVariableEvent.prototype["IsFolded"]=ForEachChildVariableEvent.prototype.IsFolded=function(){var self=this.ptr;return!!_emscripten_bind_ForEachChildVariableEvent_IsFolded_0(self)};ForEachChildVariableEvent.prototype["SetFolded"]=ForEachChildVariableEvent.prototype.SetFolded=function(folded){var self=this.ptr;if(folded&&typeof folded==="object")folded=folded.ptr;_emscripten_bind_ForEachChildVariableEvent_SetFolded_1(self,folded)};ForEachChildVariableEvent.prototype["SerializeTo"]=ForEachChildVariableEvent.prototype.SerializeTo=function(element){var self=this.ptr;if(element&&typeof element==="object")element=element.ptr;_emscripten_bind_ForEachChildVariableEvent_SerializeTo_1(self,element)};ForEachChildVariableEvent.prototype["UnserializeFrom"]=ForEachChildVariableEvent.prototype.UnserializeFrom=function(project,element){var self=this.ptr;if(project&&typeof project==="object")project=project.ptr;if(element&&typeof element==="object")element=element.ptr;_emscripten_bind_ForEachChildVariableEvent_UnserializeFrom_2(self,project,element)};ForEachChildVariableEvent.prototype["GetAiGeneratedEventId"]=ForEachChildVariableEvent.prototype.GetAiGeneratedEventId=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_ForEachChildVariableEvent_GetAiGeneratedEventId_0(self))};ForEachChildVariableEvent.prototype["SetAiGeneratedEventId"]=ForEachChildVariableEvent.prototype.SetAiGeneratedEventId=function(aiGeneratedEventId){var self=this.ptr;ensureCache.prepare();if(aiGeneratedEventId&&typeof aiGeneratedEventId==="object")aiGeneratedEventId=aiGeneratedEventId.ptr;else aiGeneratedEventId=ensureString(aiGeneratedEventId);_emscripten_bind_ForEachChildVariableEvent_SetAiGeneratedEventId_1(self,aiGeneratedEventId)};ForEachChildVariableEvent.prototype["__destroy__"]=ForEachChildVariableEvent.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_ForEachChildVariableEvent___destroy___0(self)};function CommentEvent(){this.ptr=_emscripten_bind_CommentEvent_CommentEvent_0();getCache(CommentEvent)[this.ptr]=this}CommentEvent.prototype=Object.create(BaseEvent.prototype);CommentEvent.prototype.constructor=CommentEvent;CommentEvent.prototype.__class__=CommentEvent;CommentEvent.__cache__={};Module["CommentEvent"]=CommentEvent;CommentEvent.prototype["GetComment"]=CommentEvent.prototype.GetComment=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_CommentEvent_GetComment_0(self))};CommentEvent.prototype["SetComment"]=CommentEvent.prototype.SetComment=function(type){var self=this.ptr;ensureCache.prepare();if(type&&typeof type==="object")type=type.ptr;else type=ensureString(type);_emscripten_bind_CommentEvent_SetComment_1(self,type)};CommentEvent.prototype["SetBackgroundColor"]=CommentEvent.prototype.SetBackgroundColor=function(r,g,b){var self=this.ptr;if(r&&typeof r==="object")r=r.ptr;if(g&&typeof g==="object")g=g.ptr;if(b&&typeof b==="object")b=b.ptr;_emscripten_bind_CommentEvent_SetBackgroundColor_3(self,r,g,b)};CommentEvent.prototype["GetBackgroundColorRed"]=CommentEvent.prototype.GetBackgroundColorRed=function(){var self=this.ptr;return _emscripten_bind_CommentEvent_GetBackgroundColorRed_0(self)};CommentEvent.prototype["GetBackgroundColorGreen"]=CommentEvent.prototype.GetBackgroundColorGreen=function(){var self=this.ptr;return _emscripten_bind_CommentEvent_GetBackgroundColorGreen_0(self)};CommentEvent.prototype["GetBackgroundColorBlue"]=CommentEvent.prototype.GetBackgroundColorBlue=function(){var self=this.ptr;return _emscripten_bind_CommentEvent_GetBackgroundColorBlue_0(self)};CommentEvent.prototype["SetTextColor"]=CommentEvent.prototype.SetTextColor=function(r,g,b){var self=this.ptr;if(r&&typeof r==="object")r=r.ptr;if(g&&typeof g==="object")g=g.ptr;if(b&&typeof b==="object")b=b.ptr;_emscripten_bind_CommentEvent_SetTextColor_3(self,r,g,b)};CommentEvent.prototype["GetTextColorRed"]=CommentEvent.prototype.GetTextColorRed=function(){var self=this.ptr;return _emscripten_bind_CommentEvent_GetTextColorRed_0(self)};CommentEvent.prototype["GetTextColorGreen"]=CommentEvent.prototype.GetTextColorGreen=function(){var self=this.ptr;return _emscripten_bind_CommentEvent_GetTextColorGreen_0(self)};CommentEvent.prototype["GetTextColorBlue"]=CommentEvent.prototype.GetTextColorBlue=function(){var self=this.ptr;return _emscripten_bind_CommentEvent_GetTextColorBlue_0(self)};CommentEvent.prototype["Clone"]=CommentEvent.prototype.Clone=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_CommentEvent_Clone_0(self),BaseEvent)};CommentEvent.prototype["GetType"]=CommentEvent.prototype.GetType=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_CommentEvent_GetType_0(self))};CommentEvent.prototype["SetType"]=CommentEvent.prototype.SetType=function(type){var self=this.ptr;ensureCache.prepare();if(type&&typeof type==="object")type=type.ptr;else type=ensureString(type);_emscripten_bind_CommentEvent_SetType_1(self,type)};CommentEvent.prototype["IsExecutable"]=CommentEvent.prototype.IsExecutable=function(){var self=this.ptr;return!!_emscripten_bind_CommentEvent_IsExecutable_0(self)};CommentEvent.prototype["CanHaveSubEvents"]=CommentEvent.prototype.CanHaveSubEvents=function(){var self=this.ptr;return!!_emscripten_bind_CommentEvent_CanHaveSubEvents_0(self)};CommentEvent.prototype["HasSubEvents"]=CommentEvent.prototype.HasSubEvents=function(){var self=this.ptr;return!!_emscripten_bind_CommentEvent_HasSubEvents_0(self)};CommentEvent.prototype["GetSubEvents"]=CommentEvent.prototype.GetSubEvents=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_CommentEvent_GetSubEvents_0(self),EventsList)};CommentEvent.prototype["CanHaveVariables"]=CommentEvent.prototype.CanHaveVariables=function(){var self=this.ptr;return!!_emscripten_bind_CommentEvent_CanHaveVariables_0(self)};CommentEvent.prototype["HasVariables"]=CommentEvent.prototype.HasVariables=function(){var self=this.ptr;return!!_emscripten_bind_CommentEvent_HasVariables_0(self)};CommentEvent.prototype["GetVariables"]=CommentEvent.prototype.GetVariables=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_CommentEvent_GetVariables_0(self),VariablesContainer)};CommentEvent.prototype["IsDisabled"]=CommentEvent.prototype.IsDisabled=function(){var self=this.ptr;return!!_emscripten_bind_CommentEvent_IsDisabled_0(self)};CommentEvent.prototype["SetDisabled"]=CommentEvent.prototype.SetDisabled=function(disable){var self=this.ptr;if(disable&&typeof disable==="object")disable=disable.ptr;_emscripten_bind_CommentEvent_SetDisabled_1(self,disable)};CommentEvent.prototype["IsFolded"]=CommentEvent.prototype.IsFolded=function(){var self=this.ptr;return!!_emscripten_bind_CommentEvent_IsFolded_0(self)};CommentEvent.prototype["SetFolded"]=CommentEvent.prototype.SetFolded=function(folded){var self=this.ptr;if(folded&&typeof folded==="object")folded=folded.ptr;_emscripten_bind_CommentEvent_SetFolded_1(self,folded)};CommentEvent.prototype["SerializeTo"]=CommentEvent.prototype.SerializeTo=function(element){var self=this.ptr;if(element&&typeof element==="object")element=element.ptr;_emscripten_bind_CommentEvent_SerializeTo_1(self,element)};CommentEvent.prototype["UnserializeFrom"]=CommentEvent.prototype.UnserializeFrom=function(project,element){var self=this.ptr;if(project&&typeof project==="object")project=project.ptr;if(element&&typeof element==="object")element=element.ptr;_emscripten_bind_CommentEvent_UnserializeFrom_2(self,project,element)};CommentEvent.prototype["GetAiGeneratedEventId"]=CommentEvent.prototype.GetAiGeneratedEventId=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_CommentEvent_GetAiGeneratedEventId_0(self))};CommentEvent.prototype["SetAiGeneratedEventId"]=CommentEvent.prototype.SetAiGeneratedEventId=function(aiGeneratedEventId){var self=this.ptr;ensureCache.prepare();if(aiGeneratedEventId&&typeof aiGeneratedEventId==="object")aiGeneratedEventId=aiGeneratedEventId.ptr;else aiGeneratedEventId=ensureString(aiGeneratedEventId);_emscripten_bind_CommentEvent_SetAiGeneratedEventId_1(self,aiGeneratedEventId)};CommentEvent.prototype["__destroy__"]=CommentEvent.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_CommentEvent___destroy___0(self)};function GroupEvent(){this.ptr=_emscripten_bind_GroupEvent_GroupEvent_0();getCache(GroupEvent)[this.ptr]=this}GroupEvent.prototype=Object.create(BaseEvent.prototype);GroupEvent.prototype.constructor=GroupEvent;GroupEvent.prototype.__class__=GroupEvent;GroupEvent.__cache__={};Module["GroupEvent"]=GroupEvent;GroupEvent.prototype["SetName"]=GroupEvent.prototype.SetName=function(name){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);_emscripten_bind_GroupEvent_SetName_1(self,name)};GroupEvent.prototype["GetName"]=GroupEvent.prototype.GetName=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_GroupEvent_GetName_0(self))};GroupEvent.prototype["SetBackgroundColor"]=GroupEvent.prototype.SetBackgroundColor=function(r,g,b){var self=this.ptr;if(r&&typeof r==="object")r=r.ptr;if(g&&typeof g==="object")g=g.ptr;if(b&&typeof b==="object")b=b.ptr;_emscripten_bind_GroupEvent_SetBackgroundColor_3(self,r,g,b)};GroupEvent.prototype["GetBackgroundColorR"]=GroupEvent.prototype.GetBackgroundColorR=function(){var self=this.ptr;return _emscripten_bind_GroupEvent_GetBackgroundColorR_0(self)};GroupEvent.prototype["GetBackgroundColorG"]=GroupEvent.prototype.GetBackgroundColorG=function(){var self=this.ptr;return _emscripten_bind_GroupEvent_GetBackgroundColorG_0(self)};GroupEvent.prototype["GetBackgroundColorB"]=GroupEvent.prototype.GetBackgroundColorB=function(){var self=this.ptr;return _emscripten_bind_GroupEvent_GetBackgroundColorB_0(self)};GroupEvent.prototype["SetSource"]=GroupEvent.prototype.SetSource=function(source){var self=this.ptr;ensureCache.prepare();if(source&&typeof source==="object")source=source.ptr;else source=ensureString(source);_emscripten_bind_GroupEvent_SetSource_1(self,source)};GroupEvent.prototype["GetSource"]=GroupEvent.prototype.GetSource=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_GroupEvent_GetSource_0(self))};GroupEvent.prototype["GetCreationParameters"]=GroupEvent.prototype.GetCreationParameters=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_GroupEvent_GetCreationParameters_0(self),VectorString)};GroupEvent.prototype["GetCreationTimestamp"]=GroupEvent.prototype.GetCreationTimestamp=function(){var self=this.ptr;return _emscripten_bind_GroupEvent_GetCreationTimestamp_0(self)};GroupEvent.prototype["SetCreationTimestamp"]=GroupEvent.prototype.SetCreationTimestamp=function(ts){var self=this.ptr;if(ts&&typeof ts==="object")ts=ts.ptr;_emscripten_bind_GroupEvent_SetCreationTimestamp_1(self,ts)};GroupEvent.prototype["Clone"]=GroupEvent.prototype.Clone=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_GroupEvent_Clone_0(self),BaseEvent)};GroupEvent.prototype["GetType"]=GroupEvent.prototype.GetType=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_GroupEvent_GetType_0(self))};GroupEvent.prototype["SetType"]=GroupEvent.prototype.SetType=function(type){var self=this.ptr;ensureCache.prepare();if(type&&typeof type==="object")type=type.ptr;else type=ensureString(type);_emscripten_bind_GroupEvent_SetType_1(self,type)};GroupEvent.prototype["IsExecutable"]=GroupEvent.prototype.IsExecutable=function(){var self=this.ptr;return!!_emscripten_bind_GroupEvent_IsExecutable_0(self)};GroupEvent.prototype["CanHaveSubEvents"]=GroupEvent.prototype.CanHaveSubEvents=function(){var self=this.ptr;return!!_emscripten_bind_GroupEvent_CanHaveSubEvents_0(self)};GroupEvent.prototype["HasSubEvents"]=GroupEvent.prototype.HasSubEvents=function(){var self=this.ptr;return!!_emscripten_bind_GroupEvent_HasSubEvents_0(self)};GroupEvent.prototype["GetSubEvents"]=GroupEvent.prototype.GetSubEvents=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_GroupEvent_GetSubEvents_0(self),EventsList)};GroupEvent.prototype["CanHaveVariables"]=GroupEvent.prototype.CanHaveVariables=function(){var self=this.ptr;return!!_emscripten_bind_GroupEvent_CanHaveVariables_0(self)};GroupEvent.prototype["HasVariables"]=GroupEvent.prototype.HasVariables=function(){var self=this.ptr;return!!_emscripten_bind_GroupEvent_HasVariables_0(self)};GroupEvent.prototype["GetVariables"]=GroupEvent.prototype.GetVariables=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_GroupEvent_GetVariables_0(self),VariablesContainer)};GroupEvent.prototype["IsDisabled"]=GroupEvent.prototype.IsDisabled=function(){var self=this.ptr;return!!_emscripten_bind_GroupEvent_IsDisabled_0(self)};GroupEvent.prototype["SetDisabled"]=GroupEvent.prototype.SetDisabled=function(disable){var self=this.ptr;if(disable&&typeof disable==="object")disable=disable.ptr;_emscripten_bind_GroupEvent_SetDisabled_1(self,disable)};GroupEvent.prototype["IsFolded"]=GroupEvent.prototype.IsFolded=function(){var self=this.ptr;return!!_emscripten_bind_GroupEvent_IsFolded_0(self)};GroupEvent.prototype["SetFolded"]=GroupEvent.prototype.SetFolded=function(folded){var self=this.ptr;if(folded&&typeof folded==="object")folded=folded.ptr;_emscripten_bind_GroupEvent_SetFolded_1(self,folded)};GroupEvent.prototype["SerializeTo"]=GroupEvent.prototype.SerializeTo=function(element){var self=this.ptr;if(element&&typeof element==="object")element=element.ptr;_emscripten_bind_GroupEvent_SerializeTo_1(self,element)};GroupEvent.prototype["UnserializeFrom"]=GroupEvent.prototype.UnserializeFrom=function(project,element){var self=this.ptr;if(project&&typeof project==="object")project=project.ptr;if(element&&typeof element==="object")element=element.ptr;_emscripten_bind_GroupEvent_UnserializeFrom_2(self,project,element)};GroupEvent.prototype["GetAiGeneratedEventId"]=GroupEvent.prototype.GetAiGeneratedEventId=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_GroupEvent_GetAiGeneratedEventId_0(self))};GroupEvent.prototype["SetAiGeneratedEventId"]=GroupEvent.prototype.SetAiGeneratedEventId=function(aiGeneratedEventId){var self=this.ptr;ensureCache.prepare();if(aiGeneratedEventId&&typeof aiGeneratedEventId==="object")aiGeneratedEventId=aiGeneratedEventId.ptr;else aiGeneratedEventId=ensureString(aiGeneratedEventId);_emscripten_bind_GroupEvent_SetAiGeneratedEventId_1(self,aiGeneratedEventId)};GroupEvent.prototype["__destroy__"]=GroupEvent.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_GroupEvent___destroy___0(self)};function LinkEvent(){this.ptr=_emscripten_bind_LinkEvent_LinkEvent_0();getCache(LinkEvent)[this.ptr]=this}LinkEvent.prototype=Object.create(BaseEvent.prototype);LinkEvent.prototype.constructor=LinkEvent;LinkEvent.prototype.__class__=LinkEvent;LinkEvent.__cache__={};Module["LinkEvent"]=LinkEvent;LinkEvent.prototype["SetTarget"]=LinkEvent.prototype.SetTarget=function(name){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);_emscripten_bind_LinkEvent_SetTarget_1(self,name)};LinkEvent.prototype["GetTarget"]=LinkEvent.prototype.GetTarget=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_LinkEvent_GetTarget_0(self))};LinkEvent.prototype["GetIncludeConfig"]=LinkEvent.prototype.GetIncludeConfig=function(){var self=this.ptr;return _emscripten_bind_LinkEvent_GetIncludeConfig_0(self)};LinkEvent.prototype["SetIncludeAllEvents"]=LinkEvent.prototype.SetIncludeAllEvents=function(){var self=this.ptr;_emscripten_bind_LinkEvent_SetIncludeAllEvents_0(self)};LinkEvent.prototype["SetIncludeEventsGroup"]=LinkEvent.prototype.SetIncludeEventsGroup=function(source){var self=this.ptr;ensureCache.prepare();if(source&&typeof source==="object")source=source.ptr;else source=ensureString(source);_emscripten_bind_LinkEvent_SetIncludeEventsGroup_1(self,source)};LinkEvent.prototype["GetEventsGroupName"]=LinkEvent.prototype.GetEventsGroupName=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_LinkEvent_GetEventsGroupName_0(self))};LinkEvent.prototype["SetIncludeStartAndEnd"]=LinkEvent.prototype.SetIncludeStartAndEnd=function(start,end){var self=this.ptr;if(start&&typeof start==="object")start=start.ptr;if(end&&typeof end==="object")end=end.ptr;_emscripten_bind_LinkEvent_SetIncludeStartAndEnd_2(self,start,end)};LinkEvent.prototype["GetIncludeStart"]=LinkEvent.prototype.GetIncludeStart=function(){var self=this.ptr;return _emscripten_bind_LinkEvent_GetIncludeStart_0(self)};LinkEvent.prototype["GetIncludeEnd"]=LinkEvent.prototype.GetIncludeEnd=function(){var self=this.ptr;return _emscripten_bind_LinkEvent_GetIncludeEnd_0(self)};LinkEvent.prototype["Clone"]=LinkEvent.prototype.Clone=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_LinkEvent_Clone_0(self),BaseEvent)};LinkEvent.prototype["GetType"]=LinkEvent.prototype.GetType=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_LinkEvent_GetType_0(self))};LinkEvent.prototype["SetType"]=LinkEvent.prototype.SetType=function(type){var self=this.ptr;ensureCache.prepare();if(type&&typeof type==="object")type=type.ptr;else type=ensureString(type);_emscripten_bind_LinkEvent_SetType_1(self,type)};LinkEvent.prototype["IsExecutable"]=LinkEvent.prototype.IsExecutable=function(){var self=this.ptr;return!!_emscripten_bind_LinkEvent_IsExecutable_0(self)};LinkEvent.prototype["CanHaveSubEvents"]=LinkEvent.prototype.CanHaveSubEvents=function(){var self=this.ptr;return!!_emscripten_bind_LinkEvent_CanHaveSubEvents_0(self)};LinkEvent.prototype["HasSubEvents"]=LinkEvent.prototype.HasSubEvents=function(){var self=this.ptr;return!!_emscripten_bind_LinkEvent_HasSubEvents_0(self)};LinkEvent.prototype["GetSubEvents"]=LinkEvent.prototype.GetSubEvents=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_LinkEvent_GetSubEvents_0(self),EventsList)};LinkEvent.prototype["CanHaveVariables"]=LinkEvent.prototype.CanHaveVariables=function(){var self=this.ptr;return!!_emscripten_bind_LinkEvent_CanHaveVariables_0(self)};LinkEvent.prototype["HasVariables"]=LinkEvent.prototype.HasVariables=function(){var self=this.ptr;return!!_emscripten_bind_LinkEvent_HasVariables_0(self)};LinkEvent.prototype["GetVariables"]=LinkEvent.prototype.GetVariables=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_LinkEvent_GetVariables_0(self),VariablesContainer)};LinkEvent.prototype["IsDisabled"]=LinkEvent.prototype.IsDisabled=function(){var self=this.ptr;return!!_emscripten_bind_LinkEvent_IsDisabled_0(self)};LinkEvent.prototype["SetDisabled"]=LinkEvent.prototype.SetDisabled=function(disable){var self=this.ptr;if(disable&&typeof disable==="object")disable=disable.ptr;_emscripten_bind_LinkEvent_SetDisabled_1(self,disable)};LinkEvent.prototype["IsFolded"]=LinkEvent.prototype.IsFolded=function(){var self=this.ptr;return!!_emscripten_bind_LinkEvent_IsFolded_0(self)};LinkEvent.prototype["SetFolded"]=LinkEvent.prototype.SetFolded=function(folded){var self=this.ptr;if(folded&&typeof folded==="object")folded=folded.ptr;_emscripten_bind_LinkEvent_SetFolded_1(self,folded)};LinkEvent.prototype["SerializeTo"]=LinkEvent.prototype.SerializeTo=function(element){var self=this.ptr;if(element&&typeof element==="object")element=element.ptr;_emscripten_bind_LinkEvent_SerializeTo_1(self,element)};LinkEvent.prototype["UnserializeFrom"]=LinkEvent.prototype.UnserializeFrom=function(project,element){var self=this.ptr;if(project&&typeof project==="object")project=project.ptr;if(element&&typeof element==="object")element=element.ptr;_emscripten_bind_LinkEvent_UnserializeFrom_2(self,project,element)};LinkEvent.prototype["GetAiGeneratedEventId"]=LinkEvent.prototype.GetAiGeneratedEventId=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_LinkEvent_GetAiGeneratedEventId_0(self))};LinkEvent.prototype["SetAiGeneratedEventId"]=LinkEvent.prototype.SetAiGeneratedEventId=function(aiGeneratedEventId){var self=this.ptr;ensureCache.prepare();if(aiGeneratedEventId&&typeof aiGeneratedEventId==="object")aiGeneratedEventId=aiGeneratedEventId.ptr;else aiGeneratedEventId=ensureString(aiGeneratedEventId);_emscripten_bind_LinkEvent_SetAiGeneratedEventId_1(self,aiGeneratedEventId)};LinkEvent.prototype["__destroy__"]=LinkEvent.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_LinkEvent___destroy___0(self)};function EventsRemover(){this.ptr=_emscripten_bind_EventsRemover_EventsRemover_0();getCache(EventsRemover)[this.ptr]=this}EventsRemover.prototype=Object.create(WrapperObject.prototype);EventsRemover.prototype.constructor=EventsRemover;EventsRemover.prototype.__class__=EventsRemover;EventsRemover.__cache__={};Module["EventsRemover"]=EventsRemover;EventsRemover.prototype["AddEventToRemove"]=EventsRemover.prototype.AddEventToRemove=function(eventToRemove){var self=this.ptr;if(eventToRemove&&typeof eventToRemove==="object")eventToRemove=eventToRemove.ptr;_emscripten_bind_EventsRemover_AddEventToRemove_1(self,eventToRemove)};EventsRemover.prototype["AddInstructionToRemove"]=EventsRemover.prototype.AddInstructionToRemove=function(instructionToRemove){var self=this.ptr;if(instructionToRemove&&typeof instructionToRemove==="object")instructionToRemove=instructionToRemove.ptr;_emscripten_bind_EventsRemover_AddInstructionToRemove_1(self,instructionToRemove)};EventsRemover.prototype["Launch"]=EventsRemover.prototype.Launch=function(events){var self=this.ptr;if(events&&typeof events==="object")events=events.ptr;_emscripten_bind_EventsRemover_Launch_1(self,events)};EventsRemover.prototype["__destroy__"]=EventsRemover.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_EventsRemover___destroy___0(self)};function EventsListUnfolder(){throw"cannot construct a EventsListUnfolder, no constructor in IDL"}EventsListUnfolder.prototype=Object.create(WrapperObject.prototype);EventsListUnfolder.prototype.constructor=EventsListUnfolder;EventsListUnfolder.prototype.__class__=EventsListUnfolder;EventsListUnfolder.__cache__={};Module["EventsListUnfolder"]=EventsListUnfolder;EventsListUnfolder.prototype["STATIC_UnfoldWhenContaining"]=EventsListUnfolder.prototype.STATIC_UnfoldWhenContaining=function(list,eventToContain){var self=this.ptr;if(list&&typeof list==="object")list=list.ptr;if(eventToContain&&typeof eventToContain==="object")eventToContain=eventToContain.ptr;_emscripten_bind_EventsListUnfolder_STATIC_UnfoldWhenContaining_2(self,list,eventToContain)};EventsListUnfolder.prototype["STATIC_FoldAll"]=EventsListUnfolder.prototype.STATIC_FoldAll=function(list){var self=this.ptr;if(list&&typeof list==="object")list=list.ptr;_emscripten_bind_EventsListUnfolder_STATIC_FoldAll_1(self,list)};EventsListUnfolder.prototype["STATIC_UnfoldToLevel"]=EventsListUnfolder.prototype.STATIC_UnfoldToLevel=function(list,maxLevel,currentLevel){var self=this.ptr;if(list&&typeof list==="object")list=list.ptr;if(maxLevel&&typeof maxLevel==="object")maxLevel=maxLevel.ptr;if(currentLevel&&typeof currentLevel==="object")currentLevel=currentLevel.ptr;if(currentLevel===undefined){_emscripten_bind_EventsListUnfolder_STATIC_UnfoldToLevel_2(self,list,maxLevel);return}_emscripten_bind_EventsListUnfolder_STATIC_UnfoldToLevel_3(self,list,maxLevel,currentLevel)};EventsListUnfolder.prototype["__destroy__"]=EventsListUnfolder.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_EventsListUnfolder___destroy___0(self)};function EventsSearchResult(){throw"cannot construct a EventsSearchResult, no constructor in IDL"}EventsSearchResult.prototype=Object.create(WrapperObject.prototype);EventsSearchResult.prototype.constructor=EventsSearchResult;EventsSearchResult.prototype.__class__=EventsSearchResult;EventsSearchResult.__cache__={};Module["EventsSearchResult"]=EventsSearchResult;EventsSearchResult.prototype["IsEventsListValid"]=EventsSearchResult.prototype.IsEventsListValid=function(){var self=this.ptr;return!!_emscripten_bind_EventsSearchResult_IsEventsListValid_0(self)};EventsSearchResult.prototype["GetEventsList"]=EventsSearchResult.prototype.GetEventsList=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_EventsSearchResult_GetEventsList_0(self),EventsList)};EventsSearchResult.prototype["GetPositionInList"]=EventsSearchResult.prototype.GetPositionInList=function(){var self=this.ptr;return _emscripten_bind_EventsSearchResult_GetPositionInList_0(self)};EventsSearchResult.prototype["IsEventValid"]=EventsSearchResult.prototype.IsEventValid=function(){var self=this.ptr;return!!_emscripten_bind_EventsSearchResult_IsEventValid_0(self)};EventsSearchResult.prototype["GetEvent"]=EventsSearchResult.prototype.GetEvent=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_EventsSearchResult_GetEvent_0(self),BaseEvent)};EventsSearchResult.prototype["__destroy__"]=EventsSearchResult.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_EventsSearchResult___destroy___0(self)};function VectorEventsSearchResult(){this.ptr=_emscripten_bind_VectorEventsSearchResult_VectorEventsSearchResult_0();getCache(VectorEventsSearchResult)[this.ptr]=this}VectorEventsSearchResult.prototype=Object.create(WrapperObject.prototype);VectorEventsSearchResult.prototype.constructor=VectorEventsSearchResult;VectorEventsSearchResult.prototype.__class__=VectorEventsSearchResult;VectorEventsSearchResult.__cache__={};Module["VectorEventsSearchResult"]=VectorEventsSearchResult;VectorEventsSearchResult.prototype["CLONE_VectorEventsSearchResult"]=VectorEventsSearchResult.prototype.CLONE_VectorEventsSearchResult=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_VectorEventsSearchResult_CLONE_VectorEventsSearchResult_0(self),VectorEventsSearchResult)};VectorEventsSearchResult.prototype["push_back"]=VectorEventsSearchResult.prototype.push_back=function(result){var self=this.ptr;if(result&&typeof result==="object")result=result.ptr;_emscripten_bind_VectorEventsSearchResult_push_back_1(self,result)};VectorEventsSearchResult.prototype["resize"]=VectorEventsSearchResult.prototype.resize=function(size){var self=this.ptr;if(size&&typeof size==="object")size=size.ptr;_emscripten_bind_VectorEventsSearchResult_resize_1(self,size)};VectorEventsSearchResult.prototype["size"]=VectorEventsSearchResult.prototype.size=function(){var self=this.ptr;return _emscripten_bind_VectorEventsSearchResult_size_0(self)};VectorEventsSearchResult.prototype["at"]=VectorEventsSearchResult.prototype.at=function(index){var self=this.ptr;if(index&&typeof index==="object")index=index.ptr;return wrapPointer(_emscripten_bind_VectorEventsSearchResult_at_1(self,index),EventsSearchResult)};VectorEventsSearchResult.prototype["WRAPPED_set"]=VectorEventsSearchResult.prototype.WRAPPED_set=function(index,result){var self=this.ptr;if(index&&typeof index==="object")index=index.ptr;if(result&&typeof result==="object")result=result.ptr;_emscripten_bind_VectorEventsSearchResult_WRAPPED_set_2(self,index,result)};VectorEventsSearchResult.prototype["clear"]=VectorEventsSearchResult.prototype.clear=function(){var self=this.ptr;_emscripten_bind_VectorEventsSearchResult_clear_0(self)};VectorEventsSearchResult.prototype["__destroy__"]=VectorEventsSearchResult.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_VectorEventsSearchResult___destroy___0(self)};function EventsRefactorer(){throw"cannot construct a EventsRefactorer, no constructor in IDL"}EventsRefactorer.prototype=Object.create(WrapperObject.prototype);EventsRefactorer.prototype.constructor=EventsRefactorer;EventsRefactorer.prototype.__class__=EventsRefactorer;EventsRefactorer.__cache__={};Module["EventsRefactorer"]=EventsRefactorer;EventsRefactorer.prototype["STATIC_RenameObjectInEvents"]=EventsRefactorer.prototype.STATIC_RenameObjectInEvents=function(platform,projectScopedContainers,events,targetedObjectsContainer,oldName,newName){var self=this.ptr;ensureCache.prepare();if(platform&&typeof platform==="object")platform=platform.ptr;if(projectScopedContainers&&typeof projectScopedContainers==="object")projectScopedContainers=projectScopedContainers.ptr;if(events&&typeof events==="object")events=events.ptr;if(targetedObjectsContainer&&typeof targetedObjectsContainer==="object")targetedObjectsContainer=targetedObjectsContainer.ptr;if(oldName&&typeof oldName==="object")oldName=oldName.ptr;else oldName=ensureString(oldName);if(newName&&typeof newName==="object")newName=newName.ptr;else newName=ensureString(newName);_emscripten_bind_EventsRefactorer_STATIC_RenameObjectInEvents_6(self,platform,projectScopedContainers,events,targetedObjectsContainer,oldName,newName)};EventsRefactorer.prototype["STATIC_ReplaceStringInEvents"]=EventsRefactorer.prototype.STATIC_ReplaceStringInEvents=function(project,layout,events,toReplace,newString,matchCase,inConditions,inActions,inEventStrings){var self=this.ptr;ensureCache.prepare();if(project&&typeof project==="object")project=project.ptr;if(layout&&typeof layout==="object")layout=layout.ptr;if(events&&typeof events==="object")events=events.ptr;if(toReplace&&typeof toReplace==="object")toReplace=toReplace.ptr;else toReplace=ensureString(toReplace);if(newString&&typeof newString==="object")newString=newString.ptr;else newString=ensureString(newString);if(matchCase&&typeof matchCase==="object")matchCase=matchCase.ptr;if(inConditions&&typeof inConditions==="object")inConditions=inConditions.ptr;if(inActions&&typeof inActions==="object")inActions=inActions.ptr;if(inEventStrings&&typeof inEventStrings==="object")inEventStrings=inEventStrings.ptr;return wrapPointer(_emscripten_bind_EventsRefactorer_STATIC_ReplaceStringInEvents_9(self,project,layout,events,toReplace,newString,matchCase,inConditions,inActions,inEventStrings),VectorEventsSearchResult)};EventsRefactorer.prototype["STATIC_SearchInEvents"]=EventsRefactorer.prototype.STATIC_SearchInEvents=function(platform,events,search,matchCase,inConditions,inActions,inEventStrings,inEventSentences,inInstructionNames){var self=this.ptr;ensureCache.prepare();if(platform&&typeof platform==="object")platform=platform.ptr;if(events&&typeof events==="object")events=events.ptr;if(search&&typeof search==="object")search=search.ptr;else search=ensureString(search);if(matchCase&&typeof matchCase==="object")matchCase=matchCase.ptr;if(inConditions&&typeof inConditions==="object")inConditions=inConditions.ptr;if(inActions&&typeof inActions==="object")inActions=inActions.ptr;if(inEventStrings&&typeof inEventStrings==="object")inEventStrings=inEventStrings.ptr;if(inEventSentences&&typeof inEventSentences==="object")inEventSentences=inEventSentences.ptr;if(inInstructionNames&&typeof inInstructionNames==="object")inInstructionNames=inInstructionNames.ptr;return wrapPointer(_emscripten_bind_EventsRefactorer_STATIC_SearchInEvents_9(self,platform,events,search,matchCase,inConditions,inActions,inEventStrings,inEventSentences,inInstructionNames),VectorEventsSearchResult)};EventsRefactorer.prototype["__destroy__"]=EventsRefactorer.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_EventsRefactorer___destroy___0(self)};function UnfilledRequiredBehaviorPropertyProblem(){throw"cannot construct a UnfilledRequiredBehaviorPropertyProblem, no constructor in IDL"}UnfilledRequiredBehaviorPropertyProblem.prototype=Object.create(WrapperObject.prototype);UnfilledRequiredBehaviorPropertyProblem.prototype.constructor=UnfilledRequiredBehaviorPropertyProblem;UnfilledRequiredBehaviorPropertyProblem.prototype.__class__=UnfilledRequiredBehaviorPropertyProblem;UnfilledRequiredBehaviorPropertyProblem.__cache__={};Module["UnfilledRequiredBehaviorPropertyProblem"]=UnfilledRequiredBehaviorPropertyProblem;UnfilledRequiredBehaviorPropertyProblem.prototype["GetSourceProject"]=UnfilledRequiredBehaviorPropertyProblem.prototype.GetSourceProject=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_UnfilledRequiredBehaviorPropertyProblem_GetSourceProject_0(self),Project)};UnfilledRequiredBehaviorPropertyProblem.prototype["GetSourceObject"]=UnfilledRequiredBehaviorPropertyProblem.prototype.GetSourceObject=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_UnfilledRequiredBehaviorPropertyProblem_GetSourceObject_0(self),gdObject)};UnfilledRequiredBehaviorPropertyProblem.prototype["GetSourceBehaviorContent"]=UnfilledRequiredBehaviorPropertyProblem.prototype.GetSourceBehaviorContent=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_UnfilledRequiredBehaviorPropertyProblem_GetSourceBehaviorContent_0(self),Behavior)};UnfilledRequiredBehaviorPropertyProblem.prototype["GetSourcePropertyName"]=UnfilledRequiredBehaviorPropertyProblem.prototype.GetSourcePropertyName=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_UnfilledRequiredBehaviorPropertyProblem_GetSourcePropertyName_0(self))};UnfilledRequiredBehaviorPropertyProblem.prototype["GetExpectedBehaviorTypeName"]=UnfilledRequiredBehaviorPropertyProblem.prototype.GetExpectedBehaviorTypeName=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_UnfilledRequiredBehaviorPropertyProblem_GetExpectedBehaviorTypeName_0(self))};UnfilledRequiredBehaviorPropertyProblem.prototype["__destroy__"]=UnfilledRequiredBehaviorPropertyProblem.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_UnfilledRequiredBehaviorPropertyProblem___destroy___0(self)};function VectorUnfilledRequiredBehaviorPropertyProblem(){throw"cannot construct a VectorUnfilledRequiredBehaviorPropertyProblem, no constructor in IDL"}VectorUnfilledRequiredBehaviorPropertyProblem.prototype=Object.create(WrapperObject.prototype);VectorUnfilledRequiredBehaviorPropertyProblem.prototype.constructor=VectorUnfilledRequiredBehaviorPropertyProblem;VectorUnfilledRequiredBehaviorPropertyProblem.prototype.__class__=VectorUnfilledRequiredBehaviorPropertyProblem;VectorUnfilledRequiredBehaviorPropertyProblem.__cache__={};Module["VectorUnfilledRequiredBehaviorPropertyProblem"]=VectorUnfilledRequiredBehaviorPropertyProblem;VectorUnfilledRequiredBehaviorPropertyProblem.prototype["size"]=VectorUnfilledRequiredBehaviorPropertyProblem.prototype.size=function(){var self=this.ptr;return _emscripten_bind_VectorUnfilledRequiredBehaviorPropertyProblem_size_0(self)};VectorUnfilledRequiredBehaviorPropertyProblem.prototype["at"]=VectorUnfilledRequiredBehaviorPropertyProblem.prototype.at=function(index){var self=this.ptr;if(index&&typeof index==="object")index=index.ptr;return wrapPointer(_emscripten_bind_VectorUnfilledRequiredBehaviorPropertyProblem_at_1(self,index),UnfilledRequiredBehaviorPropertyProblem)};VectorUnfilledRequiredBehaviorPropertyProblem.prototype["__destroy__"]=VectorUnfilledRequiredBehaviorPropertyProblem.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_VectorUnfilledRequiredBehaviorPropertyProblem___destroy___0(self)};function ProjectBrowserHelper(){throw"cannot construct a ProjectBrowserHelper, no constructor in IDL"}ProjectBrowserHelper.prototype=Object.create(WrapperObject.prototype);ProjectBrowserHelper.prototype.constructor=ProjectBrowserHelper;ProjectBrowserHelper.prototype.__class__=ProjectBrowserHelper;ProjectBrowserHelper.__cache__={};Module["ProjectBrowserHelper"]=ProjectBrowserHelper;ProjectBrowserHelper.prototype["STATIC_ExposeProjectEvents"]=ProjectBrowserHelper.prototype.STATIC_ExposeProjectEvents=function(project,worker){var self=this.ptr;if(project&&typeof project==="object")project=project.ptr;if(worker&&typeof worker==="object")worker=worker.ptr;_emscripten_bind_ProjectBrowserHelper_STATIC_ExposeProjectEvents_2(self,project,worker)};ProjectBrowserHelper.prototype["STATIC_ExposeProjectEventsWithoutExtensions"]=ProjectBrowserHelper.prototype.STATIC_ExposeProjectEventsWithoutExtensions=function(project,worker){var self=this.ptr;if(project&&typeof project==="object")project=project.ptr;if(worker&&typeof worker==="object")worker=worker.ptr;_emscripten_bind_ProjectBrowserHelper_STATIC_ExposeProjectEventsWithoutExtensions_2(self,project,worker)};ProjectBrowserHelper.prototype["STATIC_ExposeProjectObjects"]=ProjectBrowserHelper.prototype.STATIC_ExposeProjectObjects=function(project,worker){var self=this.ptr;if(project&&typeof project==="object")project=project.ptr;if(worker&&typeof worker==="object")worker=worker.ptr;_emscripten_bind_ProjectBrowserHelper_STATIC_ExposeProjectObjects_2(self,project,worker)};ProjectBrowserHelper.prototype["STATIC_ExposeEventsFunctionsExtensionEvents"]=ProjectBrowserHelper.prototype.STATIC_ExposeEventsFunctionsExtensionEvents=function(project,eventsFunctionsExtension,worker){var self=this.ptr;if(project&&typeof project==="object")project=project.ptr;if(eventsFunctionsExtension&&typeof eventsFunctionsExtension==="object")eventsFunctionsExtension=eventsFunctionsExtension.ptr;if(worker&&typeof worker==="object")worker=worker.ptr;_emscripten_bind_ProjectBrowserHelper_STATIC_ExposeEventsFunctionsExtensionEvents_3(self,project,eventsFunctionsExtension,worker)};ProjectBrowserHelper.prototype["__destroy__"]=ProjectBrowserHelper.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_ProjectBrowserHelper___destroy___0(self)};function ResourceExposer(){throw"cannot construct a ResourceExposer, no constructor in IDL"}ResourceExposer.prototype=Object.create(WrapperObject.prototype);ResourceExposer.prototype.constructor=ResourceExposer;ResourceExposer.prototype.__class__=ResourceExposer;ResourceExposer.__cache__={};Module["ResourceExposer"]=ResourceExposer;ResourceExposer.prototype["STATIC_ExposeWholeProjectResources"]=ResourceExposer.prototype.STATIC_ExposeWholeProjectResources=function(project,worker){var self=this.ptr;if(project&&typeof project==="object")project=project.ptr;if(worker&&typeof worker==="object")worker=worker.ptr;_emscripten_bind_ResourceExposer_STATIC_ExposeWholeProjectResources_2(self,project,worker)};ResourceExposer.prototype["__destroy__"]=ResourceExposer.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_ResourceExposer___destroy___0(self)};function VariablesChangeset(){throw"cannot construct a VariablesChangeset, no constructor in IDL"}VariablesChangeset.prototype=Object.create(WrapperObject.prototype);VariablesChangeset.prototype.constructor=VariablesChangeset;VariablesChangeset.prototype.__class__=VariablesChangeset;VariablesChangeset.__cache__={};Module["VariablesChangeset"]=VariablesChangeset;VariablesChangeset.prototype["HasRemovedVariables"]=VariablesChangeset.prototype.HasRemovedVariables=function(){var self=this.ptr;return!!_emscripten_bind_VariablesChangeset_HasRemovedVariables_0(self)};VariablesChangeset.prototype["ClearRemovedVariables"]=VariablesChangeset.prototype.ClearRemovedVariables=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_VariablesChangeset_ClearRemovedVariables_0(self),VariablesChangeset)};VariablesChangeset.prototype["__destroy__"]=VariablesChangeset.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_VariablesChangeset___destroy___0(self)};function WholeProjectRefactorer(){throw"cannot construct a WholeProjectRefactorer, no constructor in IDL"}WholeProjectRefactorer.prototype=Object.create(WrapperObject.prototype);WholeProjectRefactorer.prototype.constructor=WholeProjectRefactorer;WholeProjectRefactorer.prototype.__class__=WholeProjectRefactorer;WholeProjectRefactorer.__cache__={};Module["WholeProjectRefactorer"]=WholeProjectRefactorer;WholeProjectRefactorer.prototype["STATIC_ComputeChangesetForVariablesContainer"]=WholeProjectRefactorer.prototype.STATIC_ComputeChangesetForVariablesContainer=function(oldSerializedVariablesContainer,newVariablesContainer){var self=this.ptr;if(oldSerializedVariablesContainer&&typeof oldSerializedVariablesContainer==="object")oldSerializedVariablesContainer=oldSerializedVariablesContainer.ptr;if(newVariablesContainer&&typeof newVariablesContainer==="object")newVariablesContainer=newVariablesContainer.ptr;return wrapPointer(_emscripten_bind_WholeProjectRefactorer_STATIC_ComputeChangesetForVariablesContainer_2(self,oldSerializedVariablesContainer,newVariablesContainer),VariablesChangeset)};WholeProjectRefactorer.prototype["STATIC_ApplyRefactoringForVariablesContainer"]=WholeProjectRefactorer.prototype.STATIC_ApplyRefactoringForVariablesContainer=function(project,newVariablesContainer,changeset,originalSerializedVariables){var self=this.ptr;if(project&&typeof project==="object")project=project.ptr;if(newVariablesContainer&&typeof newVariablesContainer==="object")newVariablesContainer=newVariablesContainer.ptr;if(changeset&&typeof changeset==="object")changeset=changeset.ptr;if(originalSerializedVariables&&typeof originalSerializedVariables==="object")originalSerializedVariables=originalSerializedVariables.ptr;_emscripten_bind_WholeProjectRefactorer_STATIC_ApplyRefactoringForVariablesContainer_4(self,project,newVariablesContainer,changeset,originalSerializedVariables)};WholeProjectRefactorer.prototype["STATIC_ApplyRefactoringForObjectVariablesContainer"]=WholeProjectRefactorer.prototype.STATIC_ApplyRefactoringForObjectVariablesContainer=function(project,objectVariablesContainer,initialInstancesContainer,objectName,changeset,originalSerializedVariables){var self=this.ptr;ensureCache.prepare();if(project&&typeof project==="object")project=project.ptr;if(objectVariablesContainer&&typeof objectVariablesContainer==="object")objectVariablesContainer=objectVariablesContainer.ptr;if(initialInstancesContainer&&typeof initialInstancesContainer==="object")initialInstancesContainer=initialInstancesContainer.ptr;if(objectName&&typeof objectName==="object")objectName=objectName.ptr;else objectName=ensureString(objectName);if(changeset&&typeof changeset==="object")changeset=changeset.ptr;if(originalSerializedVariables&&typeof originalSerializedVariables==="object")originalSerializedVariables=originalSerializedVariables.ptr;_emscripten_bind_WholeProjectRefactorer_STATIC_ApplyRefactoringForObjectVariablesContainer_6(self,project,objectVariablesContainer,initialInstancesContainer,objectName,changeset,originalSerializedVariables)};WholeProjectRefactorer.prototype["STATIC_ApplyRefactoringForGroupVariablesContainer"]=WholeProjectRefactorer.prototype.STATIC_ApplyRefactoringForGroupVariablesContainer=function(project,globalObjectsContainer,objectsContainer,initialInstancesContainer,groupVariablesContainer,objectGroup,changeset,originalSerializedVariables){var self=this.ptr;if(project&&typeof project==="object")project=project.ptr;if(globalObjectsContainer&&typeof globalObjectsContainer==="object")globalObjectsContainer=globalObjectsContainer.ptr;if(objectsContainer&&typeof objectsContainer==="object")objectsContainer=objectsContainer.ptr;if(initialInstancesContainer&&typeof initialInstancesContainer==="object")initialInstancesContainer=initialInstancesContainer.ptr;if(groupVariablesContainer&&typeof groupVariablesContainer==="object")groupVariablesContainer=groupVariablesContainer.ptr;if(objectGroup&&typeof objectGroup==="object")objectGroup=objectGroup.ptr;if(changeset&&typeof changeset==="object")changeset=changeset.ptr;if(originalSerializedVariables&&typeof originalSerializedVariables==="object")originalSerializedVariables=originalSerializedVariables.ptr;_emscripten_bind_WholeProjectRefactorer_STATIC_ApplyRefactoringForGroupVariablesContainer_8(self,project,globalObjectsContainer,objectsContainer,initialInstancesContainer,groupVariablesContainer,objectGroup,changeset,originalSerializedVariables)};WholeProjectRefactorer.prototype["STATIC_RenameEventsFunctionsExtension"]=WholeProjectRefactorer.prototype.STATIC_RenameEventsFunctionsExtension=function(project,eventsFunctionsExtension,oldName,newName){var self=this.ptr;ensureCache.prepare();if(project&&typeof project==="object")project=project.ptr;if(eventsFunctionsExtension&&typeof eventsFunctionsExtension==="object")eventsFunctionsExtension=eventsFunctionsExtension.ptr;if(oldName&&typeof oldName==="object")oldName=oldName.ptr;else oldName=ensureString(oldName);if(newName&&typeof newName==="object")newName=newName.ptr;else newName=ensureString(newName);_emscripten_bind_WholeProjectRefactorer_STATIC_RenameEventsFunctionsExtension_4(self,project,eventsFunctionsExtension,oldName,newName)};WholeProjectRefactorer.prototype["STATIC_UpdateExtensionNameInEventsBasedBehavior"]=WholeProjectRefactorer.prototype.STATIC_UpdateExtensionNameInEventsBasedBehavior=function(project,eventsFunctionsExtension,eventsBasedBehavior,sourceExtensionName){var self=this.ptr;ensureCache.prepare();if(project&&typeof project==="object")project=project.ptr;if(eventsFunctionsExtension&&typeof eventsFunctionsExtension==="object")eventsFunctionsExtension=eventsFunctionsExtension.ptr;if(eventsBasedBehavior&&typeof eventsBasedBehavior==="object")eventsBasedBehavior=eventsBasedBehavior.ptr;if(sourceExtensionName&&typeof sourceExtensionName==="object")sourceExtensionName=sourceExtensionName.ptr;else sourceExtensionName=ensureString(sourceExtensionName);_emscripten_bind_WholeProjectRefactorer_STATIC_UpdateExtensionNameInEventsBasedBehavior_4(self,project,eventsFunctionsExtension,eventsBasedBehavior,sourceExtensionName)};WholeProjectRefactorer.prototype["STATIC_UpdateExtensionNameInEventsBasedObject"]=WholeProjectRefactorer.prototype.STATIC_UpdateExtensionNameInEventsBasedObject=function(project,eventsFunctionsExtension,eventsBasedObject,sourceExtensionName){var self=this.ptr;ensureCache.prepare();if(project&&typeof project==="object")project=project.ptr;if(eventsFunctionsExtension&&typeof eventsFunctionsExtension==="object")eventsFunctionsExtension=eventsFunctionsExtension.ptr;if(eventsBasedObject&&typeof eventsBasedObject==="object")eventsBasedObject=eventsBasedObject.ptr;if(sourceExtensionName&&typeof sourceExtensionName==="object")sourceExtensionName=sourceExtensionName.ptr;else sourceExtensionName=ensureString(sourceExtensionName);_emscripten_bind_WholeProjectRefactorer_STATIC_UpdateExtensionNameInEventsBasedObject_4(self,project,eventsFunctionsExtension,eventsBasedObject,sourceExtensionName)};WholeProjectRefactorer.prototype["STATIC_RenameEventsFunction"]=WholeProjectRefactorer.prototype.STATIC_RenameEventsFunction=function(project,eventsFunctionsExtension,oldName,newName){var self=this.ptr;ensureCache.prepare();if(project&&typeof project==="object")project=project.ptr;if(eventsFunctionsExtension&&typeof eventsFunctionsExtension==="object")eventsFunctionsExtension=eventsFunctionsExtension.ptr;if(oldName&&typeof oldName==="object")oldName=oldName.ptr;else oldName=ensureString(oldName);if(newName&&typeof newName==="object")newName=newName.ptr;else newName=ensureString(newName);_emscripten_bind_WholeProjectRefactorer_STATIC_RenameEventsFunction_4(self,project,eventsFunctionsExtension,oldName,newName)};WholeProjectRefactorer.prototype["STATIC_RenameBehaviorEventsFunction"]=WholeProjectRefactorer.prototype.STATIC_RenameBehaviorEventsFunction=function(project,eventsFunctionsExtension,eventsBasedBehavior,oldName,newName){var self=this.ptr;ensureCache.prepare();if(project&&typeof project==="object")project=project.ptr;if(eventsFunctionsExtension&&typeof eventsFunctionsExtension==="object")eventsFunctionsExtension=eventsFunctionsExtension.ptr;if(eventsBasedBehavior&&typeof eventsBasedBehavior==="object")eventsBasedBehavior=eventsBasedBehavior.ptr;if(oldName&&typeof oldName==="object")oldName=oldName.ptr;else oldName=ensureString(oldName);if(newName&&typeof newName==="object")newName=newName.ptr;else newName=ensureString(newName);_emscripten_bind_WholeProjectRefactorer_STATIC_RenameBehaviorEventsFunction_5(self,project,eventsFunctionsExtension,eventsBasedBehavior,oldName,newName)};WholeProjectRefactorer.prototype["STATIC_RenameObjectEventsFunction"]=WholeProjectRefactorer.prototype.STATIC_RenameObjectEventsFunction=function(project,eventsFunctionsExtension,eventsBasedObject,oldName,newName){var self=this.ptr;ensureCache.prepare();if(project&&typeof project==="object")project=project.ptr;if(eventsFunctionsExtension&&typeof eventsFunctionsExtension==="object")eventsFunctionsExtension=eventsFunctionsExtension.ptr;if(eventsBasedObject&&typeof eventsBasedObject==="object")eventsBasedObject=eventsBasedObject.ptr;if(oldName&&typeof oldName==="object")oldName=oldName.ptr;else oldName=ensureString(oldName);if(newName&&typeof newName==="object")newName=newName.ptr;else newName=ensureString(newName);_emscripten_bind_WholeProjectRefactorer_STATIC_RenameObjectEventsFunction_5(self,project,eventsFunctionsExtension,eventsBasedObject,oldName,newName)};WholeProjectRefactorer.prototype["STATIC_RenameParameter"]=WholeProjectRefactorer.prototype.STATIC_RenameParameter=function(project,projectScopedContainers,eventsFunction,parameterObjectsContainer,oldName,newName){var self=this.ptr;ensureCache.prepare();if(project&&typeof project==="object")project=project.ptr;if(projectScopedContainers&&typeof projectScopedContainers==="object")projectScopedContainers=projectScopedContainers.ptr;if(eventsFunction&&typeof eventsFunction==="object")eventsFunction=eventsFunction.ptr;if(parameterObjectsContainer&&typeof parameterObjectsContainer==="object")parameterObjectsContainer=parameterObjectsContainer.ptr;if(oldName&&typeof oldName==="object")oldName=oldName.ptr;else oldName=ensureString(oldName);if(newName&&typeof newName==="object")newName=newName.ptr;else newName=ensureString(newName);_emscripten_bind_WholeProjectRefactorer_STATIC_RenameParameter_6(self,project,projectScopedContainers,eventsFunction,parameterObjectsContainer,oldName,newName)};WholeProjectRefactorer.prototype["STATIC_ChangeParameterType"]=WholeProjectRefactorer.prototype.STATIC_ChangeParameterType=function(project,projectScopedContainers,eventsFunction,parameterObjectsContainer,parameterName){var self=this.ptr;ensureCache.prepare();if(project&&typeof project==="object")project=project.ptr;if(projectScopedContainers&&typeof projectScopedContainers==="object")projectScopedContainers=projectScopedContainers.ptr;if(eventsFunction&&typeof eventsFunction==="object")eventsFunction=eventsFunction.ptr;if(parameterObjectsContainer&&typeof parameterObjectsContainer==="object")parameterObjectsContainer=parameterObjectsContainer.ptr;if(parameterName&&typeof parameterName==="object")parameterName=parameterName.ptr;else parameterName=ensureString(parameterName);_emscripten_bind_WholeProjectRefactorer_STATIC_ChangeParameterType_5(self,project,projectScopedContainers,eventsFunction,parameterObjectsContainer,parameterName)};WholeProjectRefactorer.prototype["STATIC_MoveEventsFunctionParameter"]=WholeProjectRefactorer.prototype.STATIC_MoveEventsFunctionParameter=function(project,eventsFunctionsExtension,functionName,oldIndex,newIndex){var self=this.ptr;ensureCache.prepare();if(project&&typeof project==="object")project=project.ptr;if(eventsFunctionsExtension&&typeof eventsFunctionsExtension==="object")eventsFunctionsExtension=eventsFunctionsExtension.ptr;if(functionName&&typeof functionName==="object")functionName=functionName.ptr;else functionName=ensureString(functionName);if(oldIndex&&typeof oldIndex==="object")oldIndex=oldIndex.ptr;if(newIndex&&typeof newIndex==="object")newIndex=newIndex.ptr;_emscripten_bind_WholeProjectRefactorer_STATIC_MoveEventsFunctionParameter_5(self,project,eventsFunctionsExtension,functionName,oldIndex,newIndex)};WholeProjectRefactorer.prototype["STATIC_MoveBehaviorEventsFunctionParameter"]=WholeProjectRefactorer.prototype.STATIC_MoveBehaviorEventsFunctionParameter=function(project,eventsFunctionsExtension,eventsBasedBehavior,functionName,oldIndex,newIndex){var self=this.ptr;ensureCache.prepare();if(project&&typeof project==="object")project=project.ptr;if(eventsFunctionsExtension&&typeof eventsFunctionsExtension==="object")eventsFunctionsExtension=eventsFunctionsExtension.ptr;if(eventsBasedBehavior&&typeof eventsBasedBehavior==="object")eventsBasedBehavior=eventsBasedBehavior.ptr;if(functionName&&typeof functionName==="object")functionName=functionName.ptr;else functionName=ensureString(functionName);if(oldIndex&&typeof oldIndex==="object")oldIndex=oldIndex.ptr;if(newIndex&&typeof newIndex==="object")newIndex=newIndex.ptr;_emscripten_bind_WholeProjectRefactorer_STATIC_MoveBehaviorEventsFunctionParameter_6(self,project,eventsFunctionsExtension,eventsBasedBehavior,functionName,oldIndex,newIndex)};WholeProjectRefactorer.prototype["STATIC_MoveObjectEventsFunctionParameter"]=WholeProjectRefactorer.prototype.STATIC_MoveObjectEventsFunctionParameter=function(project,eventsFunctionsExtension,eventsBasedObject,functionName,oldIndex,newIndex){var self=this.ptr;ensureCache.prepare();if(project&&typeof project==="object")project=project.ptr;if(eventsFunctionsExtension&&typeof eventsFunctionsExtension==="object")eventsFunctionsExtension=eventsFunctionsExtension.ptr;if(eventsBasedObject&&typeof eventsBasedObject==="object")eventsBasedObject=eventsBasedObject.ptr;if(functionName&&typeof functionName==="object")functionName=functionName.ptr;else functionName=ensureString(functionName);if(oldIndex&&typeof oldIndex==="object")oldIndex=oldIndex.ptr;if(newIndex&&typeof newIndex==="object")newIndex=newIndex.ptr;_emscripten_bind_WholeProjectRefactorer_STATIC_MoveObjectEventsFunctionParameter_6(self,project,eventsFunctionsExtension,eventsBasedObject,functionName,oldIndex,newIndex)};WholeProjectRefactorer.prototype["STATIC_RenameEventsBasedBehaviorProperty"]=WholeProjectRefactorer.prototype.STATIC_RenameEventsBasedBehaviorProperty=function(project,eventsFunctionsExtension,eventsBasedBehavior,oldName,newName){var self=this.ptr;ensureCache.prepare();if(project&&typeof project==="object")project=project.ptr;if(eventsFunctionsExtension&&typeof eventsFunctionsExtension==="object")eventsFunctionsExtension=eventsFunctionsExtension.ptr;if(eventsBasedBehavior&&typeof eventsBasedBehavior==="object")eventsBasedBehavior=eventsBasedBehavior.ptr;if(oldName&&typeof oldName==="object")oldName=oldName.ptr;else oldName=ensureString(oldName);if(newName&&typeof newName==="object")newName=newName.ptr;else newName=ensureString(newName);_emscripten_bind_WholeProjectRefactorer_STATIC_RenameEventsBasedBehaviorProperty_5(self,project,eventsFunctionsExtension,eventsBasedBehavior,oldName,newName)};WholeProjectRefactorer.prototype["STATIC_RenameEventsBasedBehaviorSharedProperty"]=WholeProjectRefactorer.prototype.STATIC_RenameEventsBasedBehaviorSharedProperty=function(project,eventsFunctionsExtension,eventsBasedBehavior,oldName,newName){var self=this.ptr;ensureCache.prepare();if(project&&typeof project==="object")project=project.ptr;if(eventsFunctionsExtension&&typeof eventsFunctionsExtension==="object")eventsFunctionsExtension=eventsFunctionsExtension.ptr;if(eventsBasedBehavior&&typeof eventsBasedBehavior==="object")eventsBasedBehavior=eventsBasedBehavior.ptr;if(oldName&&typeof oldName==="object")oldName=oldName.ptr;else oldName=ensureString(oldName);if(newName&&typeof newName==="object")newName=newName.ptr;else newName=ensureString(newName);_emscripten_bind_WholeProjectRefactorer_STATIC_RenameEventsBasedBehaviorSharedProperty_5(self,project,eventsFunctionsExtension,eventsBasedBehavior,oldName,newName)};WholeProjectRefactorer.prototype["STATIC_ChangeEventsBasedBehaviorPropertyType"]=WholeProjectRefactorer.prototype.STATIC_ChangeEventsBasedBehaviorPropertyType=function(project,eventsFunctionsExtension,eventsBasedBehavior,propertyName){var self=this.ptr;ensureCache.prepare();if(project&&typeof project==="object")project=project.ptr;if(eventsFunctionsExtension&&typeof eventsFunctionsExtension==="object")eventsFunctionsExtension=eventsFunctionsExtension.ptr;if(eventsBasedBehavior&&typeof eventsBasedBehavior==="object")eventsBasedBehavior=eventsBasedBehavior.ptr;if(propertyName&&typeof propertyName==="object")propertyName=propertyName.ptr;else propertyName=ensureString(propertyName);_emscripten_bind_WholeProjectRefactorer_STATIC_ChangeEventsBasedBehaviorPropertyType_4(self,project,eventsFunctionsExtension,eventsBasedBehavior,propertyName)};WholeProjectRefactorer.prototype["STATIC_RenameEventsBasedObjectProperty"]=WholeProjectRefactorer.prototype.STATIC_RenameEventsBasedObjectProperty=function(project,eventsFunctionsExtension,eventsBasedObject,oldName,newName){var self=this.ptr;ensureCache.prepare();if(project&&typeof project==="object")project=project.ptr;if(eventsFunctionsExtension&&typeof eventsFunctionsExtension==="object")eventsFunctionsExtension=eventsFunctionsExtension.ptr;if(eventsBasedObject&&typeof eventsBasedObject==="object")eventsBasedObject=eventsBasedObject.ptr;if(oldName&&typeof oldName==="object")oldName=oldName.ptr;else oldName=ensureString(oldName);if(newName&&typeof newName==="object")newName=newName.ptr;else newName=ensureString(newName);_emscripten_bind_WholeProjectRefactorer_STATIC_RenameEventsBasedObjectProperty_5(self,project,eventsFunctionsExtension,eventsBasedObject,oldName,newName)};WholeProjectRefactorer.prototype["STATIC_ChangeEventsBasedObjectPropertyType"]=WholeProjectRefactorer.prototype.STATIC_ChangeEventsBasedObjectPropertyType=function(project,eventsFunctionsExtension,eventsBasedObject,propertyName){var self=this.ptr;ensureCache.prepare();if(project&&typeof project==="object")project=project.ptr;if(eventsFunctionsExtension&&typeof eventsFunctionsExtension==="object")eventsFunctionsExtension=eventsFunctionsExtension.ptr;if(eventsBasedObject&&typeof eventsBasedObject==="object")eventsBasedObject=eventsBasedObject.ptr;if(propertyName&&typeof propertyName==="object")propertyName=propertyName.ptr;else propertyName=ensureString(propertyName);_emscripten_bind_WholeProjectRefactorer_STATIC_ChangeEventsBasedObjectPropertyType_4(self,project,eventsFunctionsExtension,eventsBasedObject,propertyName)};WholeProjectRefactorer.prototype["STATIC_RenameEventsBasedBehavior"]=WholeProjectRefactorer.prototype.STATIC_RenameEventsBasedBehavior=function(project,eventsFunctionsExtension,oldName,newName){var self=this.ptr;ensureCache.prepare();if(project&&typeof project==="object")project=project.ptr;if(eventsFunctionsExtension&&typeof eventsFunctionsExtension==="object")eventsFunctionsExtension=eventsFunctionsExtension.ptr;if(oldName&&typeof oldName==="object")oldName=oldName.ptr;else oldName=ensureString(oldName);if(newName&&typeof newName==="object")newName=newName.ptr;else newName=ensureString(newName);_emscripten_bind_WholeProjectRefactorer_STATIC_RenameEventsBasedBehavior_4(self,project,eventsFunctionsExtension,oldName,newName)};WholeProjectRefactorer.prototype["STATIC_UpdateBehaviorNameInEventsBasedBehavior"]=WholeProjectRefactorer.prototype.STATIC_UpdateBehaviorNameInEventsBasedBehavior=function(project,eventsFunctionsExtension,eventsBasedBehavior,sourceBehaviorName){var self=this.ptr;ensureCache.prepare();if(project&&typeof project==="object")project=project.ptr;if(eventsFunctionsExtension&&typeof eventsFunctionsExtension==="object")eventsFunctionsExtension=eventsFunctionsExtension.ptr;if(eventsBasedBehavior&&typeof eventsBasedBehavior==="object")eventsBasedBehavior=eventsBasedBehavior.ptr;if(sourceBehaviorName&&typeof sourceBehaviorName==="object")sourceBehaviorName=sourceBehaviorName.ptr;else sourceBehaviorName=ensureString(sourceBehaviorName);_emscripten_bind_WholeProjectRefactorer_STATIC_UpdateBehaviorNameInEventsBasedBehavior_4(self,project,eventsFunctionsExtension,eventsBasedBehavior,sourceBehaviorName)};WholeProjectRefactorer.prototype["STATIC_RenameEventsBasedObject"]=WholeProjectRefactorer.prototype.STATIC_RenameEventsBasedObject=function(project,eventsFunctionsExtension,oldName,newName){var self=this.ptr;ensureCache.prepare();if(project&&typeof project==="object")project=project.ptr;if(eventsFunctionsExtension&&typeof eventsFunctionsExtension==="object")eventsFunctionsExtension=eventsFunctionsExtension.ptr;if(oldName&&typeof oldName==="object")oldName=oldName.ptr;else oldName=ensureString(oldName);if(newName&&typeof newName==="object")newName=newName.ptr;else newName=ensureString(newName);_emscripten_bind_WholeProjectRefactorer_STATIC_RenameEventsBasedObject_4(self,project,eventsFunctionsExtension,oldName,newName)};WholeProjectRefactorer.prototype["STATIC_UpdateObjectNameInEventsBasedObject"]=WholeProjectRefactorer.prototype.STATIC_UpdateObjectNameInEventsBasedObject=function(project,eventsFunctionsExtension,eventsBasedObject,sourceObjectName){var self=this.ptr;ensureCache.prepare();if(project&&typeof project==="object")project=project.ptr;if(eventsFunctionsExtension&&typeof eventsFunctionsExtension==="object")eventsFunctionsExtension=eventsFunctionsExtension.ptr;if(eventsBasedObject&&typeof eventsBasedObject==="object")eventsBasedObject=eventsBasedObject.ptr;if(sourceObjectName&&typeof sourceObjectName==="object")sourceObjectName=sourceObjectName.ptr;else sourceObjectName=ensureString(sourceObjectName);_emscripten_bind_WholeProjectRefactorer_STATIC_UpdateObjectNameInEventsBasedObject_4(self,project,eventsFunctionsExtension,eventsBasedObject,sourceObjectName)};WholeProjectRefactorer.prototype["STATIC_RenameLayout"]=WholeProjectRefactorer.prototype.STATIC_RenameLayout=function(project,oldName,newName){var self=this.ptr;ensureCache.prepare();if(project&&typeof project==="object")project=project.ptr;if(oldName&&typeof oldName==="object")oldName=oldName.ptr;else oldName=ensureString(oldName);if(newName&&typeof newName==="object")newName=newName.ptr;else newName=ensureString(newName);_emscripten_bind_WholeProjectRefactorer_STATIC_RenameLayout_3(self,project,oldName,newName)};WholeProjectRefactorer.prototype["STATIC_RenameExternalLayout"]=WholeProjectRefactorer.prototype.STATIC_RenameExternalLayout=function(project,oldName,newName){var self=this.ptr;ensureCache.prepare();if(project&&typeof project==="object")project=project.ptr;if(oldName&&typeof oldName==="object")oldName=oldName.ptr;else oldName=ensureString(oldName);if(newName&&typeof newName==="object")newName=newName.ptr;else newName=ensureString(newName);_emscripten_bind_WholeProjectRefactorer_STATIC_RenameExternalLayout_3(self,project,oldName,newName)};WholeProjectRefactorer.prototype["STATIC_RenameExternalEvents"]=WholeProjectRefactorer.prototype.STATIC_RenameExternalEvents=function(project,oldName,newName){var self=this.ptr;ensureCache.prepare();if(project&&typeof project==="object")project=project.ptr;if(oldName&&typeof oldName==="object")oldName=oldName.ptr;else oldName=ensureString(oldName);if(newName&&typeof newName==="object")newName=newName.ptr;else newName=ensureString(newName);_emscripten_bind_WholeProjectRefactorer_STATIC_RenameExternalEvents_3(self,project,oldName,newName)};WholeProjectRefactorer.prototype["STATIC_RenameLayerInScene"]=WholeProjectRefactorer.prototype.STATIC_RenameLayerInScene=function(project,scene,oldName,newName){var self=this.ptr;ensureCache.prepare();if(project&&typeof project==="object")project=project.ptr;if(scene&&typeof scene==="object")scene=scene.ptr;if(oldName&&typeof oldName==="object")oldName=oldName.ptr;else oldName=ensureString(oldName);if(newName&&typeof newName==="object")newName=newName.ptr;else newName=ensureString(newName);_emscripten_bind_WholeProjectRefactorer_STATIC_RenameLayerInScene_4(self,project,scene,oldName,newName)};WholeProjectRefactorer.prototype["STATIC_RenameLayerInEventsBasedObject"]=WholeProjectRefactorer.prototype.STATIC_RenameLayerInEventsBasedObject=function(project,eventsFunctionsExtension,eventsBasedObject,oldName,newName){var self=this.ptr;ensureCache.prepare();if(project&&typeof project==="object")project=project.ptr;if(eventsFunctionsExtension&&typeof eventsFunctionsExtension==="object")eventsFunctionsExtension=eventsFunctionsExtension.ptr;if(eventsBasedObject&&typeof eventsBasedObject==="object")eventsBasedObject=eventsBasedObject.ptr;if(oldName&&typeof oldName==="object")oldName=oldName.ptr;else oldName=ensureString(oldName);if(newName&&typeof newName==="object")newName=newName.ptr;else newName=ensureString(newName);_emscripten_bind_WholeProjectRefactorer_STATIC_RenameLayerInEventsBasedObject_5(self,project,eventsFunctionsExtension,eventsBasedObject,oldName,newName)};WholeProjectRefactorer.prototype["STATIC_RenameLayerEffectInScene"]=WholeProjectRefactorer.prototype.STATIC_RenameLayerEffectInScene=function(project,scene,layer,oldName,newName){var self=this.ptr;ensureCache.prepare();if(project&&typeof project==="object")project=project.ptr;if(scene&&typeof scene==="object")scene=scene.ptr;if(layer&&typeof layer==="object")layer=layer.ptr;if(oldName&&typeof oldName==="object")oldName=oldName.ptr;else oldName=ensureString(oldName);if(newName&&typeof newName==="object")newName=newName.ptr;else newName=ensureString(newName);_emscripten_bind_WholeProjectRefactorer_STATIC_RenameLayerEffectInScene_5(self,project,scene,layer,oldName,newName)};WholeProjectRefactorer.prototype["STATIC_RenameLayerEffectInEventsBasedObject"]=WholeProjectRefactorer.prototype.STATIC_RenameLayerEffectInEventsBasedObject=function(project,eventsFunctionsExtension,eventsBasedObject,layer,oldName,newName){var self=this.ptr;ensureCache.prepare();if(project&&typeof project==="object")project=project.ptr;if(eventsFunctionsExtension&&typeof eventsFunctionsExtension==="object")eventsFunctionsExtension=eventsFunctionsExtension.ptr;if(eventsBasedObject&&typeof eventsBasedObject==="object")eventsBasedObject=eventsBasedObject.ptr;if(layer&&typeof layer==="object")layer=layer.ptr;if(oldName&&typeof oldName==="object")oldName=oldName.ptr;else oldName=ensureString(oldName);if(newName&&typeof newName==="object")newName=newName.ptr;else newName=ensureString(newName);_emscripten_bind_WholeProjectRefactorer_STATIC_RenameLayerEffectInEventsBasedObject_6(self,project,eventsFunctionsExtension,eventsBasedObject,layer,oldName,newName)};WholeProjectRefactorer.prototype["STATIC_RenameObjectAnimationInScene"]=WholeProjectRefactorer.prototype.STATIC_RenameObjectAnimationInScene=function(project,scene,gdObject,oldName,newName){var self=this.ptr;ensureCache.prepare();if(project&&typeof project==="object")project=project.ptr;if(scene&&typeof scene==="object")scene=scene.ptr;if(gdObject&&typeof gdObject==="object")gdObject=gdObject.ptr;if(oldName&&typeof oldName==="object")oldName=oldName.ptr;else oldName=ensureString(oldName);if(newName&&typeof newName==="object")newName=newName.ptr;else newName=ensureString(newName);_emscripten_bind_WholeProjectRefactorer_STATIC_RenameObjectAnimationInScene_5(self,project,scene,gdObject,oldName,newName)};WholeProjectRefactorer.prototype["STATIC_RenameObjectAnimationInEventsBasedObject"]=WholeProjectRefactorer.prototype.STATIC_RenameObjectAnimationInEventsBasedObject=function(project,eventsFunctionsExtension,eventsBasedObject,gdObject,oldName,newName){var self=this.ptr;ensureCache.prepare();if(project&&typeof project==="object")project=project.ptr;if(eventsFunctionsExtension&&typeof eventsFunctionsExtension==="object")eventsFunctionsExtension=eventsFunctionsExtension.ptr;if(eventsBasedObject&&typeof eventsBasedObject==="object")eventsBasedObject=eventsBasedObject.ptr;if(gdObject&&typeof gdObject==="object")gdObject=gdObject.ptr;if(oldName&&typeof oldName==="object")oldName=oldName.ptr;else oldName=ensureString(oldName);if(newName&&typeof newName==="object")newName=newName.ptr;else newName=ensureString(newName);_emscripten_bind_WholeProjectRefactorer_STATIC_RenameObjectAnimationInEventsBasedObject_6(self,project,eventsFunctionsExtension,eventsBasedObject,gdObject,oldName,newName)};WholeProjectRefactorer.prototype["STATIC_RenameObjectPointInScene"]=WholeProjectRefactorer.prototype.STATIC_RenameObjectPointInScene=function(project,scene,gdObject,oldName,newName){var self=this.ptr;ensureCache.prepare();if(project&&typeof project==="object")project=project.ptr;if(scene&&typeof scene==="object")scene=scene.ptr;if(gdObject&&typeof gdObject==="object")gdObject=gdObject.ptr;if(oldName&&typeof oldName==="object")oldName=oldName.ptr;else oldName=ensureString(oldName);if(newName&&typeof newName==="object")newName=newName.ptr;else newName=ensureString(newName);_emscripten_bind_WholeProjectRefactorer_STATIC_RenameObjectPointInScene_5(self,project,scene,gdObject,oldName,newName)};WholeProjectRefactorer.prototype["STATIC_RenameObjectPointInEventsBasedObject"]=WholeProjectRefactorer.prototype.STATIC_RenameObjectPointInEventsBasedObject=function(project,eventsFunctionsExtension,eventsBasedObject,gdObject,oldName,newName){var self=this.ptr;ensureCache.prepare();if(project&&typeof project==="object")project=project.ptr;if(eventsFunctionsExtension&&typeof eventsFunctionsExtension==="object")eventsFunctionsExtension=eventsFunctionsExtension.ptr;if(eventsBasedObject&&typeof eventsBasedObject==="object")eventsBasedObject=eventsBasedObject.ptr;if(gdObject&&typeof gdObject==="object")gdObject=gdObject.ptr;if(oldName&&typeof oldName==="object")oldName=oldName.ptr;else oldName=ensureString(oldName);if(newName&&typeof newName==="object")newName=newName.ptr;else newName=ensureString(newName);_emscripten_bind_WholeProjectRefactorer_STATIC_RenameObjectPointInEventsBasedObject_6(self,project,eventsFunctionsExtension,eventsBasedObject,gdObject,oldName,newName)};WholeProjectRefactorer.prototype["STATIC_RenameObjectEffectInScene"]=WholeProjectRefactorer.prototype.STATIC_RenameObjectEffectInScene=function(project,scene,gdObject,oldName,newName){var self=this.ptr;ensureCache.prepare();if(project&&typeof project==="object")project=project.ptr;if(scene&&typeof scene==="object")scene=scene.ptr;if(gdObject&&typeof gdObject==="object")gdObject=gdObject.ptr;if(oldName&&typeof oldName==="object")oldName=oldName.ptr;else oldName=ensureString(oldName);if(newName&&typeof newName==="object")newName=newName.ptr;else newName=ensureString(newName);_emscripten_bind_WholeProjectRefactorer_STATIC_RenameObjectEffectInScene_5(self,project,scene,gdObject,oldName,newName)};WholeProjectRefactorer.prototype["STATIC_RenameObjectEffectInEventsBasedObject"]=WholeProjectRefactorer.prototype.STATIC_RenameObjectEffectInEventsBasedObject=function(project,eventsFunctionsExtension,eventsBasedObject,gdObject,oldName,newName){var self=this.ptr;ensureCache.prepare();if(project&&typeof project==="object")project=project.ptr;if(eventsFunctionsExtension&&typeof eventsFunctionsExtension==="object")eventsFunctionsExtension=eventsFunctionsExtension.ptr;if(eventsBasedObject&&typeof eventsBasedObject==="object")eventsBasedObject=eventsBasedObject.ptr;if(gdObject&&typeof gdObject==="object")gdObject=gdObject.ptr;if(oldName&&typeof oldName==="object")oldName=oldName.ptr;else oldName=ensureString(oldName);if(newName&&typeof newName==="object")newName=newName.ptr;else newName=ensureString(newName);_emscripten_bind_WholeProjectRefactorer_STATIC_RenameObjectEffectInEventsBasedObject_6(self,project,eventsFunctionsExtension,eventsBasedObject,gdObject,oldName,newName)};WholeProjectRefactorer.prototype["STATIC_ObjectOrGroupRenamedInScene"]=WholeProjectRefactorer.prototype.STATIC_ObjectOrGroupRenamedInScene=function(project,scene,oldName,newName,isObjectGroup){var self=this.ptr;ensureCache.prepare();if(project&&typeof project==="object")project=project.ptr;if(scene&&typeof scene==="object")scene=scene.ptr;if(oldName&&typeof oldName==="object")oldName=oldName.ptr;else oldName=ensureString(oldName);if(newName&&typeof newName==="object")newName=newName.ptr;else newName=ensureString(newName);if(isObjectGroup&&typeof isObjectGroup==="object")isObjectGroup=isObjectGroup.ptr;_emscripten_bind_WholeProjectRefactorer_STATIC_ObjectOrGroupRenamedInScene_5(self,project,scene,oldName,newName,isObjectGroup)};WholeProjectRefactorer.prototype["STATIC_ObjectRemovedInScene"]=WholeProjectRefactorer.prototype.STATIC_ObjectRemovedInScene=function(project,scene,objectName){var self=this.ptr;ensureCache.prepare();if(project&&typeof project==="object")project=project.ptr;if(scene&&typeof scene==="object")scene=scene.ptr;if(objectName&&typeof objectName==="object")objectName=objectName.ptr;else objectName=ensureString(objectName);_emscripten_bind_WholeProjectRefactorer_STATIC_ObjectRemovedInScene_3(self,project,scene,objectName)};WholeProjectRefactorer.prototype["STATIC_BehaviorsAddedToObjectInScene"]=WholeProjectRefactorer.prototype.STATIC_BehaviorsAddedToObjectInScene=function(project,scene,objectName){var self=this.ptr;ensureCache.prepare();if(project&&typeof project==="object")project=project.ptr;if(scene&&typeof scene==="object")scene=scene.ptr;if(objectName&&typeof objectName==="object")objectName=objectName.ptr;else objectName=ensureString(objectName);_emscripten_bind_WholeProjectRefactorer_STATIC_BehaviorsAddedToObjectInScene_3(self,project,scene,objectName)};WholeProjectRefactorer.prototype["STATIC_ObjectOrGroupRenamedInEventsFunction"]=WholeProjectRefactorer.prototype.STATIC_ObjectOrGroupRenamedInEventsFunction=function(project,projectScopedContainers,eventsFunction,parameterObjectsContainer,oldName,newName,isObjectGroup){var self=this.ptr;ensureCache.prepare();if(project&&typeof project==="object")project=project.ptr;if(projectScopedContainers&&typeof projectScopedContainers==="object")projectScopedContainers=projectScopedContainers.ptr;if(eventsFunction&&typeof eventsFunction==="object")eventsFunction=eventsFunction.ptr;if(parameterObjectsContainer&&typeof parameterObjectsContainer==="object")parameterObjectsContainer=parameterObjectsContainer.ptr;if(oldName&&typeof oldName==="object")oldName=oldName.ptr;else oldName=ensureString(oldName);if(newName&&typeof newName==="object")newName=newName.ptr;else newName=ensureString(newName);if(isObjectGroup&&typeof isObjectGroup==="object")isObjectGroup=isObjectGroup.ptr;_emscripten_bind_WholeProjectRefactorer_STATIC_ObjectOrGroupRenamedInEventsFunction_7(self,project,projectScopedContainers,eventsFunction,parameterObjectsContainer,oldName,newName,isObjectGroup)};WholeProjectRefactorer.prototype["STATIC_ObjectRemovedInEventsFunction"]=WholeProjectRefactorer.prototype.STATIC_ObjectRemovedInEventsFunction=function(project,eventsFunction,objectName){var self=this.ptr;ensureCache.prepare();if(project&&typeof project==="object")project=project.ptr;if(eventsFunction&&typeof eventsFunction==="object")eventsFunction=eventsFunction.ptr;if(objectName&&typeof objectName==="object")objectName=objectName.ptr;else objectName=ensureString(objectName);_emscripten_bind_WholeProjectRefactorer_STATIC_ObjectRemovedInEventsFunction_3(self,project,eventsFunction,objectName)};WholeProjectRefactorer.prototype["STATIC_ObjectOrGroupRenamedInEventsBasedObject"]=WholeProjectRefactorer.prototype.STATIC_ObjectOrGroupRenamedInEventsBasedObject=function(project,projectScopedContainers,eventsBasedObject,oldName,newName,isObjectGroup){var self=this.ptr;ensureCache.prepare();if(project&&typeof project==="object")project=project.ptr;if(projectScopedContainers&&typeof projectScopedContainers==="object")projectScopedContainers=projectScopedContainers.ptr;if(eventsBasedObject&&typeof eventsBasedObject==="object")eventsBasedObject=eventsBasedObject.ptr;if(oldName&&typeof oldName==="object")oldName=oldName.ptr;else oldName=ensureString(oldName);if(newName&&typeof newName==="object")newName=newName.ptr;else newName=ensureString(newName);if(isObjectGroup&&typeof isObjectGroup==="object")isObjectGroup=isObjectGroup.ptr;_emscripten_bind_WholeProjectRefactorer_STATIC_ObjectOrGroupRenamedInEventsBasedObject_6(self,project,projectScopedContainers,eventsBasedObject,oldName,newName,isObjectGroup)};WholeProjectRefactorer.prototype["STATIC_ObjectRemovedInEventsBasedObject"]=WholeProjectRefactorer.prototype.STATIC_ObjectRemovedInEventsBasedObject=function(project,eventsBasedObject,objectName){var self=this.ptr;ensureCache.prepare();if(project&&typeof project==="object")project=project.ptr;if(eventsBasedObject&&typeof eventsBasedObject==="object")eventsBasedObject=eventsBasedObject.ptr;if(objectName&&typeof objectName==="object")objectName=objectName.ptr;else objectName=ensureString(objectName);_emscripten_bind_WholeProjectRefactorer_STATIC_ObjectRemovedInEventsBasedObject_3(self,project,eventsBasedObject,objectName)};WholeProjectRefactorer.prototype["STATIC_GlobalObjectOrGroupRenamed"]=WholeProjectRefactorer.prototype.STATIC_GlobalObjectOrGroupRenamed=function(project,oldName,newName,isObjectGroup){var self=this.ptr;ensureCache.prepare();if(project&&typeof project==="object")project=project.ptr;if(oldName&&typeof oldName==="object")oldName=oldName.ptr;else oldName=ensureString(oldName);if(newName&&typeof newName==="object")newName=newName.ptr;else newName=ensureString(newName);if(isObjectGroup&&typeof isObjectGroup==="object")isObjectGroup=isObjectGroup.ptr;_emscripten_bind_WholeProjectRefactorer_STATIC_GlobalObjectOrGroupRenamed_4(self,project,oldName,newName,isObjectGroup)};WholeProjectRefactorer.prototype["STATIC_GlobalObjectRemoved"]=WholeProjectRefactorer.prototype.STATIC_GlobalObjectRemoved=function(project,objectName){var self=this.ptr;ensureCache.prepare();if(project&&typeof project==="object")project=project.ptr;if(objectName&&typeof objectName==="object")objectName=objectName.ptr;else objectName=ensureString(objectName);_emscripten_bind_WholeProjectRefactorer_STATIC_GlobalObjectRemoved_2(self,project,objectName)};WholeProjectRefactorer.prototype["STATIC_BehaviorsAddedToGlobalObject"]=WholeProjectRefactorer.prototype.STATIC_BehaviorsAddedToGlobalObject=function(project,objectName){var self=this.ptr;ensureCache.prepare();if(project&&typeof project==="object")project=project.ptr;if(objectName&&typeof objectName==="object")objectName=objectName.ptr;else objectName=ensureString(objectName);_emscripten_bind_WholeProjectRefactorer_STATIC_BehaviorsAddedToGlobalObject_2(self,project,objectName)};WholeProjectRefactorer.prototype["STATIC_GetAllObjectTypesUsingEventsBasedBehavior"]=WholeProjectRefactorer.prototype.STATIC_GetAllObjectTypesUsingEventsBasedBehavior=function(project,eventsFunctionsExtension,eventsBasedBehavior){var self=this.ptr;if(project&&typeof project==="object")project=project.ptr;if(eventsFunctionsExtension&&typeof eventsFunctionsExtension==="object")eventsFunctionsExtension=eventsFunctionsExtension.ptr;if(eventsBasedBehavior&&typeof eventsBasedBehavior==="object")eventsBasedBehavior=eventsBasedBehavior.ptr;return wrapPointer(_emscripten_bind_WholeProjectRefactorer_STATIC_GetAllObjectTypesUsingEventsBasedBehavior_3(self,project,eventsFunctionsExtension,eventsBasedBehavior),SetString)};WholeProjectRefactorer.prototype["STATIC_EnsureBehaviorEventsFunctionsProperParameters"]=WholeProjectRefactorer.prototype.STATIC_EnsureBehaviorEventsFunctionsProperParameters=function(eventsFunctionsExtension,eventsBasedBehavior){var self=this.ptr;if(eventsFunctionsExtension&&typeof eventsFunctionsExtension==="object")eventsFunctionsExtension=eventsFunctionsExtension.ptr;if(eventsBasedBehavior&&typeof eventsBasedBehavior==="object")eventsBasedBehavior=eventsBasedBehavior.ptr;_emscripten_bind_WholeProjectRefactorer_STATIC_EnsureBehaviorEventsFunctionsProperParameters_2(self,eventsFunctionsExtension,eventsBasedBehavior)};WholeProjectRefactorer.prototype["STATIC_EnsureObjectEventsFunctionsProperParameters"]=WholeProjectRefactorer.prototype.STATIC_EnsureObjectEventsFunctionsProperParameters=function(eventsFunctionsExtension,eventsBasedObject){var self=this.ptr;if(eventsFunctionsExtension&&typeof eventsFunctionsExtension==="object")eventsFunctionsExtension=eventsFunctionsExtension.ptr;if(eventsBasedObject&&typeof eventsBasedObject==="object")eventsBasedObject=eventsBasedObject.ptr;_emscripten_bind_WholeProjectRefactorer_STATIC_EnsureObjectEventsFunctionsProperParameters_2(self,eventsFunctionsExtension,eventsBasedObject)};WholeProjectRefactorer.prototype["STATIC_AddBehaviorAndRequiredBehaviors"]=WholeProjectRefactorer.prototype.STATIC_AddBehaviorAndRequiredBehaviors=function(project,obj,behaviorType,behaviorName){var self=this.ptr;ensureCache.prepare();if(project&&typeof project==="object")project=project.ptr;if(obj&&typeof obj==="object")obj=obj.ptr;if(behaviorType&&typeof behaviorType==="object")behaviorType=behaviorType.ptr;else behaviorType=ensureString(behaviorType);if(behaviorName&&typeof behaviorName==="object")behaviorName=behaviorName.ptr;else behaviorName=ensureString(behaviorName);_emscripten_bind_WholeProjectRefactorer_STATIC_AddBehaviorAndRequiredBehaviors_4(self,project,obj,behaviorType,behaviorName)};WholeProjectRefactorer.prototype["STATIC_AddRequiredBehaviorsFor"]=WholeProjectRefactorer.prototype.STATIC_AddRequiredBehaviorsFor=function(project,obj,behaviorName){var self=this.ptr;ensureCache.prepare();if(project&&typeof project==="object")project=project.ptr;if(obj&&typeof obj==="object")obj=obj.ptr;if(behaviorName&&typeof behaviorName==="object")behaviorName=behaviorName.ptr;else behaviorName=ensureString(behaviorName);_emscripten_bind_WholeProjectRefactorer_STATIC_AddRequiredBehaviorsFor_3(self,project,obj,behaviorName)};WholeProjectRefactorer.prototype["STATIC_FindDependentBehaviorNames"]=WholeProjectRefactorer.prototype.STATIC_FindDependentBehaviorNames=function(project,obj,behaviorName){var self=this.ptr;ensureCache.prepare();if(project&&typeof project==="object")project=project.ptr;if(obj&&typeof obj==="object")obj=obj.ptr;if(behaviorName&&typeof behaviorName==="object")behaviorName=behaviorName.ptr;else behaviorName=ensureString(behaviorName);return wrapPointer(_emscripten_bind_WholeProjectRefactorer_STATIC_FindDependentBehaviorNames_3(self,project,obj,behaviorName),VectorString)};WholeProjectRefactorer.prototype["STATIC_FindInvalidRequiredBehaviorProperties"]=WholeProjectRefactorer.prototype.STATIC_FindInvalidRequiredBehaviorProperties=function(project){var self=this.ptr;if(project&&typeof project==="object")project=project.ptr;return wrapPointer(_emscripten_bind_WholeProjectRefactorer_STATIC_FindInvalidRequiredBehaviorProperties_1(self,project),VectorUnfilledRequiredBehaviorPropertyProblem)};WholeProjectRefactorer.prototype["STATIC_GetBehaviorsWithType"]=WholeProjectRefactorer.prototype.STATIC_GetBehaviorsWithType=function(obj,type){var self=this.ptr;ensureCache.prepare();if(obj&&typeof obj==="object")obj=obj.ptr;if(type&&typeof type==="object")type=type.ptr;else type=ensureString(type);return wrapPointer(_emscripten_bind_WholeProjectRefactorer_STATIC_GetBehaviorsWithType_2(self,obj,type),VectorString)};WholeProjectRefactorer.prototype["STATIC_FixInvalidRequiredBehaviorProperties"]=WholeProjectRefactorer.prototype.STATIC_FixInvalidRequiredBehaviorProperties=function(project){var self=this.ptr;if(project&&typeof project==="object")project=project.ptr;return!!_emscripten_bind_WholeProjectRefactorer_STATIC_FixInvalidRequiredBehaviorProperties_1(self,project)};WholeProjectRefactorer.prototype["STATIC_RemoveLayerInScene"]=WholeProjectRefactorer.prototype.STATIC_RemoveLayerInScene=function(project,scene,layerName){var self=this.ptr;ensureCache.prepare();if(project&&typeof project==="object")project=project.ptr;if(scene&&typeof scene==="object")scene=scene.ptr;if(layerName&&typeof layerName==="object")layerName=layerName.ptr;else layerName=ensureString(layerName);_emscripten_bind_WholeProjectRefactorer_STATIC_RemoveLayerInScene_3(self,project,scene,layerName)};WholeProjectRefactorer.prototype["STATIC_MergeLayersInScene"]=WholeProjectRefactorer.prototype.STATIC_MergeLayersInScene=function(project,scene,originLayerName,targetLayerName){var self=this.ptr;ensureCache.prepare();if(project&&typeof project==="object")project=project.ptr;if(scene&&typeof scene==="object")scene=scene.ptr;if(originLayerName&&typeof originLayerName==="object")originLayerName=originLayerName.ptr;else originLayerName=ensureString(originLayerName);if(targetLayerName&&typeof targetLayerName==="object")targetLayerName=targetLayerName.ptr;else targetLayerName=ensureString(targetLayerName);_emscripten_bind_WholeProjectRefactorer_STATIC_MergeLayersInScene_4(self,project,scene,originLayerName,targetLayerName)};WholeProjectRefactorer.prototype["STATIC_RemoveLayerInEventsBasedObject"]=WholeProjectRefactorer.prototype.STATIC_RemoveLayerInEventsBasedObject=function(eventsBasedObject,layerName){var self=this.ptr;ensureCache.prepare();if(eventsBasedObject&&typeof eventsBasedObject==="object")eventsBasedObject=eventsBasedObject.ptr;if(layerName&&typeof layerName==="object")layerName=layerName.ptr;else layerName=ensureString(layerName);_emscripten_bind_WholeProjectRefactorer_STATIC_RemoveLayerInEventsBasedObject_2(self,eventsBasedObject,layerName)};WholeProjectRefactorer.prototype["STATIC_MergeLayersInEventsBasedObject"]=WholeProjectRefactorer.prototype.STATIC_MergeLayersInEventsBasedObject=function(eventsBasedObject,originLayerName,targetLayerName){var self=this.ptr;ensureCache.prepare();if(eventsBasedObject&&typeof eventsBasedObject==="object")eventsBasedObject=eventsBasedObject.ptr;if(originLayerName&&typeof originLayerName==="object")originLayerName=originLayerName.ptr;else originLayerName=ensureString(originLayerName);if(targetLayerName&&typeof targetLayerName==="object")targetLayerName=targetLayerName.ptr;else targetLayerName=ensureString(targetLayerName);_emscripten_bind_WholeProjectRefactorer_STATIC_MergeLayersInEventsBasedObject_3(self,eventsBasedObject,originLayerName,targetLayerName)};WholeProjectRefactorer.prototype["STATIC_GetLayoutAndExternalLayoutLayerInstancesCount"]=WholeProjectRefactorer.prototype.STATIC_GetLayoutAndExternalLayoutLayerInstancesCount=function(project,layout,layerName){var self=this.ptr;ensureCache.prepare();if(project&&typeof project==="object")project=project.ptr;if(layout&&typeof layout==="object")layout=layout.ptr;if(layerName&&typeof layerName==="object")layerName=layerName.ptr;else layerName=ensureString(layerName);return _emscripten_bind_WholeProjectRefactorer_STATIC_GetLayoutAndExternalLayoutLayerInstancesCount_3(self,project,layout,layerName)};WholeProjectRefactorer.prototype["STATIC_RenameLeaderboards"]=WholeProjectRefactorer.prototype.STATIC_RenameLeaderboards=function(project,leaderboardIdMap){var self=this.ptr;if(project&&typeof project==="object")project=project.ptr;if(leaderboardIdMap&&typeof leaderboardIdMap==="object")leaderboardIdMap=leaderboardIdMap.ptr;_emscripten_bind_WholeProjectRefactorer_STATIC_RenameLeaderboards_2(self,project,leaderboardIdMap)};WholeProjectRefactorer.prototype["STATIC_FindAllLeaderboardIds"]=WholeProjectRefactorer.prototype.STATIC_FindAllLeaderboardIds=function(project){var self=this.ptr;if(project&&typeof project==="object")project=project.ptr;return wrapPointer(_emscripten_bind_WholeProjectRefactorer_STATIC_FindAllLeaderboardIds_1(self,project),SetString)};WholeProjectRefactorer.prototype["STATIC_UpdateBehaviorsSharedData"]=WholeProjectRefactorer.prototype.STATIC_UpdateBehaviorsSharedData=function(project){var self=this.ptr;if(project&&typeof project==="object")project=project.ptr;_emscripten_bind_WholeProjectRefactorer_STATIC_UpdateBehaviorsSharedData_1(self,project)};WholeProjectRefactorer.prototype["__destroy__"]=WholeProjectRefactorer.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_WholeProjectRefactorer___destroy___0(self)};function BehaviorParameterFiller(){throw"cannot construct a BehaviorParameterFiller, no constructor in IDL"}BehaviorParameterFiller.prototype=Object.create(WrapperObject.prototype);BehaviorParameterFiller.prototype.constructor=BehaviorParameterFiller;BehaviorParameterFiller.prototype.__class__=BehaviorParameterFiller;BehaviorParameterFiller.__cache__={};Module["BehaviorParameterFiller"]=BehaviorParameterFiller;BehaviorParameterFiller.prototype["STATIC_FillBehaviorParameters"]=BehaviorParameterFiller.prototype.STATIC_FillBehaviorParameters=function(platform,projectScopedContainers,instructionMetadata,instruction){var self=this.ptr;if(platform&&typeof platform==="object")platform=platform.ptr;if(projectScopedContainers&&typeof projectScopedContainers==="object")projectScopedContainers=projectScopedContainers.ptr;if(instructionMetadata&&typeof instructionMetadata==="object")instructionMetadata=instructionMetadata.ptr;if(instruction&&typeof instruction==="object")instruction=instruction.ptr;return!!_emscripten_bind_BehaviorParameterFiller_STATIC_FillBehaviorParameters_4(self,platform,projectScopedContainers,instructionMetadata,instruction)};BehaviorParameterFiller.prototype["__destroy__"]=BehaviorParameterFiller.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_BehaviorParameterFiller___destroy___0(self)};function ParameterValidationResult(){throw"cannot construct a ParameterValidationResult, no constructor in IDL"}ParameterValidationResult.prototype=Object.create(WrapperObject.prototype);ParameterValidationResult.prototype.constructor=ParameterValidationResult;ParameterValidationResult.prototype.__class__=ParameterValidationResult;ParameterValidationResult.__cache__={};Module["ParameterValidationResult"]=ParameterValidationResult;ParameterValidationResult.prototype["IsValid"]=ParameterValidationResult.prototype.IsValid=function(){var self=this.ptr;return!!_emscripten_bind_ParameterValidationResult_IsValid_0(self)};ParameterValidationResult.prototype["HasDeprecationWarning"]=ParameterValidationResult.prototype.HasDeprecationWarning=function(){var self=this.ptr;return!!_emscripten_bind_ParameterValidationResult_HasDeprecationWarning_0(self)};ParameterValidationResult.prototype["__destroy__"]=ParameterValidationResult.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_ParameterValidationResult___destroy___0(self)};function InstructionValidator(){throw"cannot construct a InstructionValidator, no constructor in IDL"}InstructionValidator.prototype=Object.create(WrapperObject.prototype);InstructionValidator.prototype.constructor=InstructionValidator;InstructionValidator.prototype.__class__=InstructionValidator;InstructionValidator.__cache__={};Module["InstructionValidator"]=InstructionValidator;InstructionValidator.prototype["STATIC_ValidateParameter"]=InstructionValidator.prototype.STATIC_ValidateParameter=function(platform,projectScopedContainers,instruction,metadata,parameterIndex,value){var self=this.ptr;ensureCache.prepare();if(platform&&typeof platform==="object")platform=platform.ptr;if(projectScopedContainers&&typeof projectScopedContainers==="object")projectScopedContainers=projectScopedContainers.ptr;if(instruction&&typeof instruction==="object")instruction=instruction.ptr;if(metadata&&typeof metadata==="object")metadata=metadata.ptr;if(parameterIndex&&typeof parameterIndex==="object")parameterIndex=parameterIndex.ptr;if(value&&typeof value==="object")value=value.ptr;else value=ensureString(value);return wrapPointer(_emscripten_bind_InstructionValidator_STATIC_ValidateParameter_6(self,platform,projectScopedContainers,instruction,metadata,parameterIndex,value),ParameterValidationResult)};InstructionValidator.prototype["STATIC_IsParameterValid"]=InstructionValidator.prototype.STATIC_IsParameterValid=function(platform,projectScopedContainers,instruction,metadata,parameterIndex,value){var self=this.ptr;ensureCache.prepare();if(platform&&typeof platform==="object")platform=platform.ptr;if(projectScopedContainers&&typeof projectScopedContainers==="object")projectScopedContainers=projectScopedContainers.ptr;if(instruction&&typeof instruction==="object")instruction=instruction.ptr;if(metadata&&typeof metadata==="object")metadata=metadata.ptr;if(parameterIndex&&typeof parameterIndex==="object")parameterIndex=parameterIndex.ptr;if(value&&typeof value==="object")value=value.ptr;else value=ensureString(value);return!!_emscripten_bind_InstructionValidator_STATIC_IsParameterValid_6(self,platform,projectScopedContainers,instruction,metadata,parameterIndex,value)};InstructionValidator.prototype["STATIC_HasDeprecationWarnings"]=InstructionValidator.prototype.STATIC_HasDeprecationWarnings=function(platform,projectScopedContainers,instruction,metadata,parameterIndex,value){var self=this.ptr;ensureCache.prepare();if(platform&&typeof platform==="object")platform=platform.ptr;if(projectScopedContainers&&typeof projectScopedContainers==="object")projectScopedContainers=projectScopedContainers.ptr;if(instruction&&typeof instruction==="object")instruction=instruction.ptr;if(metadata&&typeof metadata==="object")metadata=metadata.ptr;if(parameterIndex&&typeof parameterIndex==="object")parameterIndex=parameterIndex.ptr;if(value&&typeof value==="object")value=value.ptr;else value=ensureString(value);return!!_emscripten_bind_InstructionValidator_STATIC_HasDeprecationWarnings_6(self,platform,projectScopedContainers,instruction,metadata,parameterIndex,value)};InstructionValidator.prototype["__destroy__"]=InstructionValidator.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_InstructionValidator___destroy___0(self)};function ObjectTools(){throw"cannot construct a ObjectTools, no constructor in IDL"}ObjectTools.prototype=Object.create(WrapperObject.prototype);ObjectTools.prototype.constructor=ObjectTools;ObjectTools.prototype.__class__=ObjectTools;ObjectTools.__cache__={};Module["ObjectTools"]=ObjectTools;ObjectTools.prototype["STATIC_IsBehaviorCompatibleWithObject"]=ObjectTools.prototype.STATIC_IsBehaviorCompatibleWithObject=function(platform,objectType,behaviorType){var self=this.ptr;ensureCache.prepare();if(platform&&typeof platform==="object")platform=platform.ptr;if(objectType&&typeof objectType==="object")objectType=objectType.ptr;else objectType=ensureString(objectType);if(behaviorType&&typeof behaviorType==="object")behaviorType=behaviorType.ptr;else behaviorType=ensureString(behaviorType);return!!_emscripten_bind_ObjectTools_STATIC_IsBehaviorCompatibleWithObject_3(self,platform,objectType,behaviorType)};ObjectTools.prototype["__destroy__"]=ObjectTools.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_ObjectTools___destroy___0(self)};function EventsBasedObjectDependencyFinder(){throw"cannot construct a EventsBasedObjectDependencyFinder, no constructor in IDL"}EventsBasedObjectDependencyFinder.prototype=Object.create(WrapperObject.prototype);EventsBasedObjectDependencyFinder.prototype.constructor=EventsBasedObjectDependencyFinder;EventsBasedObjectDependencyFinder.prototype.__class__=EventsBasedObjectDependencyFinder;EventsBasedObjectDependencyFinder.__cache__={};Module["EventsBasedObjectDependencyFinder"]=EventsBasedObjectDependencyFinder;EventsBasedObjectDependencyFinder.prototype["STATIC_IsDependentFromEventsBasedObject"]=EventsBasedObjectDependencyFinder.prototype.STATIC_IsDependentFromEventsBasedObject=function(project,eventsBasedObject,dependency){var self=this.ptr;if(project&&typeof project==="object")project=project.ptr;if(eventsBasedObject&&typeof eventsBasedObject==="object")eventsBasedObject=eventsBasedObject.ptr;if(dependency&&typeof dependency==="object")dependency=dependency.ptr;return!!_emscripten_bind_EventsBasedObjectDependencyFinder_STATIC_IsDependentFromEventsBasedObject_3(self,project,eventsBasedObject,dependency)};EventsBasedObjectDependencyFinder.prototype["__destroy__"]=EventsBasedObjectDependencyFinder.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_EventsBasedObjectDependencyFinder___destroy___0(self)};function PropertyFunctionGenerator(){throw"cannot construct a PropertyFunctionGenerator, no constructor in IDL"}PropertyFunctionGenerator.prototype=Object.create(WrapperObject.prototype);PropertyFunctionGenerator.prototype.constructor=PropertyFunctionGenerator;PropertyFunctionGenerator.prototype.__class__=PropertyFunctionGenerator;PropertyFunctionGenerator.__cache__={};Module["PropertyFunctionGenerator"]=PropertyFunctionGenerator;PropertyFunctionGenerator.prototype["STATIC_GenerateBehaviorGetterAndSetter"]=PropertyFunctionGenerator.prototype.STATIC_GenerateBehaviorGetterAndSetter=function(project,extension,eventsBasedBehavior,property,isSharedProperties){var self=this.ptr;if(project&&typeof project==="object")project=project.ptr;if(extension&&typeof extension==="object")extension=extension.ptr;if(eventsBasedBehavior&&typeof eventsBasedBehavior==="object")eventsBasedBehavior=eventsBasedBehavior.ptr;if(property&&typeof property==="object")property=property.ptr;if(isSharedProperties&&typeof isSharedProperties==="object")isSharedProperties=isSharedProperties.ptr;_emscripten_bind_PropertyFunctionGenerator_STATIC_GenerateBehaviorGetterAndSetter_5(self,project,extension,eventsBasedBehavior,property,isSharedProperties)};PropertyFunctionGenerator.prototype["STATIC_GenerateObjectGetterAndSetter"]=PropertyFunctionGenerator.prototype.STATIC_GenerateObjectGetterAndSetter=function(project,extension,eventsBasedObject,property){var self=this.ptr;if(project&&typeof project==="object")project=project.ptr;if(extension&&typeof extension==="object")extension=extension.ptr;if(eventsBasedObject&&typeof eventsBasedObject==="object")eventsBasedObject=eventsBasedObject.ptr;if(property&&typeof property==="object")property=property.ptr;_emscripten_bind_PropertyFunctionGenerator_STATIC_GenerateObjectGetterAndSetter_4(self,project,extension,eventsBasedObject,property)};PropertyFunctionGenerator.prototype["STATIC_CanGenerateGetterAndSetter"]=PropertyFunctionGenerator.prototype.STATIC_CanGenerateGetterAndSetter=function(eventsBasedBehavior,property){var self=this.ptr;if(eventsBasedBehavior&&typeof eventsBasedBehavior==="object")eventsBasedBehavior=eventsBasedBehavior.ptr;if(property&&typeof property==="object")property=property.ptr;return!!_emscripten_bind_PropertyFunctionGenerator_STATIC_CanGenerateGetterAndSetter_2(self,eventsBasedBehavior,property)};PropertyFunctionGenerator.prototype["STATIC_GenerateConditionSkeleton"]=PropertyFunctionGenerator.prototype.STATIC_GenerateConditionSkeleton=function(project,eventFunction){var self=this.ptr;if(project&&typeof project==="object")project=project.ptr;if(eventFunction&&typeof eventFunction==="object")eventFunction=eventFunction.ptr;_emscripten_bind_PropertyFunctionGenerator_STATIC_GenerateConditionSkeleton_2(self,project,eventFunction)};PropertyFunctionGenerator.prototype["__destroy__"]=PropertyFunctionGenerator.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_PropertyFunctionGenerator___destroy___0(self)};function UsedExtensionsResult(){throw"cannot construct a UsedExtensionsResult, no constructor in IDL"}UsedExtensionsResult.prototype=Object.create(WrapperObject.prototype);UsedExtensionsResult.prototype.constructor=UsedExtensionsResult;UsedExtensionsResult.prototype.__class__=UsedExtensionsResult;UsedExtensionsResult.__cache__={};Module["UsedExtensionsResult"]=UsedExtensionsResult;UsedExtensionsResult.prototype["GetUsedExtensions"]=UsedExtensionsResult.prototype.GetUsedExtensions=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_UsedExtensionsResult_GetUsedExtensions_0(self),SetString)};UsedExtensionsResult.prototype["__destroy__"]=UsedExtensionsResult.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_UsedExtensionsResult___destroy___0(self)};function UsedExtensionsFinder(){throw"cannot construct a UsedExtensionsFinder, no constructor in IDL"}UsedExtensionsFinder.prototype=Object.create(WrapperObject.prototype);UsedExtensionsFinder.prototype.constructor=UsedExtensionsFinder;UsedExtensionsFinder.prototype.__class__=UsedExtensionsFinder;UsedExtensionsFinder.__cache__={};Module["UsedExtensionsFinder"]=UsedExtensionsFinder;UsedExtensionsFinder.prototype["STATIC_ScanProject"]=UsedExtensionsFinder.prototype.STATIC_ScanProject=function(project){var self=this.ptr;if(project&&typeof project==="object")project=project.ptr;return wrapPointer(_emscripten_bind_UsedExtensionsFinder_STATIC_ScanProject_1(self,project),UsedExtensionsResult)};UsedExtensionsFinder.prototype["STATIC_ScanEventsFunctionsExtension"]=UsedExtensionsFinder.prototype.STATIC_ScanEventsFunctionsExtension=function(project,eventsFunctionsExtension){var self=this.ptr;if(project&&typeof project==="object")project=project.ptr;if(eventsFunctionsExtension&&typeof eventsFunctionsExtension==="object")eventsFunctionsExtension=eventsFunctionsExtension.ptr;return wrapPointer(_emscripten_bind_UsedExtensionsFinder_STATIC_ScanEventsFunctionsExtension_2(self,project,eventsFunctionsExtension),UsedExtensionsResult)};UsedExtensionsFinder.prototype["STATIC_FindExtensionsDependentOn"]=UsedExtensionsFinder.prototype.STATIC_FindExtensionsDependentOn=function(project,eventsFunctionsExtension){var self=this.ptr;if(project&&typeof project==="object")project=project.ptr;if(eventsFunctionsExtension&&typeof eventsFunctionsExtension==="object")eventsFunctionsExtension=eventsFunctionsExtension.ptr;return wrapPointer(_emscripten_bind_UsedExtensionsFinder_STATIC_FindExtensionsDependentOn_2(self,project,eventsFunctionsExtension),VectorString)};UsedExtensionsFinder.prototype["__destroy__"]=UsedExtensionsFinder.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_UsedExtensionsFinder___destroy___0(self)};function UsedObjectTypeFinder(){throw"cannot construct a UsedObjectTypeFinder, no constructor in IDL"}UsedObjectTypeFinder.prototype=Object.create(WrapperObject.prototype);UsedObjectTypeFinder.prototype.constructor=UsedObjectTypeFinder;UsedObjectTypeFinder.prototype.__class__=UsedObjectTypeFinder;UsedObjectTypeFinder.__cache__={};Module["UsedObjectTypeFinder"]=UsedObjectTypeFinder;UsedObjectTypeFinder.prototype["STATIC_ScanProject"]=UsedObjectTypeFinder.prototype.STATIC_ScanProject=function(project,objectType){var self=this.ptr;ensureCache.prepare();if(project&&typeof project==="object")project=project.ptr;if(objectType&&typeof objectType==="object")objectType=objectType.ptr;else objectType=ensureString(objectType);return!!_emscripten_bind_UsedObjectTypeFinder_STATIC_ScanProject_2(self,project,objectType)};UsedObjectTypeFinder.prototype["__destroy__"]=UsedObjectTypeFinder.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_UsedObjectTypeFinder___destroy___0(self)};function ExampleExtensionUsagesFinder(){throw"cannot construct a ExampleExtensionUsagesFinder, no constructor in IDL"}ExampleExtensionUsagesFinder.prototype=Object.create(WrapperObject.prototype);ExampleExtensionUsagesFinder.prototype.constructor=ExampleExtensionUsagesFinder;ExampleExtensionUsagesFinder.prototype.__class__=ExampleExtensionUsagesFinder;ExampleExtensionUsagesFinder.__cache__={};Module["ExampleExtensionUsagesFinder"]=ExampleExtensionUsagesFinder;ExampleExtensionUsagesFinder.prototype["STATIC_GetUsedExtensions"]=ExampleExtensionUsagesFinder.prototype.STATIC_GetUsedExtensions=function(project){var self=this.ptr;if(project&&typeof project==="object")project=project.ptr;return wrapPointer(_emscripten_bind_ExampleExtensionUsagesFinder_STATIC_GetUsedExtensions_1(self,project),SetString)};ExampleExtensionUsagesFinder.prototype["__destroy__"]=ExampleExtensionUsagesFinder.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_ExampleExtensionUsagesFinder___destroy___0(self)};function InstructionsCountEvaluator(){throw"cannot construct a InstructionsCountEvaluator, no constructor in IDL"}InstructionsCountEvaluator.prototype=Object.create(WrapperObject.prototype);InstructionsCountEvaluator.prototype.constructor=InstructionsCountEvaluator;InstructionsCountEvaluator.prototype.__class__=InstructionsCountEvaluator;InstructionsCountEvaluator.__cache__={};Module["InstructionsCountEvaluator"]=InstructionsCountEvaluator;InstructionsCountEvaluator.prototype["STATIC_ScanProject"]=InstructionsCountEvaluator.prototype.STATIC_ScanProject=function(project){var self=this.ptr;if(project&&typeof project==="object")project=project.ptr;return _emscripten_bind_InstructionsCountEvaluator_STATIC_ScanProject_1(self,project)};InstructionsCountEvaluator.prototype["__destroy__"]=InstructionsCountEvaluator.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_InstructionsCountEvaluator___destroy___0(self)};function ExtensionAndBehaviorMetadata(){throw"cannot construct a ExtensionAndBehaviorMetadata, no constructor in IDL"}ExtensionAndBehaviorMetadata.prototype=Object.create(WrapperObject.prototype);ExtensionAndBehaviorMetadata.prototype.constructor=ExtensionAndBehaviorMetadata;ExtensionAndBehaviorMetadata.prototype.__class__=ExtensionAndBehaviorMetadata;ExtensionAndBehaviorMetadata.__cache__={};Module["ExtensionAndBehaviorMetadata"]=ExtensionAndBehaviorMetadata;ExtensionAndBehaviorMetadata.prototype["GetExtension"]=ExtensionAndBehaviorMetadata.prototype.GetExtension=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_ExtensionAndBehaviorMetadata_GetExtension_0(self),PlatformExtension)};ExtensionAndBehaviorMetadata.prototype["GetMetadata"]=ExtensionAndBehaviorMetadata.prototype.GetMetadata=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_ExtensionAndBehaviorMetadata_GetMetadata_0(self),BehaviorMetadata)};ExtensionAndBehaviorMetadata.prototype["__destroy__"]=ExtensionAndBehaviorMetadata.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_ExtensionAndBehaviorMetadata___destroy___0(self)};function ExtensionAndObjectMetadata(){throw"cannot construct a ExtensionAndObjectMetadata, no constructor in IDL"}ExtensionAndObjectMetadata.prototype=Object.create(WrapperObject.prototype);ExtensionAndObjectMetadata.prototype.constructor=ExtensionAndObjectMetadata;ExtensionAndObjectMetadata.prototype.__class__=ExtensionAndObjectMetadata;ExtensionAndObjectMetadata.__cache__={};Module["ExtensionAndObjectMetadata"]=ExtensionAndObjectMetadata;ExtensionAndObjectMetadata.prototype["GetExtension"]=ExtensionAndObjectMetadata.prototype.GetExtension=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_ExtensionAndObjectMetadata_GetExtension_0(self),PlatformExtension)};ExtensionAndObjectMetadata.prototype["GetMetadata"]=ExtensionAndObjectMetadata.prototype.GetMetadata=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_ExtensionAndObjectMetadata_GetMetadata_0(self),ObjectMetadata)};ExtensionAndObjectMetadata.prototype["__destroy__"]=ExtensionAndObjectMetadata.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_ExtensionAndObjectMetadata___destroy___0(self)};function ExtensionAndEffectMetadata(){throw"cannot construct a ExtensionAndEffectMetadata, no constructor in IDL"}ExtensionAndEffectMetadata.prototype=Object.create(WrapperObject.prototype);ExtensionAndEffectMetadata.prototype.constructor=ExtensionAndEffectMetadata;ExtensionAndEffectMetadata.prototype.__class__=ExtensionAndEffectMetadata;ExtensionAndEffectMetadata.__cache__={};Module["ExtensionAndEffectMetadata"]=ExtensionAndEffectMetadata;ExtensionAndEffectMetadata.prototype["GetExtension"]=ExtensionAndEffectMetadata.prototype.GetExtension=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_ExtensionAndEffectMetadata_GetExtension_0(self),PlatformExtension)};ExtensionAndEffectMetadata.prototype["GetMetadata"]=ExtensionAndEffectMetadata.prototype.GetMetadata=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_ExtensionAndEffectMetadata_GetMetadata_0(self),EffectMetadata)};ExtensionAndEffectMetadata.prototype["__destroy__"]=ExtensionAndEffectMetadata.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_ExtensionAndEffectMetadata___destroy___0(self)};function ExtensionAndInstructionMetadata(){throw"cannot construct a ExtensionAndInstructionMetadata, no constructor in IDL"}ExtensionAndInstructionMetadata.prototype=Object.create(WrapperObject.prototype);ExtensionAndInstructionMetadata.prototype.constructor=ExtensionAndInstructionMetadata;ExtensionAndInstructionMetadata.prototype.__class__=ExtensionAndInstructionMetadata;ExtensionAndInstructionMetadata.__cache__={};Module["ExtensionAndInstructionMetadata"]=ExtensionAndInstructionMetadata;ExtensionAndInstructionMetadata.prototype["GetExtension"]=ExtensionAndInstructionMetadata.prototype.GetExtension=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_ExtensionAndInstructionMetadata_GetExtension_0(self),PlatformExtension)};ExtensionAndInstructionMetadata.prototype["GetMetadata"]=ExtensionAndInstructionMetadata.prototype.GetMetadata=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_ExtensionAndInstructionMetadata_GetMetadata_0(self),InstructionMetadata)};ExtensionAndInstructionMetadata.prototype["__destroy__"]=ExtensionAndInstructionMetadata.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_ExtensionAndInstructionMetadata___destroy___0(self)};function ExtensionAndExpressionMetadata(){throw"cannot construct a ExtensionAndExpressionMetadata, no constructor in IDL"}ExtensionAndExpressionMetadata.prototype=Object.create(WrapperObject.prototype);ExtensionAndExpressionMetadata.prototype.constructor=ExtensionAndExpressionMetadata;ExtensionAndExpressionMetadata.prototype.__class__=ExtensionAndExpressionMetadata;ExtensionAndExpressionMetadata.__cache__={};Module["ExtensionAndExpressionMetadata"]=ExtensionAndExpressionMetadata;ExtensionAndExpressionMetadata.prototype["GetExtension"]=ExtensionAndExpressionMetadata.prototype.GetExtension=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_ExtensionAndExpressionMetadata_GetExtension_0(self),PlatformExtension)};ExtensionAndExpressionMetadata.prototype["GetMetadata"]=ExtensionAndExpressionMetadata.prototype.GetMetadata=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_ExtensionAndExpressionMetadata_GetMetadata_0(self),ExpressionMetadata)};ExtensionAndExpressionMetadata.prototype["__destroy__"]=ExtensionAndExpressionMetadata.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_ExtensionAndExpressionMetadata___destroy___0(self)};function MetadataProvider(){throw"cannot construct a MetadataProvider, no constructor in IDL"}MetadataProvider.prototype=Object.create(WrapperObject.prototype);MetadataProvider.prototype.constructor=MetadataProvider;MetadataProvider.prototype.__class__=MetadataProvider;MetadataProvider.__cache__={};Module["MetadataProvider"]=MetadataProvider;MetadataProvider.prototype["STATIC_GetExtensionAndBehaviorMetadata"]=MetadataProvider.prototype.STATIC_GetExtensionAndBehaviorMetadata=function(p,type){var self=this.ptr;ensureCache.prepare();if(p&&typeof p==="object")p=p.ptr;if(type&&typeof type==="object")type=type.ptr;else type=ensureString(type);return wrapPointer(_emscripten_bind_MetadataProvider_STATIC_GetExtensionAndBehaviorMetadata_2(self,p,type),ExtensionAndBehaviorMetadata)};MetadataProvider.prototype["STATIC_GetExtensionAndObjectMetadata"]=MetadataProvider.prototype.STATIC_GetExtensionAndObjectMetadata=function(p,type){var self=this.ptr;ensureCache.prepare();if(p&&typeof p==="object")p=p.ptr;if(type&&typeof type==="object")type=type.ptr;else type=ensureString(type);return wrapPointer(_emscripten_bind_MetadataProvider_STATIC_GetExtensionAndObjectMetadata_2(self,p,type),ExtensionAndObjectMetadata)};MetadataProvider.prototype["STATIC_GetExtensionAndEffectMetadata"]=MetadataProvider.prototype.STATIC_GetExtensionAndEffectMetadata=function(p,type){var self=this.ptr;ensureCache.prepare();if(p&&typeof p==="object")p=p.ptr;if(type&&typeof type==="object")type=type.ptr;else type=ensureString(type);return wrapPointer(_emscripten_bind_MetadataProvider_STATIC_GetExtensionAndEffectMetadata_2(self,p,type),ExtensionAndEffectMetadata)};MetadataProvider.prototype["STATIC_GetExtensionAndActionMetadata"]=MetadataProvider.prototype.STATIC_GetExtensionAndActionMetadata=function(p,type){var self=this.ptr;ensureCache.prepare();if(p&&typeof p==="object")p=p.ptr;if(type&&typeof type==="object")type=type.ptr;else type=ensureString(type);return wrapPointer(_emscripten_bind_MetadataProvider_STATIC_GetExtensionAndActionMetadata_2(self,p,type),ExtensionAndInstructionMetadata)};MetadataProvider.prototype["STATIC_GetExtensionAndConditionMetadata"]=MetadataProvider.prototype.STATIC_GetExtensionAndConditionMetadata=function(p,type){var self=this.ptr;ensureCache.prepare();if(p&&typeof p==="object")p=p.ptr;if(type&&typeof type==="object")type=type.ptr;else type=ensureString(type);return wrapPointer(_emscripten_bind_MetadataProvider_STATIC_GetExtensionAndConditionMetadata_2(self,p,type),ExtensionAndInstructionMetadata)};MetadataProvider.prototype["STATIC_GetExtensionAndExpressionMetadata"]=MetadataProvider.prototype.STATIC_GetExtensionAndExpressionMetadata=function(p,type){var self=this.ptr;ensureCache.prepare();if(p&&typeof p==="object")p=p.ptr;if(type&&typeof type==="object")type=type.ptr;else type=ensureString(type);return wrapPointer(_emscripten_bind_MetadataProvider_STATIC_GetExtensionAndExpressionMetadata_2(self,p,type),ExtensionAndExpressionMetadata)};MetadataProvider.prototype["STATIC_GetExtensionAndObjectExpressionMetadata"]=MetadataProvider.prototype.STATIC_GetExtensionAndObjectExpressionMetadata=function(p,objectType,type){var self=this.ptr;ensureCache.prepare();if(p&&typeof p==="object")p=p.ptr;if(objectType&&typeof objectType==="object")objectType=objectType.ptr;else objectType=ensureString(objectType);if(type&&typeof type==="object")type=type.ptr;else type=ensureString(type);return wrapPointer(_emscripten_bind_MetadataProvider_STATIC_GetExtensionAndObjectExpressionMetadata_3(self,p,objectType,type),ExtensionAndExpressionMetadata)};MetadataProvider.prototype["STATIC_GetExtensionAndBehaviorExpressionMetadata"]=MetadataProvider.prototype.STATIC_GetExtensionAndBehaviorExpressionMetadata=function(p,autoType,type){var self=this.ptr;ensureCache.prepare();if(p&&typeof p==="object")p=p.ptr;if(autoType&&typeof autoType==="object")autoType=autoType.ptr;else autoType=ensureString(autoType);if(type&&typeof type==="object")type=type.ptr;else type=ensureString(type);return wrapPointer(_emscripten_bind_MetadataProvider_STATIC_GetExtensionAndBehaviorExpressionMetadata_3(self,p,autoType,type),ExtensionAndExpressionMetadata)};MetadataProvider.prototype["STATIC_GetExtensionAndStrExpressionMetadata"]=MetadataProvider.prototype.STATIC_GetExtensionAndStrExpressionMetadata=function(p,type){var self=this.ptr;ensureCache.prepare();if(p&&typeof p==="object")p=p.ptr;if(type&&typeof type==="object")type=type.ptr;else type=ensureString(type);return wrapPointer(_emscripten_bind_MetadataProvider_STATIC_GetExtensionAndStrExpressionMetadata_2(self,p,type),ExtensionAndExpressionMetadata)};MetadataProvider.prototype["STATIC_GetExtensionAndObjectStrExpressionMetadata"]=MetadataProvider.prototype.STATIC_GetExtensionAndObjectStrExpressionMetadata=function(p,objectType,type){var self=this.ptr;ensureCache.prepare();if(p&&typeof p==="object")p=p.ptr;if(objectType&&typeof objectType==="object")objectType=objectType.ptr;else objectType=ensureString(objectType);if(type&&typeof type==="object")type=type.ptr;else type=ensureString(type);return wrapPointer(_emscripten_bind_MetadataProvider_STATIC_GetExtensionAndObjectStrExpressionMetadata_3(self,p,objectType,type),ExtensionAndExpressionMetadata)};MetadataProvider.prototype["STATIC_GetExtensionAndBehaviorStrExpressionMetadata"]=MetadataProvider.prototype.STATIC_GetExtensionAndBehaviorStrExpressionMetadata=function(p,autoType,type){var self=this.ptr;ensureCache.prepare();if(p&&typeof p==="object")p=p.ptr;if(autoType&&typeof autoType==="object")autoType=autoType.ptr;else autoType=ensureString(autoType);if(type&&typeof type==="object")type=type.ptr;else type=ensureString(type);return wrapPointer(_emscripten_bind_MetadataProvider_STATIC_GetExtensionAndBehaviorStrExpressionMetadata_3(self,p,autoType,type),ExtensionAndExpressionMetadata)};MetadataProvider.prototype["STATIC_GetBehaviorMetadata"]=MetadataProvider.prototype.STATIC_GetBehaviorMetadata=function(p,type){var self=this.ptr;ensureCache.prepare();if(p&&typeof p==="object")p=p.ptr;if(type&&typeof type==="object")type=type.ptr;else type=ensureString(type);return wrapPointer(_emscripten_bind_MetadataProvider_STATIC_GetBehaviorMetadata_2(self,p,type),BehaviorMetadata)};MetadataProvider.prototype["STATIC_GetObjectMetadata"]=MetadataProvider.prototype.STATIC_GetObjectMetadata=function(p,type){var self=this.ptr;ensureCache.prepare();if(p&&typeof p==="object")p=p.ptr;if(type&&typeof type==="object")type=type.ptr;else type=ensureString(type);return wrapPointer(_emscripten_bind_MetadataProvider_STATIC_GetObjectMetadata_2(self,p,type),ObjectMetadata)};MetadataProvider.prototype["STATIC_GetEffectMetadata"]=MetadataProvider.prototype.STATIC_GetEffectMetadata=function(p,type){var self=this.ptr;ensureCache.prepare();if(p&&typeof p==="object")p=p.ptr;if(type&&typeof type==="object")type=type.ptr;else type=ensureString(type);return wrapPointer(_emscripten_bind_MetadataProvider_STATIC_GetEffectMetadata_2(self,p,type),EffectMetadata)};MetadataProvider.prototype["STATIC_GetActionMetadata"]=MetadataProvider.prototype.STATIC_GetActionMetadata=function(p,type){var self=this.ptr;ensureCache.prepare();if(p&&typeof p==="object")p=p.ptr;if(type&&typeof type==="object")type=type.ptr;else type=ensureString(type);return wrapPointer(_emscripten_bind_MetadataProvider_STATIC_GetActionMetadata_2(self,p,type),InstructionMetadata)};MetadataProvider.prototype["STATIC_GetConditionMetadata"]=MetadataProvider.prototype.STATIC_GetConditionMetadata=function(p,type){var self=this.ptr;ensureCache.prepare();if(p&&typeof p==="object")p=p.ptr;if(type&&typeof type==="object")type=type.ptr;else type=ensureString(type);return wrapPointer(_emscripten_bind_MetadataProvider_STATIC_GetConditionMetadata_2(self,p,type),InstructionMetadata)};MetadataProvider.prototype["STATIC_GetExpressionMetadata"]=MetadataProvider.prototype.STATIC_GetExpressionMetadata=function(p,type){var self=this.ptr;ensureCache.prepare();if(p&&typeof p==="object")p=p.ptr;if(type&&typeof type==="object")type=type.ptr;else type=ensureString(type);return wrapPointer(_emscripten_bind_MetadataProvider_STATIC_GetExpressionMetadata_2(self,p,type),ExpressionMetadata)};MetadataProvider.prototype["STATIC_GetObjectExpressionMetadata"]=MetadataProvider.prototype.STATIC_GetObjectExpressionMetadata=function(p,objectType,type){var self=this.ptr;ensureCache.prepare();if(p&&typeof p==="object")p=p.ptr;if(objectType&&typeof objectType==="object")objectType=objectType.ptr;else objectType=ensureString(objectType);if(type&&typeof type==="object")type=type.ptr;else type=ensureString(type);return wrapPointer(_emscripten_bind_MetadataProvider_STATIC_GetObjectExpressionMetadata_3(self,p,objectType,type),ExpressionMetadata)};MetadataProvider.prototype["STATIC_GetBehaviorExpressionMetadata"]=MetadataProvider.prototype.STATIC_GetBehaviorExpressionMetadata=function(p,autoType,type){var self=this.ptr;ensureCache.prepare();if(p&&typeof p==="object")p=p.ptr;if(autoType&&typeof autoType==="object")autoType=autoType.ptr;else autoType=ensureString(autoType);if(type&&typeof type==="object")type=type.ptr;else type=ensureString(type);return wrapPointer(_emscripten_bind_MetadataProvider_STATIC_GetBehaviorExpressionMetadata_3(self,p,autoType,type),ExpressionMetadata)};MetadataProvider.prototype["STATIC_GetStrExpressionMetadata"]=MetadataProvider.prototype.STATIC_GetStrExpressionMetadata=function(p,type){var self=this.ptr;ensureCache.prepare();if(p&&typeof p==="object")p=p.ptr;if(type&&typeof type==="object")type=type.ptr;else type=ensureString(type);return wrapPointer(_emscripten_bind_MetadataProvider_STATIC_GetStrExpressionMetadata_2(self,p,type),ExpressionMetadata)};MetadataProvider.prototype["STATIC_GetObjectStrExpressionMetadata"]=MetadataProvider.prototype.STATIC_GetObjectStrExpressionMetadata=function(p,objectType,type){var self=this.ptr;ensureCache.prepare();if(p&&typeof p==="object")p=p.ptr;if(objectType&&typeof objectType==="object")objectType=objectType.ptr;else objectType=ensureString(objectType);if(type&&typeof type==="object")type=type.ptr;else type=ensureString(type);return wrapPointer(_emscripten_bind_MetadataProvider_STATIC_GetObjectStrExpressionMetadata_3(self,p,objectType,type),ExpressionMetadata)};MetadataProvider.prototype["STATIC_GetBehaviorStrExpressionMetadata"]=MetadataProvider.prototype.STATIC_GetBehaviorStrExpressionMetadata=function(p,autoType,type){var self=this.ptr;ensureCache.prepare();if(p&&typeof p==="object")p=p.ptr;if(autoType&&typeof autoType==="object")autoType=autoType.ptr;else autoType=ensureString(autoType);if(type&&typeof type==="object")type=type.ptr;else type=ensureString(type);return wrapPointer(_emscripten_bind_MetadataProvider_STATIC_GetBehaviorStrExpressionMetadata_3(self,p,autoType,type),ExpressionMetadata)};MetadataProvider.prototype["STATIC_IsBadExpressionMetadata"]=MetadataProvider.prototype.STATIC_IsBadExpressionMetadata=function(metadata){var self=this.ptr;if(metadata&&typeof metadata==="object")metadata=metadata.ptr;return!!_emscripten_bind_MetadataProvider_STATIC_IsBadExpressionMetadata_1(self,metadata)};MetadataProvider.prototype["STATIC_IsBadInstructionMetadata"]=MetadataProvider.prototype.STATIC_IsBadInstructionMetadata=function(metadata){var self=this.ptr;if(metadata&&typeof metadata==="object")metadata=metadata.ptr;return!!_emscripten_bind_MetadataProvider_STATIC_IsBadInstructionMetadata_1(self,metadata)};MetadataProvider.prototype["STATIC_IsBadBehaviorMetadata"]=MetadataProvider.prototype.STATIC_IsBadBehaviorMetadata=function(metadata){var self=this.ptr;if(metadata&&typeof metadata==="object")metadata=metadata.ptr;return!!_emscripten_bind_MetadataProvider_STATIC_IsBadBehaviorMetadata_1(self,metadata)};MetadataProvider.prototype["STATIC_IsBadObjectMetadata"]=MetadataProvider.prototype.STATIC_IsBadObjectMetadata=function(metadata){var self=this.ptr;if(metadata&&typeof metadata==="object")metadata=metadata.ptr;return!!_emscripten_bind_MetadataProvider_STATIC_IsBadObjectMetadata_1(self,metadata)};MetadataProvider.prototype["STATIC_IsBadEffectMetadata"]=MetadataProvider.prototype.STATIC_IsBadEffectMetadata=function(metadata){var self=this.ptr;if(metadata&&typeof metadata==="object")metadata=metadata.ptr;return!!_emscripten_bind_MetadataProvider_STATIC_IsBadEffectMetadata_1(self,metadata)};MetadataProvider.prototype["__destroy__"]=MetadataProvider.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_MetadataProvider___destroy___0(self)};function ProjectDiagnostic(){throw"cannot construct a ProjectDiagnostic, no constructor in IDL"}ProjectDiagnostic.prototype=Object.create(WrapperObject.prototype);ProjectDiagnostic.prototype.constructor=ProjectDiagnostic;ProjectDiagnostic.prototype.__class__=ProjectDiagnostic;ProjectDiagnostic.__cache__={};Module["ProjectDiagnostic"]=ProjectDiagnostic;ProjectDiagnostic.prototype["GetType"]=ProjectDiagnostic.prototype.GetType=function(){var self=this.ptr;return _emscripten_bind_ProjectDiagnostic_GetType_0(self)};ProjectDiagnostic.prototype["GetMessage"]=ProjectDiagnostic.prototype.GetMessage=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_ProjectDiagnostic_GetMessage_0(self))};ProjectDiagnostic.prototype["GetActualValue"]=ProjectDiagnostic.prototype.GetActualValue=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_ProjectDiagnostic_GetActualValue_0(self))};ProjectDiagnostic.prototype["GetExpectedValue"]=ProjectDiagnostic.prototype.GetExpectedValue=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_ProjectDiagnostic_GetExpectedValue_0(self))};ProjectDiagnostic.prototype["GetObjectName"]=ProjectDiagnostic.prototype.GetObjectName=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_ProjectDiagnostic_GetObjectName_0(self))};ProjectDiagnostic.prototype["__destroy__"]=ProjectDiagnostic.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_ProjectDiagnostic___destroy___0(self)};function DiagnosticReport(){this.ptr=_emscripten_bind_DiagnosticReport_DiagnosticReport_0();getCache(DiagnosticReport)[this.ptr]=this}DiagnosticReport.prototype=Object.create(WrapperObject.prototype);DiagnosticReport.prototype.constructor=DiagnosticReport;DiagnosticReport.prototype.__class__=DiagnosticReport;DiagnosticReport.__cache__={};Module["DiagnosticReport"]=DiagnosticReport;DiagnosticReport.prototype["Get"]=DiagnosticReport.prototype.Get=function(index){var self=this.ptr;if(index&&typeof index==="object")index=index.ptr;return wrapPointer(_emscripten_bind_DiagnosticReport_Get_1(self,index),ProjectDiagnostic)};DiagnosticReport.prototype["Count"]=DiagnosticReport.prototype.Count=function(){var self=this.ptr;return _emscripten_bind_DiagnosticReport_Count_0(self)};DiagnosticReport.prototype["GetSceneName"]=DiagnosticReport.prototype.GetSceneName=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_DiagnosticReport_GetSceneName_0(self))};DiagnosticReport.prototype["__destroy__"]=DiagnosticReport.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_DiagnosticReport___destroy___0(self)};function WholeProjectDiagnosticReport(){throw"cannot construct a WholeProjectDiagnosticReport, no constructor in IDL"}WholeProjectDiagnosticReport.prototype=Object.create(WrapperObject.prototype);WholeProjectDiagnosticReport.prototype.constructor=WholeProjectDiagnosticReport;WholeProjectDiagnosticReport.prototype.__class__=WholeProjectDiagnosticReport;WholeProjectDiagnosticReport.__cache__={};Module["WholeProjectDiagnosticReport"]=WholeProjectDiagnosticReport;WholeProjectDiagnosticReport.prototype["Get"]=WholeProjectDiagnosticReport.prototype.Get=function(index){var self=this.ptr;if(index&&typeof index==="object")index=index.ptr;return wrapPointer(_emscripten_bind_WholeProjectDiagnosticReport_Get_1(self,index),DiagnosticReport)};WholeProjectDiagnosticReport.prototype["Count"]=WholeProjectDiagnosticReport.prototype.Count=function(){var self=this.ptr;return _emscripten_bind_WholeProjectDiagnosticReport_Count_0(self)};WholeProjectDiagnosticReport.prototype["HasAnyIssue"]=WholeProjectDiagnosticReport.prototype.HasAnyIssue=function(){var self=this.ptr;return!!_emscripten_bind_WholeProjectDiagnosticReport_HasAnyIssue_0(self)};WholeProjectDiagnosticReport.prototype["__destroy__"]=WholeProjectDiagnosticReport.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_WholeProjectDiagnosticReport___destroy___0(self)};function ExpressionParserError(){throw"cannot construct a ExpressionParserError, no constructor in IDL"}ExpressionParserError.prototype=Object.create(WrapperObject.prototype);ExpressionParserError.prototype.constructor=ExpressionParserError;ExpressionParserError.prototype.__class__=ExpressionParserError;ExpressionParserError.__cache__={};Module["ExpressionParserError"]=ExpressionParserError;ExpressionParserError.prototype["GetType"]=ExpressionParserError.prototype.GetType=function(){var self=this.ptr;return _emscripten_bind_ExpressionParserError_GetType_0(self)};ExpressionParserError.prototype["GetMessage"]=ExpressionParserError.prototype.GetMessage=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_ExpressionParserError_GetMessage_0(self))};ExpressionParserError.prototype["GetStartPosition"]=ExpressionParserError.prototype.GetStartPosition=function(){var self=this.ptr;return _emscripten_bind_ExpressionParserError_GetStartPosition_0(self)};ExpressionParserError.prototype["GetEndPosition"]=ExpressionParserError.prototype.GetEndPosition=function(){var self=this.ptr;return _emscripten_bind_ExpressionParserError_GetEndPosition_0(self)};ExpressionParserError.prototype["__destroy__"]=ExpressionParserError.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_ExpressionParserError___destroy___0(self)};function VectorExpressionParserError(){throw"cannot construct a VectorExpressionParserError, no constructor in IDL"}VectorExpressionParserError.prototype=Object.create(WrapperObject.prototype);VectorExpressionParserError.prototype.constructor=VectorExpressionParserError;VectorExpressionParserError.prototype.__class__=VectorExpressionParserError;VectorExpressionParserError.__cache__={};Module["VectorExpressionParserError"]=VectorExpressionParserError;VectorExpressionParserError.prototype["size"]=VectorExpressionParserError.prototype.size=function(){var self=this.ptr;return _emscripten_bind_VectorExpressionParserError_size_0(self)};VectorExpressionParserError.prototype["at"]=VectorExpressionParserError.prototype.at=function(index){var self=this.ptr;if(index&&typeof index==="object")index=index.ptr;return wrapPointer(_emscripten_bind_VectorExpressionParserError_at_1(self,index),ExpressionParserError)};VectorExpressionParserError.prototype["__destroy__"]=VectorExpressionParserError.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_VectorExpressionParserError___destroy___0(self)};function ExpressionParser2NodeWorker(){throw"cannot construct a ExpressionParser2NodeWorker, no constructor in IDL"}ExpressionParser2NodeWorker.prototype=Object.create(WrapperObject.prototype);ExpressionParser2NodeWorker.prototype.constructor=ExpressionParser2NodeWorker;ExpressionParser2NodeWorker.prototype.__class__=ExpressionParser2NodeWorker;ExpressionParser2NodeWorker.__cache__={};Module["ExpressionParser2NodeWorker"]=ExpressionParser2NodeWorker;ExpressionParser2NodeWorker.prototype["__destroy__"]=ExpressionParser2NodeWorker.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_ExpressionParser2NodeWorker___destroy___0(self)};function ExpressionValidator(platform,projectScopedContainers,rootType,extraInfo){ensureCache.prepare();if(platform&&typeof platform==="object")platform=platform.ptr;if(projectScopedContainers&&typeof projectScopedContainers==="object")projectScopedContainers=projectScopedContainers.ptr;if(rootType&&typeof rootType==="object")rootType=rootType.ptr;else rootType=ensureString(rootType);if(extraInfo&&typeof extraInfo==="object")extraInfo=extraInfo.ptr;else extraInfo=ensureString(extraInfo);this.ptr=_emscripten_bind_ExpressionValidator_ExpressionValidator_4(platform,projectScopedContainers,rootType,extraInfo);getCache(ExpressionValidator)[this.ptr]=this}ExpressionValidator.prototype=Object.create(WrapperObject.prototype);ExpressionValidator.prototype.constructor=ExpressionValidator;ExpressionValidator.prototype.__class__=ExpressionValidator;ExpressionValidator.__cache__={};Module["ExpressionValidator"]=ExpressionValidator;ExpressionValidator.prototype["GetAllErrors"]=ExpressionValidator.prototype.GetAllErrors=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_ExpressionValidator_GetAllErrors_0(self),VectorExpressionParserError)};ExpressionValidator.prototype["GetFatalErrors"]=ExpressionValidator.prototype.GetFatalErrors=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_ExpressionValidator_GetFatalErrors_0(self),VectorExpressionParserError)};ExpressionValidator.prototype["GetDeprecationWarnings"]=ExpressionValidator.prototype.GetDeprecationWarnings=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_ExpressionValidator_GetDeprecationWarnings_0(self),VectorExpressionParserError)};ExpressionValidator.prototype["__destroy__"]=ExpressionValidator.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_ExpressionValidator___destroy___0(self)};function ExpressionCompletionDescription(){throw"cannot construct a ExpressionCompletionDescription, no constructor in IDL"}ExpressionCompletionDescription.prototype=Object.create(WrapperObject.prototype);ExpressionCompletionDescription.prototype.constructor=ExpressionCompletionDescription;ExpressionCompletionDescription.prototype.__class__=ExpressionCompletionDescription;ExpressionCompletionDescription.__cache__={};Module["ExpressionCompletionDescription"]=ExpressionCompletionDescription;ExpressionCompletionDescription.prototype["GetCompletionKind"]=ExpressionCompletionDescription.prototype.GetCompletionKind=function(){var self=this.ptr;return _emscripten_bind_ExpressionCompletionDescription_GetCompletionKind_0(self)};ExpressionCompletionDescription.prototype["GetType"]=ExpressionCompletionDescription.prototype.GetType=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_ExpressionCompletionDescription_GetType_0(self))};ExpressionCompletionDescription.prototype["GetVariableType"]=ExpressionCompletionDescription.prototype.GetVariableType=function(){var self=this.ptr;return _emscripten_bind_ExpressionCompletionDescription_GetVariableType_0(self)};ExpressionCompletionDescription.prototype["GetVariableScope"]=ExpressionCompletionDescription.prototype.GetVariableScope=function(){var self=this.ptr;return _emscripten_bind_ExpressionCompletionDescription_GetVariableScope_0(self)};ExpressionCompletionDescription.prototype["GetPrefix"]=ExpressionCompletionDescription.prototype.GetPrefix=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_ExpressionCompletionDescription_GetPrefix_0(self))};ExpressionCompletionDescription.prototype["GetCompletion"]=ExpressionCompletionDescription.prototype.GetCompletion=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_ExpressionCompletionDescription_GetCompletion_0(self))};ExpressionCompletionDescription.prototype["GetObjectName"]=ExpressionCompletionDescription.prototype.GetObjectName=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_ExpressionCompletionDescription_GetObjectName_0(self))};ExpressionCompletionDescription.prototype["GetBehaviorName"]=ExpressionCompletionDescription.prototype.GetBehaviorName=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_ExpressionCompletionDescription_GetBehaviorName_0(self))};ExpressionCompletionDescription.prototype["IsExact"]=ExpressionCompletionDescription.prototype.IsExact=function(){var self=this.ptr;return!!_emscripten_bind_ExpressionCompletionDescription_IsExact_0(self)};ExpressionCompletionDescription.prototype["IsLastParameter"]=ExpressionCompletionDescription.prototype.IsLastParameter=function(){var self=this.ptr;return!!_emscripten_bind_ExpressionCompletionDescription_IsLastParameter_0(self)};ExpressionCompletionDescription.prototype["GetReplacementStartPosition"]=ExpressionCompletionDescription.prototype.GetReplacementStartPosition=function(){var self=this.ptr;return _emscripten_bind_ExpressionCompletionDescription_GetReplacementStartPosition_0(self)};ExpressionCompletionDescription.prototype["GetReplacementEndPosition"]=ExpressionCompletionDescription.prototype.GetReplacementEndPosition=function(){var self=this.ptr;return _emscripten_bind_ExpressionCompletionDescription_GetReplacementEndPosition_0(self)};ExpressionCompletionDescription.prototype["GetParameterMetadata"]=ExpressionCompletionDescription.prototype.GetParameterMetadata=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_ExpressionCompletionDescription_GetParameterMetadata_0(self),ParameterMetadata)};ExpressionCompletionDescription.prototype["HasObjectConfiguration"]=ExpressionCompletionDescription.prototype.HasObjectConfiguration=function(){var self=this.ptr;return!!_emscripten_bind_ExpressionCompletionDescription_HasObjectConfiguration_0(self)};ExpressionCompletionDescription.prototype["GetObjectConfiguration"]=ExpressionCompletionDescription.prototype.GetObjectConfiguration=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_ExpressionCompletionDescription_GetObjectConfiguration_0(self),ObjectConfiguration)};ExpressionCompletionDescription.prototype["ToString"]=ExpressionCompletionDescription.prototype.ToString=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_ExpressionCompletionDescription_ToString_0(self))};ExpressionCompletionDescription.prototype["__destroy__"]=ExpressionCompletionDescription.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_ExpressionCompletionDescription___destroy___0(self)};function VectorExpressionCompletionDescription(){throw"cannot construct a VectorExpressionCompletionDescription, no constructor in IDL"}VectorExpressionCompletionDescription.prototype=Object.create(WrapperObject.prototype);VectorExpressionCompletionDescription.prototype.constructor=VectorExpressionCompletionDescription;VectorExpressionCompletionDescription.prototype.__class__=VectorExpressionCompletionDescription;VectorExpressionCompletionDescription.__cache__={};Module["VectorExpressionCompletionDescription"]=VectorExpressionCompletionDescription;VectorExpressionCompletionDescription.prototype["size"]=VectorExpressionCompletionDescription.prototype.size=function(){var self=this.ptr;return _emscripten_bind_VectorExpressionCompletionDescription_size_0(self)};VectorExpressionCompletionDescription.prototype["at"]=VectorExpressionCompletionDescription.prototype.at=function(index){var self=this.ptr;if(index&&typeof index==="object")index=index.ptr;return wrapPointer(_emscripten_bind_VectorExpressionCompletionDescription_at_1(self,index),ExpressionCompletionDescription)};VectorExpressionCompletionDescription.prototype["__destroy__"]=VectorExpressionCompletionDescription.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_VectorExpressionCompletionDescription___destroy___0(self)};function ExpressionCompletionFinder(){throw"cannot construct a ExpressionCompletionFinder, no constructor in IDL"}ExpressionCompletionFinder.prototype=Object.create(WrapperObject.prototype);ExpressionCompletionFinder.prototype.constructor=ExpressionCompletionFinder;ExpressionCompletionFinder.prototype.__class__=ExpressionCompletionFinder;ExpressionCompletionFinder.__cache__={};Module["ExpressionCompletionFinder"]=ExpressionCompletionFinder;ExpressionCompletionFinder.prototype["STATIC_GetCompletionDescriptionsFor"]=ExpressionCompletionFinder.prototype.STATIC_GetCompletionDescriptionsFor=function(platform,projectScopedContainers,rootType,node,location){var self=this.ptr;ensureCache.prepare();if(platform&&typeof platform==="object")platform=platform.ptr;if(projectScopedContainers&&typeof projectScopedContainers==="object")projectScopedContainers=projectScopedContainers.ptr;if(rootType&&typeof rootType==="object")rootType=rootType.ptr;else rootType=ensureString(rootType);if(node&&typeof node==="object")node=node.ptr;if(location&&typeof location==="object")location=location.ptr;return wrapPointer(_emscripten_bind_ExpressionCompletionFinder_STATIC_GetCompletionDescriptionsFor_5(self,platform,projectScopedContainers,rootType,node,location),VectorExpressionCompletionDescription)};ExpressionCompletionFinder.prototype["GetCompletionDescriptions"]=ExpressionCompletionFinder.prototype.GetCompletionDescriptions=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_ExpressionCompletionFinder_GetCompletionDescriptions_0(self),VectorExpressionCompletionDescription)};ExpressionCompletionFinder.prototype["__destroy__"]=ExpressionCompletionFinder.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_ExpressionCompletionFinder___destroy___0(self)};function ExpressionNodeLocationFinder(){throw"cannot construct a ExpressionNodeLocationFinder, no constructor in IDL"}ExpressionNodeLocationFinder.prototype=Object.create(WrapperObject.prototype);ExpressionNodeLocationFinder.prototype.constructor=ExpressionNodeLocationFinder;ExpressionNodeLocationFinder.prototype.__class__=ExpressionNodeLocationFinder;ExpressionNodeLocationFinder.__cache__={};Module["ExpressionNodeLocationFinder"]=ExpressionNodeLocationFinder;ExpressionNodeLocationFinder.prototype["STATIC_GetNodeAtPosition"]=ExpressionNodeLocationFinder.prototype.STATIC_GetNodeAtPosition=function(node,searchedPosition){var self=this.ptr;if(node&&typeof node==="object")node=node.ptr;if(searchedPosition&&typeof searchedPosition==="object")searchedPosition=searchedPosition.ptr;return wrapPointer(_emscripten_bind_ExpressionNodeLocationFinder_STATIC_GetNodeAtPosition_2(self,node,searchedPosition),ExpressionNode)};ExpressionNodeLocationFinder.prototype["__destroy__"]=ExpressionNodeLocationFinder.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_ExpressionNodeLocationFinder___destroy___0(self)};function ExpressionTypeFinder(){throw"cannot construct a ExpressionTypeFinder, no constructor in IDL"}ExpressionTypeFinder.prototype=Object.create(WrapperObject.prototype);ExpressionTypeFinder.prototype.constructor=ExpressionTypeFinder;ExpressionTypeFinder.prototype.__class__=ExpressionTypeFinder;ExpressionTypeFinder.__cache__={};Module["ExpressionTypeFinder"]=ExpressionTypeFinder;ExpressionTypeFinder.prototype["STATIC_GetType"]=ExpressionTypeFinder.prototype.STATIC_GetType=function(platform,projectScopedContainers,rootType,node){var self=this.ptr;ensureCache.prepare();if(platform&&typeof platform==="object")platform=platform.ptr;if(projectScopedContainers&&typeof projectScopedContainers==="object")projectScopedContainers=projectScopedContainers.ptr;if(rootType&&typeof rootType==="object")rootType=rootType.ptr;else rootType=ensureString(rootType);if(node&&typeof node==="object")node=node.ptr;return UTF8ToString(_emscripten_bind_ExpressionTypeFinder_STATIC_GetType_4(self,platform,projectScopedContainers,rootType,node))};ExpressionTypeFinder.prototype["__destroy__"]=ExpressionTypeFinder.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_ExpressionTypeFinder___destroy___0(self)};function ExpressionNode(){throw"cannot construct a ExpressionNode, no constructor in IDL"}ExpressionNode.prototype=Object.create(WrapperObject.prototype);ExpressionNode.prototype.constructor=ExpressionNode;ExpressionNode.prototype.__class__=ExpressionNode;ExpressionNode.__cache__={};Module["ExpressionNode"]=ExpressionNode;ExpressionNode.prototype["Visit"]=ExpressionNode.prototype.Visit=function(worker){var self=this.ptr;if(worker&&typeof worker==="object")worker=worker.ptr;_emscripten_bind_ExpressionNode_Visit_1(self,worker)};ExpressionNode.prototype["__destroy__"]=ExpressionNode.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_ExpressionNode___destroy___0(self)};function UniquePtrExpressionNode(){throw"cannot construct a UniquePtrExpressionNode, no constructor in IDL"}UniquePtrExpressionNode.prototype=Object.create(WrapperObject.prototype);UniquePtrExpressionNode.prototype.constructor=UniquePtrExpressionNode;UniquePtrExpressionNode.prototype.__class__=UniquePtrExpressionNode;UniquePtrExpressionNode.__cache__={};Module["UniquePtrExpressionNode"]=UniquePtrExpressionNode;UniquePtrExpressionNode.prototype["get"]=UniquePtrExpressionNode.prototype.get=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_UniquePtrExpressionNode_get_0(self),ExpressionNode)};UniquePtrExpressionNode.prototype["__destroy__"]=UniquePtrExpressionNode.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_UniquePtrExpressionNode___destroy___0(self)};function ExpressionParser2(){this.ptr=_emscripten_bind_ExpressionParser2_ExpressionParser2_0();getCache(ExpressionParser2)[this.ptr]=this}ExpressionParser2.prototype=Object.create(WrapperObject.prototype);ExpressionParser2.prototype.constructor=ExpressionParser2;ExpressionParser2.prototype.__class__=ExpressionParser2;ExpressionParser2.__cache__={};Module["ExpressionParser2"]=ExpressionParser2;ExpressionParser2.prototype["ParseExpression"]=ExpressionParser2.prototype.ParseExpression=function(expression){var self=this.ptr;ensureCache.prepare();if(expression&&typeof expression==="object")expression=expression.ptr;else expression=ensureString(expression);return wrapPointer(_emscripten_bind_ExpressionParser2_ParseExpression_1(self,expression),UniquePtrExpressionNode)};ExpressionParser2.prototype["__destroy__"]=ExpressionParser2.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_ExpressionParser2___destroy___0(self)};function EventsFunction(){this.ptr=_emscripten_bind_EventsFunction_EventsFunction_0();getCache(EventsFunction)[this.ptr]=this}EventsFunction.prototype=Object.create(WrapperObject.prototype);EventsFunction.prototype.constructor=EventsFunction;EventsFunction.prototype.__class__=EventsFunction;EventsFunction.__cache__={};Module["EventsFunction"]=EventsFunction;EventsFunction.prototype["Clone"]=EventsFunction.prototype.Clone=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_EventsFunction_Clone_0(self),EventsFunction)};EventsFunction.prototype["SetDescription"]=EventsFunction.prototype.SetDescription=function(description){var self=this.ptr;ensureCache.prepare();if(description&&typeof description==="object")description=description.ptr;else description=ensureString(description);return wrapPointer(_emscripten_bind_EventsFunction_SetDescription_1(self,description),EventsFunction)};EventsFunction.prototype["GetDescription"]=EventsFunction.prototype.GetDescription=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_EventsFunction_GetDescription_0(self))};EventsFunction.prototype["SetName"]=EventsFunction.prototype.SetName=function(name){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);return wrapPointer(_emscripten_bind_EventsFunction_SetName_1(self,name),EventsFunction)};EventsFunction.prototype["GetName"]=EventsFunction.prototype.GetName=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_EventsFunction_GetName_0(self))};EventsFunction.prototype["SetFullName"]=EventsFunction.prototype.SetFullName=function(fullName){var self=this.ptr;ensureCache.prepare();if(fullName&&typeof fullName==="object")fullName=fullName.ptr;else fullName=ensureString(fullName);return wrapPointer(_emscripten_bind_EventsFunction_SetFullName_1(self,fullName),EventsFunction)};EventsFunction.prototype["GetFullName"]=EventsFunction.prototype.GetFullName=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_EventsFunction_GetFullName_0(self))};EventsFunction.prototype["SetSentence"]=EventsFunction.prototype.SetSentence=function(sentence){var self=this.ptr;ensureCache.prepare();if(sentence&&typeof sentence==="object")sentence=sentence.ptr;else sentence=ensureString(sentence);return wrapPointer(_emscripten_bind_EventsFunction_SetSentence_1(self,sentence),EventsFunction)};EventsFunction.prototype["GetSentence"]=EventsFunction.prototype.GetSentence=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_EventsFunction_GetSentence_0(self))};EventsFunction.prototype["SetGroup"]=EventsFunction.prototype.SetGroup=function(group){var self=this.ptr;ensureCache.prepare();if(group&&typeof group==="object")group=group.ptr;else group=ensureString(group);return wrapPointer(_emscripten_bind_EventsFunction_SetGroup_1(self,group),EventsFunction)};EventsFunction.prototype["GetGroup"]=EventsFunction.prototype.GetGroup=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_EventsFunction_GetGroup_0(self))};EventsFunction.prototype["SetGetterName"]=EventsFunction.prototype.SetGetterName=function(group){var self=this.ptr;ensureCache.prepare();if(group&&typeof group==="object")group=group.ptr;else group=ensureString(group);return wrapPointer(_emscripten_bind_EventsFunction_SetGetterName_1(self,group),EventsFunction)};EventsFunction.prototype["GetGetterName"]=EventsFunction.prototype.GetGetterName=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_EventsFunction_GetGetterName_0(self))};EventsFunction.prototype["SetExpressionType"]=EventsFunction.prototype.SetExpressionType=function(type){var self=this.ptr;if(type&&typeof type==="object")type=type.ptr;return wrapPointer(_emscripten_bind_EventsFunction_SetExpressionType_1(self,type),EventsFunction)};EventsFunction.prototype["GetExpressionType"]=EventsFunction.prototype.GetExpressionType=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_EventsFunction_GetExpressionType_0(self),ValueTypeMetadata)};EventsFunction.prototype["SetPrivate"]=EventsFunction.prototype.SetPrivate=function(isPrivate){var self=this.ptr;if(isPrivate&&typeof isPrivate==="object")isPrivate=isPrivate.ptr;return wrapPointer(_emscripten_bind_EventsFunction_SetPrivate_1(self,isPrivate),EventsFunction)};EventsFunction.prototype["IsPrivate"]=EventsFunction.prototype.IsPrivate=function(){var self=this.ptr;return!!_emscripten_bind_EventsFunction_IsPrivate_0(self)};EventsFunction.prototype["SetAsync"]=EventsFunction.prototype.SetAsync=function(isAsync){var self=this.ptr;if(isAsync&&typeof isAsync==="object")isAsync=isAsync.ptr;return wrapPointer(_emscripten_bind_EventsFunction_SetAsync_1(self,isAsync),EventsFunction)};EventsFunction.prototype["IsAsync"]=EventsFunction.prototype.IsAsync=function(){var self=this.ptr;return!!_emscripten_bind_EventsFunction_IsAsync_0(self)};EventsFunction.prototype["SetHelpUrl"]=EventsFunction.prototype.SetHelpUrl=function(helpUrl){var self=this.ptr;ensureCache.prepare();if(helpUrl&&typeof helpUrl==="object")helpUrl=helpUrl.ptr;else helpUrl=ensureString(helpUrl);return wrapPointer(_emscripten_bind_EventsFunction_SetHelpUrl_1(self,helpUrl),EventsFunction)};EventsFunction.prototype["GetHelpUrl"]=EventsFunction.prototype.GetHelpUrl=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_EventsFunction_GetHelpUrl_0(self))};EventsFunction.prototype["SetDeprecated"]=EventsFunction.prototype.SetDeprecated=function(isDeprecated){var self=this.ptr;if(isDeprecated&&typeof isDeprecated==="object")isDeprecated=isDeprecated.ptr;return wrapPointer(_emscripten_bind_EventsFunction_SetDeprecated_1(self,isDeprecated),EventsFunction)};EventsFunction.prototype["IsDeprecated"]=EventsFunction.prototype.IsDeprecated=function(){var self=this.ptr;return!!_emscripten_bind_EventsFunction_IsDeprecated_0(self)};EventsFunction.prototype["SetDeprecationMessage"]=EventsFunction.prototype.SetDeprecationMessage=function(message){var self=this.ptr;ensureCache.prepare();if(message&&typeof message==="object")message=message.ptr;else message=ensureString(message);return wrapPointer(_emscripten_bind_EventsFunction_SetDeprecationMessage_1(self,message),EventsFunction)};EventsFunction.prototype["GetDeprecationMessage"]=EventsFunction.prototype.GetDeprecationMessage=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_EventsFunction_GetDeprecationMessage_0(self))};EventsFunction.prototype["IsAction"]=EventsFunction.prototype.IsAction=function(){var self=this.ptr;return!!_emscripten_bind_EventsFunction_IsAction_0(self)};EventsFunction.prototype["IsExpression"]=EventsFunction.prototype.IsExpression=function(){var self=this.ptr;return!!_emscripten_bind_EventsFunction_IsExpression_0(self)};EventsFunction.prototype["IsCondition"]=EventsFunction.prototype.IsCondition=function(){var self=this.ptr;return!!_emscripten_bind_EventsFunction_IsCondition_0(self)};EventsFunction.prototype["SetFunctionType"]=EventsFunction.prototype.SetFunctionType=function(type){var self=this.ptr;if(type&&typeof type==="object")type=type.ptr;return wrapPointer(_emscripten_bind_EventsFunction_SetFunctionType_1(self,type),EventsFunction)};EventsFunction.prototype["GetFunctionType"]=EventsFunction.prototype.GetFunctionType=function(){var self=this.ptr;return _emscripten_bind_EventsFunction_GetFunctionType_0(self)};EventsFunction.prototype["GetEvents"]=EventsFunction.prototype.GetEvents=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_EventsFunction_GetEvents_0(self),EventsList)};EventsFunction.prototype["GetParameters"]=EventsFunction.prototype.GetParameters=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_EventsFunction_GetParameters_0(self),ParameterMetadataContainer)};EventsFunction.prototype["GetParametersForEvents"]=EventsFunction.prototype.GetParametersForEvents=function(functionsContainer){var self=this.ptr;if(functionsContainer&&typeof functionsContainer==="object")functionsContainer=functionsContainer.ptr;return wrapPointer(_emscripten_bind_EventsFunction_GetParametersForEvents_1(self,functionsContainer),ParameterMetadataContainer)};EventsFunction.prototype["GetObjectGroups"]=EventsFunction.prototype.GetObjectGroups=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_EventsFunction_GetObjectGroups_0(self),ObjectGroupsContainer)};EventsFunction.prototype["SerializeTo"]=EventsFunction.prototype.SerializeTo=function(element){var self=this.ptr;if(element&&typeof element==="object")element=element.ptr;_emscripten_bind_EventsFunction_SerializeTo_1(self,element)};EventsFunction.prototype["UnserializeFrom"]=EventsFunction.prototype.UnserializeFrom=function(project,element){var self=this.ptr;if(project&&typeof project==="object")project=project.ptr;if(element&&typeof element==="object")element=element.ptr;_emscripten_bind_EventsFunction_UnserializeFrom_2(self,project,element)};EventsFunction.prototype["__destroy__"]=EventsFunction.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_EventsFunction___destroy___0(self)};function FunctionFolderOrFunction(){this.ptr=_emscripten_bind_FunctionFolderOrFunction_FunctionFolderOrFunction_0();getCache(FunctionFolderOrFunction)[this.ptr]=this}FunctionFolderOrFunction.prototype=Object.create(WrapperObject.prototype);FunctionFolderOrFunction.prototype.constructor=FunctionFolderOrFunction;FunctionFolderOrFunction.prototype.__class__=FunctionFolderOrFunction;FunctionFolderOrFunction.__cache__={};Module["FunctionFolderOrFunction"]=FunctionFolderOrFunction;FunctionFolderOrFunction.prototype["IsFolder"]=FunctionFolderOrFunction.prototype.IsFolder=function(){var self=this.ptr;return!!_emscripten_bind_FunctionFolderOrFunction_IsFolder_0(self)};FunctionFolderOrFunction.prototype["IsRootFolder"]=FunctionFolderOrFunction.prototype.IsRootFolder=function(){var self=this.ptr;return!!_emscripten_bind_FunctionFolderOrFunction_IsRootFolder_0(self)};FunctionFolderOrFunction.prototype["GetFunction"]=FunctionFolderOrFunction.prototype.GetFunction=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_FunctionFolderOrFunction_GetFunction_0(self),EventsFunction)};FunctionFolderOrFunction.prototype["GetFolderName"]=FunctionFolderOrFunction.prototype.GetFolderName=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_FunctionFolderOrFunction_GetFolderName_0(self))};FunctionFolderOrFunction.prototype["SetFolderName"]=FunctionFolderOrFunction.prototype.SetFolderName=function(name){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);_emscripten_bind_FunctionFolderOrFunction_SetFolderName_1(self,name)};FunctionFolderOrFunction.prototype["HasFunctionNamed"]=FunctionFolderOrFunction.prototype.HasFunctionNamed=function(name){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);return!!_emscripten_bind_FunctionFolderOrFunction_HasFunctionNamed_1(self,name)};FunctionFolderOrFunction.prototype["GetFunctionNamed"]=FunctionFolderOrFunction.prototype.GetFunctionNamed=function(name){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);return wrapPointer(_emscripten_bind_FunctionFolderOrFunction_GetFunctionNamed_1(self,name),FunctionFolderOrFunction)};FunctionFolderOrFunction.prototype["GetChildrenCount"]=FunctionFolderOrFunction.prototype.GetChildrenCount=function(){var self=this.ptr;return _emscripten_bind_FunctionFolderOrFunction_GetChildrenCount_0(self)};FunctionFolderOrFunction.prototype["GetChildAt"]=FunctionFolderOrFunction.prototype.GetChildAt=function(pos){var self=this.ptr;if(pos&&typeof pos==="object")pos=pos.ptr;return wrapPointer(_emscripten_bind_FunctionFolderOrFunction_GetChildAt_1(self,pos),FunctionFolderOrFunction)};FunctionFolderOrFunction.prototype["GetFunctionChild"]=FunctionFolderOrFunction.prototype.GetFunctionChild=function(name){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);return wrapPointer(_emscripten_bind_FunctionFolderOrFunction_GetFunctionChild_1(self,name),FunctionFolderOrFunction)};FunctionFolderOrFunction.prototype["GetOrCreateChildFolder"]=FunctionFolderOrFunction.prototype.GetOrCreateChildFolder=function(name){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);return wrapPointer(_emscripten_bind_FunctionFolderOrFunction_GetOrCreateChildFolder_1(self,name),FunctionFolderOrFunction)};FunctionFolderOrFunction.prototype["GetChildPosition"]=FunctionFolderOrFunction.prototype.GetChildPosition=function(child){var self=this.ptr;if(child&&typeof child==="object")child=child.ptr;return _emscripten_bind_FunctionFolderOrFunction_GetChildPosition_1(self,child)};FunctionFolderOrFunction.prototype["GetParent"]=FunctionFolderOrFunction.prototype.GetParent=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_FunctionFolderOrFunction_GetParent_0(self),FunctionFolderOrFunction)};FunctionFolderOrFunction.prototype["InsertNewFolder"]=FunctionFolderOrFunction.prototype.InsertNewFolder=function(name,newPosition){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);if(newPosition&&typeof newPosition==="object")newPosition=newPosition.ptr;return wrapPointer(_emscripten_bind_FunctionFolderOrFunction_InsertNewFolder_2(self,name,newPosition),FunctionFolderOrFunction)};FunctionFolderOrFunction.prototype["MoveFunctionFolderOrFunctionToAnotherFolder"]=FunctionFolderOrFunction.prototype.MoveFunctionFolderOrFunctionToAnotherFolder=function(functionFolderOrFunction,newParentFolder,newPosition){var self=this.ptr;if(functionFolderOrFunction&&typeof functionFolderOrFunction==="object")functionFolderOrFunction=functionFolderOrFunction.ptr;if(newParentFolder&&typeof newParentFolder==="object")newParentFolder=newParentFolder.ptr;if(newPosition&&typeof newPosition==="object")newPosition=newPosition.ptr;_emscripten_bind_FunctionFolderOrFunction_MoveFunctionFolderOrFunctionToAnotherFolder_3(self,functionFolderOrFunction,newParentFolder,newPosition)};FunctionFolderOrFunction.prototype["MoveChild"]=FunctionFolderOrFunction.prototype.MoveChild=function(oldIndex,newIndex){var self=this.ptr;if(oldIndex&&typeof oldIndex==="object")oldIndex=oldIndex.ptr;if(newIndex&&typeof newIndex==="object")newIndex=newIndex.ptr;_emscripten_bind_FunctionFolderOrFunction_MoveChild_2(self,oldIndex,newIndex)};FunctionFolderOrFunction.prototype["RemoveFolderChild"]=FunctionFolderOrFunction.prototype.RemoveFolderChild=function(childToRemove){var self=this.ptr;if(childToRemove&&typeof childToRemove==="object")childToRemove=childToRemove.ptr;_emscripten_bind_FunctionFolderOrFunction_RemoveFolderChild_1(self,childToRemove)};FunctionFolderOrFunction.prototype["IsADescendantOf"]=FunctionFolderOrFunction.prototype.IsADescendantOf=function(otherFunctionFolderOrFunction){var self=this.ptr;if(otherFunctionFolderOrFunction&&typeof otherFunctionFolderOrFunction==="object")otherFunctionFolderOrFunction=otherFunctionFolderOrFunction.ptr;return!!_emscripten_bind_FunctionFolderOrFunction_IsADescendantOf_1(self,otherFunctionFolderOrFunction)};FunctionFolderOrFunction.prototype["__destroy__"]=FunctionFolderOrFunction.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_FunctionFolderOrFunction___destroy___0(self)};function EventsFunctionsContainer(){throw"cannot construct a EventsFunctionsContainer, no constructor in IDL"}EventsFunctionsContainer.prototype=Object.create(WrapperObject.prototype);EventsFunctionsContainer.prototype.constructor=EventsFunctionsContainer;EventsFunctionsContainer.prototype.__class__=EventsFunctionsContainer;EventsFunctionsContainer.__cache__={};Module["EventsFunctionsContainer"]=EventsFunctionsContainer;EventsFunctionsContainer.prototype["InsertNewEventsFunction"]=EventsFunctionsContainer.prototype.InsertNewEventsFunction=function(name,pos){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);if(pos&&typeof pos==="object")pos=pos.ptr;return wrapPointer(_emscripten_bind_EventsFunctionsContainer_InsertNewEventsFunction_2(self,name,pos),EventsFunction)};EventsFunctionsContainer.prototype["InsertEventsFunction"]=EventsFunctionsContainer.prototype.InsertEventsFunction=function(eventsFunction,pos){var self=this.ptr;if(eventsFunction&&typeof eventsFunction==="object")eventsFunction=eventsFunction.ptr;if(pos&&typeof pos==="object")pos=pos.ptr;return wrapPointer(_emscripten_bind_EventsFunctionsContainer_InsertEventsFunction_2(self,eventsFunction,pos),EventsFunction)};EventsFunctionsContainer.prototype["HasEventsFunctionNamed"]=EventsFunctionsContainer.prototype.HasEventsFunctionNamed=function(name){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);return!!_emscripten_bind_EventsFunctionsContainer_HasEventsFunctionNamed_1(self,name)};EventsFunctionsContainer.prototype["GetEventsFunction"]=EventsFunctionsContainer.prototype.GetEventsFunction=function(name){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);return wrapPointer(_emscripten_bind_EventsFunctionsContainer_GetEventsFunction_1(self,name),EventsFunction)};EventsFunctionsContainer.prototype["GetEventsFunctionAt"]=EventsFunctionsContainer.prototype.GetEventsFunctionAt=function(pos){var self=this.ptr;if(pos&&typeof pos==="object")pos=pos.ptr;return wrapPointer(_emscripten_bind_EventsFunctionsContainer_GetEventsFunctionAt_1(self,pos),EventsFunction)};EventsFunctionsContainer.prototype["RemoveEventsFunction"]=EventsFunctionsContainer.prototype.RemoveEventsFunction=function(name){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);_emscripten_bind_EventsFunctionsContainer_RemoveEventsFunction_1(self,name)};EventsFunctionsContainer.prototype["MoveEventsFunction"]=EventsFunctionsContainer.prototype.MoveEventsFunction=function(oldIndex,newIndex){var self=this.ptr;if(oldIndex&&typeof oldIndex==="object")oldIndex=oldIndex.ptr;if(newIndex&&typeof newIndex==="object")newIndex=newIndex.ptr;_emscripten_bind_EventsFunctionsContainer_MoveEventsFunction_2(self,oldIndex,newIndex)};EventsFunctionsContainer.prototype["GetEventsFunctionsCount"]=EventsFunctionsContainer.prototype.GetEventsFunctionsCount=function(){var self=this.ptr;return _emscripten_bind_EventsFunctionsContainer_GetEventsFunctionsCount_0(self)};EventsFunctionsContainer.prototype["GetEventsFunctionPosition"]=EventsFunctionsContainer.prototype.GetEventsFunctionPosition=function(eventsFunction){var self=this.ptr;if(eventsFunction&&typeof eventsFunction==="object")eventsFunction=eventsFunction.ptr;return _emscripten_bind_EventsFunctionsContainer_GetEventsFunctionPosition_1(self,eventsFunction)};EventsFunctionsContainer.prototype["InsertNewEventsFunctionInFolder"]=EventsFunctionsContainer.prototype.InsertNewEventsFunctionInFolder=function(name,folder,pos){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);if(folder&&typeof folder==="object")folder=folder.ptr;if(pos&&typeof pos==="object")pos=pos.ptr;return wrapPointer(_emscripten_bind_EventsFunctionsContainer_InsertNewEventsFunctionInFolder_3(self,name,folder,pos),EventsFunction)};EventsFunctionsContainer.prototype["GetRootFolder"]=EventsFunctionsContainer.prototype.GetRootFolder=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_EventsFunctionsContainer_GetRootFolder_0(self),FunctionFolderOrFunction)};EventsFunctionsContainer.prototype["GetAllFunctionFolderOrFunction"]=EventsFunctionsContainer.prototype.GetAllFunctionFolderOrFunction=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_EventsFunctionsContainer_GetAllFunctionFolderOrFunction_0(self),VectorFunctionFolderOrFunction)};EventsFunctionsContainer.prototype["AddMissingFunctionsInRootFolder"]=EventsFunctionsContainer.prototype.AddMissingFunctionsInRootFolder=function(){var self=this.ptr;_emscripten_bind_EventsFunctionsContainer_AddMissingFunctionsInRootFolder_0(self)};EventsFunctionsContainer.prototype["__destroy__"]=EventsFunctionsContainer.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_EventsFunctionsContainer___destroy___0(self)};function EventsBasedBehavior(){this.ptr=_emscripten_bind_EventsBasedBehavior_EventsBasedBehavior_0();getCache(EventsBasedBehavior)[this.ptr]=this}EventsBasedBehavior.prototype=Object.create(AbstractEventsBasedEntity.prototype);EventsBasedBehavior.prototype.constructor=EventsBasedBehavior;EventsBasedBehavior.prototype.__class__=EventsBasedBehavior;EventsBasedBehavior.__cache__={};Module["EventsBasedBehavior"]=EventsBasedBehavior;EventsBasedBehavior.prototype["SetName"]=EventsBasedBehavior.prototype.SetName=function(name){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);return wrapPointer(_emscripten_bind_EventsBasedBehavior_SetName_1(self,name),EventsBasedBehavior)};EventsBasedBehavior.prototype["SetFullName"]=EventsBasedBehavior.prototype.SetFullName=function(fullName){var self=this.ptr;ensureCache.prepare();if(fullName&&typeof fullName==="object")fullName=fullName.ptr;else fullName=ensureString(fullName);return wrapPointer(_emscripten_bind_EventsBasedBehavior_SetFullName_1(self,fullName),EventsBasedBehavior)};EventsBasedBehavior.prototype["SetDescription"]=EventsBasedBehavior.prototype.SetDescription=function(description){var self=this.ptr;ensureCache.prepare();if(description&&typeof description==="object")description=description.ptr;else description=ensureString(description);return wrapPointer(_emscripten_bind_EventsBasedBehavior_SetDescription_1(self,description),EventsBasedBehavior)};EventsBasedBehavior.prototype["SetPrivate"]=EventsBasedBehavior.prototype.SetPrivate=function(isPrivate){var self=this.ptr;if(isPrivate&&typeof isPrivate==="object")isPrivate=isPrivate.ptr;return wrapPointer(_emscripten_bind_EventsBasedBehavior_SetPrivate_1(self,isPrivate),EventsBasedBehavior)};EventsBasedBehavior.prototype["SetPreviewIconUrl"]=EventsBasedBehavior.prototype.SetPreviewIconUrl=function(previewIconUrl){var self=this.ptr;ensureCache.prepare();if(previewIconUrl&&typeof previewIconUrl==="object")previewIconUrl=previewIconUrl.ptr;else previewIconUrl=ensureString(previewIconUrl);return wrapPointer(_emscripten_bind_EventsBasedBehavior_SetPreviewIconUrl_1(self,previewIconUrl),EventsBasedBehavior)};EventsBasedBehavior.prototype["SetIconUrl"]=EventsBasedBehavior.prototype.SetIconUrl=function(iconUrl){var self=this.ptr;ensureCache.prepare();if(iconUrl&&typeof iconUrl==="object")iconUrl=iconUrl.ptr;else iconUrl=ensureString(iconUrl);return wrapPointer(_emscripten_bind_EventsBasedBehavior_SetIconUrl_1(self,iconUrl),EventsBasedBehavior)};EventsBasedBehavior.prototype["SetHelpPath"]=EventsBasedBehavior.prototype.SetHelpPath=function(helpPath){var self=this.ptr;ensureCache.prepare();if(helpPath&&typeof helpPath==="object")helpPath=helpPath.ptr;else helpPath=ensureString(helpPath);return wrapPointer(_emscripten_bind_EventsBasedBehavior_SetHelpPath_1(self,helpPath),EventsBasedBehavior)};EventsBasedBehavior.prototype["SetObjectType"]=EventsBasedBehavior.prototype.SetObjectType=function(fullName){var self=this.ptr;ensureCache.prepare();if(fullName&&typeof fullName==="object")fullName=fullName.ptr;else fullName=ensureString(fullName);return wrapPointer(_emscripten_bind_EventsBasedBehavior_SetObjectType_1(self,fullName),EventsBasedBehavior)};EventsBasedBehavior.prototype["GetObjectType"]=EventsBasedBehavior.prototype.GetObjectType=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_EventsBasedBehavior_GetObjectType_0(self))};EventsBasedBehavior.prototype["SetQuickCustomizationVisibility"]=EventsBasedBehavior.prototype.SetQuickCustomizationVisibility=function(visibility){var self=this.ptr;if(visibility&&typeof visibility==="object")visibility=visibility.ptr;return wrapPointer(_emscripten_bind_EventsBasedBehavior_SetQuickCustomizationVisibility_1(self,visibility),EventsBasedBehavior)};EventsBasedBehavior.prototype["GetQuickCustomizationVisibility"]=EventsBasedBehavior.prototype.GetQuickCustomizationVisibility=function(){var self=this.ptr;return _emscripten_bind_EventsBasedBehavior_GetQuickCustomizationVisibility_0(self)};EventsBasedBehavior.prototype["GetSharedPropertyDescriptors"]=EventsBasedBehavior.prototype.GetSharedPropertyDescriptors=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_EventsBasedBehavior_GetSharedPropertyDescriptors_0(self),PropertiesContainer)};EventsBasedBehavior.prototype["STATIC_GetPropertyActionName"]=EventsBasedBehavior.prototype.STATIC_GetPropertyActionName=function(propertyName){var self=this.ptr;ensureCache.prepare();if(propertyName&&typeof propertyName==="object")propertyName=propertyName.ptr;else propertyName=ensureString(propertyName);return UTF8ToString(_emscripten_bind_EventsBasedBehavior_STATIC_GetPropertyActionName_1(self,propertyName))};EventsBasedBehavior.prototype["STATIC_GetPropertyConditionName"]=EventsBasedBehavior.prototype.STATIC_GetPropertyConditionName=function(propertyName){var self=this.ptr;ensureCache.prepare();if(propertyName&&typeof propertyName==="object")propertyName=propertyName.ptr;else propertyName=ensureString(propertyName);return UTF8ToString(_emscripten_bind_EventsBasedBehavior_STATIC_GetPropertyConditionName_1(self,propertyName))};EventsBasedBehavior.prototype["STATIC_GetPropertyExpressionName"]=EventsBasedBehavior.prototype.STATIC_GetPropertyExpressionName=function(propertyName){var self=this.ptr;ensureCache.prepare();if(propertyName&&typeof propertyName==="object")propertyName=propertyName.ptr;else propertyName=ensureString(propertyName);return UTF8ToString(_emscripten_bind_EventsBasedBehavior_STATIC_GetPropertyExpressionName_1(self,propertyName))};EventsBasedBehavior.prototype["STATIC_GetPropertyToggleActionName"]=EventsBasedBehavior.prototype.STATIC_GetPropertyToggleActionName=function(propertyName){var self=this.ptr;ensureCache.prepare();if(propertyName&&typeof propertyName==="object")propertyName=propertyName.ptr;else propertyName=ensureString(propertyName);return UTF8ToString(_emscripten_bind_EventsBasedBehavior_STATIC_GetPropertyToggleActionName_1(self,propertyName))};EventsBasedBehavior.prototype["STATIC_GetSharedPropertyActionName"]=EventsBasedBehavior.prototype.STATIC_GetSharedPropertyActionName=function(propertyName){var self=this.ptr;ensureCache.prepare();if(propertyName&&typeof propertyName==="object")propertyName=propertyName.ptr;else propertyName=ensureString(propertyName);return UTF8ToString(_emscripten_bind_EventsBasedBehavior_STATIC_GetSharedPropertyActionName_1(self,propertyName))};EventsBasedBehavior.prototype["STATIC_GetSharedPropertyConditionName"]=EventsBasedBehavior.prototype.STATIC_GetSharedPropertyConditionName=function(propertyName){var self=this.ptr;ensureCache.prepare();if(propertyName&&typeof propertyName==="object")propertyName=propertyName.ptr;else propertyName=ensureString(propertyName);return UTF8ToString(_emscripten_bind_EventsBasedBehavior_STATIC_GetSharedPropertyConditionName_1(self,propertyName))};EventsBasedBehavior.prototype["STATIC_GetSharedPropertyExpressionName"]=EventsBasedBehavior.prototype.STATIC_GetSharedPropertyExpressionName=function(propertyName){var self=this.ptr;ensureCache.prepare();if(propertyName&&typeof propertyName==="object")propertyName=propertyName.ptr;else propertyName=ensureString(propertyName);return UTF8ToString(_emscripten_bind_EventsBasedBehavior_STATIC_GetSharedPropertyExpressionName_1(self,propertyName))};EventsBasedBehavior.prototype["STATIC_GetSharedPropertyToggleActionName"]=EventsBasedBehavior.prototype.STATIC_GetSharedPropertyToggleActionName=function(propertyName){var self=this.ptr;ensureCache.prepare();if(propertyName&&typeof propertyName==="object")propertyName=propertyName.ptr;else propertyName=ensureString(propertyName);return UTF8ToString(_emscripten_bind_EventsBasedBehavior_STATIC_GetSharedPropertyToggleActionName_1(self,propertyName))};EventsBasedBehavior.prototype["GetEventsFunctions"]=EventsBasedBehavior.prototype.GetEventsFunctions=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_EventsBasedBehavior_GetEventsFunctions_0(self),EventsFunctionsContainer)};EventsBasedBehavior.prototype["GetPropertyDescriptors"]=EventsBasedBehavior.prototype.GetPropertyDescriptors=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_EventsBasedBehavior_GetPropertyDescriptors_0(self),PropertiesContainer)};EventsBasedBehavior.prototype["GetName"]=EventsBasedBehavior.prototype.GetName=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_EventsBasedBehavior_GetName_0(self))};EventsBasedBehavior.prototype["GetFullName"]=EventsBasedBehavior.prototype.GetFullName=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_EventsBasedBehavior_GetFullName_0(self))};EventsBasedBehavior.prototype["GetDescription"]=EventsBasedBehavior.prototype.GetDescription=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_EventsBasedBehavior_GetDescription_0(self))};EventsBasedBehavior.prototype["IsPrivate"]=EventsBasedBehavior.prototype.IsPrivate=function(){var self=this.ptr;return!!_emscripten_bind_EventsBasedBehavior_IsPrivate_0(self)};EventsBasedBehavior.prototype["GetPreviewIconUrl"]=EventsBasedBehavior.prototype.GetPreviewIconUrl=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_EventsBasedBehavior_GetPreviewIconUrl_0(self))};EventsBasedBehavior.prototype["GetIconUrl"]=EventsBasedBehavior.prototype.GetIconUrl=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_EventsBasedBehavior_GetIconUrl_0(self))};EventsBasedBehavior.prototype["GetHelpPath"]=EventsBasedBehavior.prototype.GetHelpPath=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_EventsBasedBehavior_GetHelpPath_0(self))};EventsBasedBehavior.prototype["SerializeTo"]=EventsBasedBehavior.prototype.SerializeTo=function(element){var self=this.ptr;if(element&&typeof element==="object")element=element.ptr;_emscripten_bind_EventsBasedBehavior_SerializeTo_1(self,element)};EventsBasedBehavior.prototype["UnserializeFrom"]=EventsBasedBehavior.prototype.UnserializeFrom=function(project,element){var self=this.ptr;if(project&&typeof project==="object")project=project.ptr;if(element&&typeof element==="object")element=element.ptr;_emscripten_bind_EventsBasedBehavior_UnserializeFrom_2(self,project,element)};EventsBasedBehavior.prototype["__destroy__"]=EventsBasedBehavior.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_EventsBasedBehavior___destroy___0(self)};function EventsBasedBehaviorsList(){throw"cannot construct a EventsBasedBehaviorsList, no constructor in IDL"}EventsBasedBehaviorsList.prototype=Object.create(WrapperObject.prototype);EventsBasedBehaviorsList.prototype.constructor=EventsBasedBehaviorsList;EventsBasedBehaviorsList.prototype.__class__=EventsBasedBehaviorsList;EventsBasedBehaviorsList.__cache__={};Module["EventsBasedBehaviorsList"]=EventsBasedBehaviorsList;EventsBasedBehaviorsList.prototype["InsertNew"]=EventsBasedBehaviorsList.prototype.InsertNew=function(name,pos){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);if(pos&&typeof pos==="object")pos=pos.ptr;return wrapPointer(_emscripten_bind_EventsBasedBehaviorsList_InsertNew_2(self,name,pos),EventsBasedBehavior)};EventsBasedBehaviorsList.prototype["Insert"]=EventsBasedBehaviorsList.prototype.Insert=function(item,pos){var self=this.ptr;if(item&&typeof item==="object")item=item.ptr;if(pos&&typeof pos==="object")pos=pos.ptr;return wrapPointer(_emscripten_bind_EventsBasedBehaviorsList_Insert_2(self,item,pos),EventsBasedBehavior)};EventsBasedBehaviorsList.prototype["Has"]=EventsBasedBehaviorsList.prototype.Has=function(name){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);return!!_emscripten_bind_EventsBasedBehaviorsList_Has_1(self,name)};EventsBasedBehaviorsList.prototype["Get"]=EventsBasedBehaviorsList.prototype.Get=function(name){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);return wrapPointer(_emscripten_bind_EventsBasedBehaviorsList_Get_1(self,name),EventsBasedBehavior)};EventsBasedBehaviorsList.prototype["GetAt"]=EventsBasedBehaviorsList.prototype.GetAt=function(pos){var self=this.ptr;if(pos&&typeof pos==="object")pos=pos.ptr;return wrapPointer(_emscripten_bind_EventsBasedBehaviorsList_GetAt_1(self,pos),EventsBasedBehavior)};EventsBasedBehaviorsList.prototype["Remove"]=EventsBasedBehaviorsList.prototype.Remove=function(name){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);_emscripten_bind_EventsBasedBehaviorsList_Remove_1(self,name)};EventsBasedBehaviorsList.prototype["Move"]=EventsBasedBehaviorsList.prototype.Move=function(oldIndex,newIndex){var self=this.ptr;if(oldIndex&&typeof oldIndex==="object")oldIndex=oldIndex.ptr;if(newIndex&&typeof newIndex==="object")newIndex=newIndex.ptr;_emscripten_bind_EventsBasedBehaviorsList_Move_2(self,oldIndex,newIndex)};EventsBasedBehaviorsList.prototype["GetCount"]=EventsBasedBehaviorsList.prototype.GetCount=function(){var self=this.ptr;return _emscripten_bind_EventsBasedBehaviorsList_GetCount_0(self)};EventsBasedBehaviorsList.prototype["GetPosition"]=EventsBasedBehaviorsList.prototype.GetPosition=function(item){var self=this.ptr;if(item&&typeof item==="object")item=item.ptr;return _emscripten_bind_EventsBasedBehaviorsList_GetPosition_1(self,item)};EventsBasedBehaviorsList.prototype["size"]=EventsBasedBehaviorsList.prototype.size=function(){var self=this.ptr;return _emscripten_bind_EventsBasedBehaviorsList_size_0(self)};EventsBasedBehaviorsList.prototype["at"]=EventsBasedBehaviorsList.prototype.at=function(index){var self=this.ptr;if(index&&typeof index==="object")index=index.ptr;return wrapPointer(_emscripten_bind_EventsBasedBehaviorsList_at_1(self,index),EventsBasedBehavior)};EventsBasedBehaviorsList.prototype["__destroy__"]=EventsBasedBehaviorsList.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_EventsBasedBehaviorsList___destroy___0(self)};function EventsBasedObject(){this.ptr=_emscripten_bind_EventsBasedObject_EventsBasedObject_0();getCache(EventsBasedObject)[this.ptr]=this}EventsBasedObject.prototype=Object.create(AbstractEventsBasedEntity.prototype);EventsBasedObject.prototype.constructor=EventsBasedObject;EventsBasedObject.prototype.__class__=EventsBasedObject;EventsBasedObject.__cache__={};Module["EventsBasedObject"]=EventsBasedObject;EventsBasedObject.prototype["SetName"]=EventsBasedObject.prototype.SetName=function(name){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);return wrapPointer(_emscripten_bind_EventsBasedObject_SetName_1(self,name),EventsBasedObject)};EventsBasedObject.prototype["SetFullName"]=EventsBasedObject.prototype.SetFullName=function(fullName){var self=this.ptr;ensureCache.prepare();if(fullName&&typeof fullName==="object")fullName=fullName.ptr;else fullName=ensureString(fullName);return wrapPointer(_emscripten_bind_EventsBasedObject_SetFullName_1(self,fullName),EventsBasedObject)};EventsBasedObject.prototype["SetDescription"]=EventsBasedObject.prototype.SetDescription=function(description){var self=this.ptr;ensureCache.prepare();if(description&&typeof description==="object")description=description.ptr;else description=ensureString(description);return wrapPointer(_emscripten_bind_EventsBasedObject_SetDescription_1(self,description),EventsBasedObject)};EventsBasedObject.prototype["SetPrivate"]=EventsBasedObject.prototype.SetPrivate=function(isPrivate){var self=this.ptr;if(isPrivate&&typeof isPrivate==="object")isPrivate=isPrivate.ptr;return wrapPointer(_emscripten_bind_EventsBasedObject_SetPrivate_1(self,isPrivate),EventsBasedObject)};EventsBasedObject.prototype["SetPreviewIconUrl"]=EventsBasedObject.prototype.SetPreviewIconUrl=function(previewIconUrl){var self=this.ptr;ensureCache.prepare();if(previewIconUrl&&typeof previewIconUrl==="object")previewIconUrl=previewIconUrl.ptr;else previewIconUrl=ensureString(previewIconUrl);return wrapPointer(_emscripten_bind_EventsBasedObject_SetPreviewIconUrl_1(self,previewIconUrl),EventsBasedObject)};EventsBasedObject.prototype["SetIconUrl"]=EventsBasedObject.prototype.SetIconUrl=function(iconUrl){var self=this.ptr;ensureCache.prepare();if(iconUrl&&typeof iconUrl==="object")iconUrl=iconUrl.ptr;else iconUrl=ensureString(iconUrl);return wrapPointer(_emscripten_bind_EventsBasedObject_SetIconUrl_1(self,iconUrl),EventsBasedObject)};EventsBasedObject.prototype["SetHelpPath"]=EventsBasedObject.prototype.SetHelpPath=function(helpPath){var self=this.ptr;ensureCache.prepare();if(helpPath&&typeof helpPath==="object")helpPath=helpPath.ptr;else helpPath=ensureString(helpPath);return wrapPointer(_emscripten_bind_EventsBasedObject_SetHelpPath_1(self,helpPath),EventsBasedObject)};EventsBasedObject.prototype["SetDefaultName"]=EventsBasedObject.prototype.SetDefaultName=function(defaultName){var self=this.ptr;ensureCache.prepare();if(defaultName&&typeof defaultName==="object")defaultName=defaultName.ptr;else defaultName=ensureString(defaultName);return wrapPointer(_emscripten_bind_EventsBasedObject_SetDefaultName_1(self,defaultName),EventsBasedObject)};EventsBasedObject.prototype["SetAssetStoreTag"]=EventsBasedObject.prototype.SetAssetStoreTag=function(assetStoreTag){var self=this.ptr;ensureCache.prepare();if(assetStoreTag&&typeof assetStoreTag==="object")assetStoreTag=assetStoreTag.ptr;else assetStoreTag=ensureString(assetStoreTag);return wrapPointer(_emscripten_bind_EventsBasedObject_SetAssetStoreTag_1(self,assetStoreTag),EventsBasedObject)};EventsBasedObject.prototype["GetDefaultName"]=EventsBasedObject.prototype.GetDefaultName=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_EventsBasedObject_GetDefaultName_0(self))};EventsBasedObject.prototype["GetAssetStoreTag"]=EventsBasedObject.prototype.GetAssetStoreTag=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_EventsBasedObject_GetAssetStoreTag_0(self))};EventsBasedObject.prototype["MarkAsRenderedIn3D"]=EventsBasedObject.prototype.MarkAsRenderedIn3D=function(isRenderedIn3D){var self=this.ptr;if(isRenderedIn3D&&typeof isRenderedIn3D==="object")isRenderedIn3D=isRenderedIn3D.ptr;return wrapPointer(_emscripten_bind_EventsBasedObject_MarkAsRenderedIn3D_1(self,isRenderedIn3D),EventsBasedObject)};EventsBasedObject.prototype["IsRenderedIn3D"]=EventsBasedObject.prototype.IsRenderedIn3D=function(){var self=this.ptr;return!!_emscripten_bind_EventsBasedObject_IsRenderedIn3D_0(self)};EventsBasedObject.prototype["MarkAsAnimatable"]=EventsBasedObject.prototype.MarkAsAnimatable=function(isAnimatable){var self=this.ptr;if(isAnimatable&&typeof isAnimatable==="object")isAnimatable=isAnimatable.ptr;return wrapPointer(_emscripten_bind_EventsBasedObject_MarkAsAnimatable_1(self,isAnimatable),EventsBasedObject)};EventsBasedObject.prototype["IsAnimatable"]=EventsBasedObject.prototype.IsAnimatable=function(){var self=this.ptr;return!!_emscripten_bind_EventsBasedObject_IsAnimatable_0(self)};EventsBasedObject.prototype["MarkAsTextContainer"]=EventsBasedObject.prototype.MarkAsTextContainer=function(isTextContainer){var self=this.ptr;if(isTextContainer&&typeof isTextContainer==="object")isTextContainer=isTextContainer.ptr;return wrapPointer(_emscripten_bind_EventsBasedObject_MarkAsTextContainer_1(self,isTextContainer),EventsBasedObject)};EventsBasedObject.prototype["IsTextContainer"]=EventsBasedObject.prototype.IsTextContainer=function(){var self=this.ptr;return!!_emscripten_bind_EventsBasedObject_IsTextContainer_0(self)};EventsBasedObject.prototype["MarkAsInnerAreaFollowingParentSize"]=EventsBasedObject.prototype.MarkAsInnerAreaFollowingParentSize=function(value){var self=this.ptr;if(value&&typeof value==="object")value=value.ptr;return wrapPointer(_emscripten_bind_EventsBasedObject_MarkAsInnerAreaFollowingParentSize_1(self,value),EventsBasedObject)};EventsBasedObject.prototype["IsInnerAreaFollowingParentSize"]=EventsBasedObject.prototype.IsInnerAreaFollowingParentSize=function(){var self=this.ptr;return!!_emscripten_bind_EventsBasedObject_IsInnerAreaFollowingParentSize_0(self)};EventsBasedObject.prototype["MakAsUsingLegacyInstancesRenderer"]=EventsBasedObject.prototype.MakAsUsingLegacyInstancesRenderer=function(value){var self=this.ptr;if(value&&typeof value==="object")value=value.ptr;return wrapPointer(_emscripten_bind_EventsBasedObject_MakAsUsingLegacyInstancesRenderer_1(self,value),EventsBasedObject)};EventsBasedObject.prototype["IsUsingLegacyInstancesRenderer"]=EventsBasedObject.prototype.IsUsingLegacyInstancesRenderer=function(){var self=this.ptr;return!!_emscripten_bind_EventsBasedObject_IsUsingLegacyInstancesRenderer_0(self)};EventsBasedObject.prototype["GetDefaultVariant"]=EventsBasedObject.prototype.GetDefaultVariant=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_EventsBasedObject_GetDefaultVariant_0(self),EventsBasedObjectVariant)};EventsBasedObject.prototype["GetVariants"]=EventsBasedObject.prototype.GetVariants=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_EventsBasedObject_GetVariants_0(self),EventsBasedObjectVariantsContainer)};EventsBasedObject.prototype["GetInitialInstances"]=EventsBasedObject.prototype.GetInitialInstances=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_EventsBasedObject_GetInitialInstances_0(self),InitialInstancesContainer)};EventsBasedObject.prototype["GetLayers"]=EventsBasedObject.prototype.GetLayers=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_EventsBasedObject_GetLayers_0(self),LayersContainer)};EventsBasedObject.prototype["GetObjects"]=EventsBasedObject.prototype.GetObjects=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_EventsBasedObject_GetObjects_0(self),ObjectsContainer)};EventsBasedObject.prototype["GetAreaMinX"]=EventsBasedObject.prototype.GetAreaMinX=function(){var self=this.ptr;return _emscripten_bind_EventsBasedObject_GetAreaMinX_0(self)};EventsBasedObject.prototype["GetAreaMinY"]=EventsBasedObject.prototype.GetAreaMinY=function(){var self=this.ptr;return _emscripten_bind_EventsBasedObject_GetAreaMinY_0(self)};EventsBasedObject.prototype["GetAreaMinZ"]=EventsBasedObject.prototype.GetAreaMinZ=function(){var self=this.ptr;return _emscripten_bind_EventsBasedObject_GetAreaMinZ_0(self)};EventsBasedObject.prototype["GetAreaMaxX"]=EventsBasedObject.prototype.GetAreaMaxX=function(){var self=this.ptr;return _emscripten_bind_EventsBasedObject_GetAreaMaxX_0(self)};EventsBasedObject.prototype["GetAreaMaxY"]=EventsBasedObject.prototype.GetAreaMaxY=function(){var self=this.ptr;return _emscripten_bind_EventsBasedObject_GetAreaMaxY_0(self)};EventsBasedObject.prototype["GetAreaMaxZ"]=EventsBasedObject.prototype.GetAreaMaxZ=function(){var self=this.ptr;return _emscripten_bind_EventsBasedObject_GetAreaMaxZ_0(self)};EventsBasedObject.prototype["SetAreaMinX"]=EventsBasedObject.prototype.SetAreaMinX=function(value){var self=this.ptr;if(value&&typeof value==="object")value=value.ptr;_emscripten_bind_EventsBasedObject_SetAreaMinX_1(self,value)};EventsBasedObject.prototype["SetAreaMinY"]=EventsBasedObject.prototype.SetAreaMinY=function(value){var self=this.ptr;if(value&&typeof value==="object")value=value.ptr;_emscripten_bind_EventsBasedObject_SetAreaMinY_1(self,value)};EventsBasedObject.prototype["SetAreaMinZ"]=EventsBasedObject.prototype.SetAreaMinZ=function(value){var self=this.ptr;if(value&&typeof value==="object")value=value.ptr;_emscripten_bind_EventsBasedObject_SetAreaMinZ_1(self,value)};EventsBasedObject.prototype["SetAreaMaxX"]=EventsBasedObject.prototype.SetAreaMaxX=function(value){var self=this.ptr;if(value&&typeof value==="object")value=value.ptr;_emscripten_bind_EventsBasedObject_SetAreaMaxX_1(self,value)};EventsBasedObject.prototype["SetAreaMaxY"]=EventsBasedObject.prototype.SetAreaMaxY=function(value){var self=this.ptr;if(value&&typeof value==="object")value=value.ptr;_emscripten_bind_EventsBasedObject_SetAreaMaxY_1(self,value)};EventsBasedObject.prototype["SetAreaMaxZ"]=EventsBasedObject.prototype.SetAreaMaxZ=function(value){var self=this.ptr;if(value&&typeof value==="object")value=value.ptr;_emscripten_bind_EventsBasedObject_SetAreaMaxZ_1(self,value)};EventsBasedObject.prototype["STATIC_GetPropertyActionName"]=EventsBasedObject.prototype.STATIC_GetPropertyActionName=function(propertyName){var self=this.ptr;ensureCache.prepare();if(propertyName&&typeof propertyName==="object")propertyName=propertyName.ptr;else propertyName=ensureString(propertyName);return UTF8ToString(_emscripten_bind_EventsBasedObject_STATIC_GetPropertyActionName_1(self,propertyName))};EventsBasedObject.prototype["STATIC_GetPropertyConditionName"]=EventsBasedObject.prototype.STATIC_GetPropertyConditionName=function(propertyName){var self=this.ptr;ensureCache.prepare();if(propertyName&&typeof propertyName==="object")propertyName=propertyName.ptr;else propertyName=ensureString(propertyName);return UTF8ToString(_emscripten_bind_EventsBasedObject_STATIC_GetPropertyConditionName_1(self,propertyName))};EventsBasedObject.prototype["STATIC_GetPropertyExpressionName"]=EventsBasedObject.prototype.STATIC_GetPropertyExpressionName=function(propertyName){var self=this.ptr;ensureCache.prepare();if(propertyName&&typeof propertyName==="object")propertyName=propertyName.ptr;else propertyName=ensureString(propertyName);return UTF8ToString(_emscripten_bind_EventsBasedObject_STATIC_GetPropertyExpressionName_1(self,propertyName))};EventsBasedObject.prototype["STATIC_GetPropertyToggleActionName"]=EventsBasedObject.prototype.STATIC_GetPropertyToggleActionName=function(propertyName){var self=this.ptr;ensureCache.prepare();if(propertyName&&typeof propertyName==="object")propertyName=propertyName.ptr;else propertyName=ensureString(propertyName);return UTF8ToString(_emscripten_bind_EventsBasedObject_STATIC_GetPropertyToggleActionName_1(self,propertyName))};EventsBasedObject.prototype["GetEventsFunctions"]=EventsBasedObject.prototype.GetEventsFunctions=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_EventsBasedObject_GetEventsFunctions_0(self),EventsFunctionsContainer)};EventsBasedObject.prototype["GetPropertyDescriptors"]=EventsBasedObject.prototype.GetPropertyDescriptors=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_EventsBasedObject_GetPropertyDescriptors_0(self),PropertiesContainer)};EventsBasedObject.prototype["GetName"]=EventsBasedObject.prototype.GetName=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_EventsBasedObject_GetName_0(self))};EventsBasedObject.prototype["GetFullName"]=EventsBasedObject.prototype.GetFullName=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_EventsBasedObject_GetFullName_0(self))};EventsBasedObject.prototype["GetDescription"]=EventsBasedObject.prototype.GetDescription=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_EventsBasedObject_GetDescription_0(self))};EventsBasedObject.prototype["IsPrivate"]=EventsBasedObject.prototype.IsPrivate=function(){var self=this.ptr;return!!_emscripten_bind_EventsBasedObject_IsPrivate_0(self)};EventsBasedObject.prototype["GetPreviewIconUrl"]=EventsBasedObject.prototype.GetPreviewIconUrl=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_EventsBasedObject_GetPreviewIconUrl_0(self))};EventsBasedObject.prototype["GetIconUrl"]=EventsBasedObject.prototype.GetIconUrl=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_EventsBasedObject_GetIconUrl_0(self))};EventsBasedObject.prototype["GetHelpPath"]=EventsBasedObject.prototype.GetHelpPath=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_EventsBasedObject_GetHelpPath_0(self))};EventsBasedObject.prototype["SerializeTo"]=EventsBasedObject.prototype.SerializeTo=function(element){var self=this.ptr;if(element&&typeof element==="object")element=element.ptr;_emscripten_bind_EventsBasedObject_SerializeTo_1(self,element)};EventsBasedObject.prototype["UnserializeFrom"]=EventsBasedObject.prototype.UnserializeFrom=function(project,element){var self=this.ptr;if(project&&typeof project==="object")project=project.ptr;if(element&&typeof element==="object")element=element.ptr;_emscripten_bind_EventsBasedObject_UnserializeFrom_2(self,project,element)};EventsBasedObject.prototype["__destroy__"]=EventsBasedObject.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_EventsBasedObject___destroy___0(self)};function EventsBasedObjectVariant(){this.ptr=_emscripten_bind_EventsBasedObjectVariant_EventsBasedObjectVariant_0();getCache(EventsBasedObjectVariant)[this.ptr]=this}EventsBasedObjectVariant.prototype=Object.create(WrapperObject.prototype);EventsBasedObjectVariant.prototype.constructor=EventsBasedObjectVariant;EventsBasedObjectVariant.prototype.__class__=EventsBasedObjectVariant;EventsBasedObjectVariant.__cache__={};Module["EventsBasedObjectVariant"]=EventsBasedObjectVariant;EventsBasedObjectVariant.prototype["GetName"]=EventsBasedObjectVariant.prototype.GetName=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_EventsBasedObjectVariant_GetName_0(self))};EventsBasedObjectVariant.prototype["SetName"]=EventsBasedObjectVariant.prototype.SetName=function(name){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);return wrapPointer(_emscripten_bind_EventsBasedObjectVariant_SetName_1(self,name),EventsBasedObjectVariant)};EventsBasedObjectVariant.prototype["GetInitialInstances"]=EventsBasedObjectVariant.prototype.GetInitialInstances=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_EventsBasedObjectVariant_GetInitialInstances_0(self),InitialInstancesContainer)};EventsBasedObjectVariant.prototype["GetLayers"]=EventsBasedObjectVariant.prototype.GetLayers=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_EventsBasedObjectVariant_GetLayers_0(self),LayersContainer)};EventsBasedObjectVariant.prototype["GetObjects"]=EventsBasedObjectVariant.prototype.GetObjects=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_EventsBasedObjectVariant_GetObjects_0(self),ObjectsContainer)};EventsBasedObjectVariant.prototype["GetAreaMinX"]=EventsBasedObjectVariant.prototype.GetAreaMinX=function(){var self=this.ptr;return _emscripten_bind_EventsBasedObjectVariant_GetAreaMinX_0(self)};EventsBasedObjectVariant.prototype["GetAreaMinY"]=EventsBasedObjectVariant.prototype.GetAreaMinY=function(){var self=this.ptr;return _emscripten_bind_EventsBasedObjectVariant_GetAreaMinY_0(self)};EventsBasedObjectVariant.prototype["GetAreaMinZ"]=EventsBasedObjectVariant.prototype.GetAreaMinZ=function(){var self=this.ptr;return _emscripten_bind_EventsBasedObjectVariant_GetAreaMinZ_0(self)};EventsBasedObjectVariant.prototype["GetAreaMaxX"]=EventsBasedObjectVariant.prototype.GetAreaMaxX=function(){var self=this.ptr;return _emscripten_bind_EventsBasedObjectVariant_GetAreaMaxX_0(self)};EventsBasedObjectVariant.prototype["GetAreaMaxY"]=EventsBasedObjectVariant.prototype.GetAreaMaxY=function(){var self=this.ptr;return _emscripten_bind_EventsBasedObjectVariant_GetAreaMaxY_0(self)};EventsBasedObjectVariant.prototype["GetAreaMaxZ"]=EventsBasedObjectVariant.prototype.GetAreaMaxZ=function(){var self=this.ptr;return _emscripten_bind_EventsBasedObjectVariant_GetAreaMaxZ_0(self)};EventsBasedObjectVariant.prototype["SetAreaMinX"]=EventsBasedObjectVariant.prototype.SetAreaMinX=function(value){var self=this.ptr;if(value&&typeof value==="object")value=value.ptr;_emscripten_bind_EventsBasedObjectVariant_SetAreaMinX_1(self,value)};EventsBasedObjectVariant.prototype["SetAreaMinY"]=EventsBasedObjectVariant.prototype.SetAreaMinY=function(value){var self=this.ptr;if(value&&typeof value==="object")value=value.ptr;_emscripten_bind_EventsBasedObjectVariant_SetAreaMinY_1(self,value)};EventsBasedObjectVariant.prototype["SetAreaMinZ"]=EventsBasedObjectVariant.prototype.SetAreaMinZ=function(value){var self=this.ptr;if(value&&typeof value==="object")value=value.ptr;_emscripten_bind_EventsBasedObjectVariant_SetAreaMinZ_1(self,value)};EventsBasedObjectVariant.prototype["SetAreaMaxX"]=EventsBasedObjectVariant.prototype.SetAreaMaxX=function(value){var self=this.ptr;if(value&&typeof value==="object")value=value.ptr;_emscripten_bind_EventsBasedObjectVariant_SetAreaMaxX_1(self,value)};EventsBasedObjectVariant.prototype["SetAreaMaxY"]=EventsBasedObjectVariant.prototype.SetAreaMaxY=function(value){var self=this.ptr;if(value&&typeof value==="object")value=value.ptr;_emscripten_bind_EventsBasedObjectVariant_SetAreaMaxY_1(self,value)};EventsBasedObjectVariant.prototype["SetAreaMaxZ"]=EventsBasedObjectVariant.prototype.SetAreaMaxZ=function(value){var self=this.ptr;if(value&&typeof value==="object")value=value.ptr;_emscripten_bind_EventsBasedObjectVariant_SetAreaMaxZ_1(self,value)};EventsBasedObjectVariant.prototype["SetAssetStoreAssetId"]=EventsBasedObjectVariant.prototype.SetAssetStoreAssetId=function(assetStoreAssetId){var self=this.ptr;ensureCache.prepare();if(assetStoreAssetId&&typeof assetStoreAssetId==="object")assetStoreAssetId=assetStoreAssetId.ptr;else assetStoreAssetId=ensureString(assetStoreAssetId);_emscripten_bind_EventsBasedObjectVariant_SetAssetStoreAssetId_1(self,assetStoreAssetId)};EventsBasedObjectVariant.prototype["GetAssetStoreAssetId"]=EventsBasedObjectVariant.prototype.GetAssetStoreAssetId=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_EventsBasedObjectVariant_GetAssetStoreAssetId_0(self))};EventsBasedObjectVariant.prototype["SetAssetStoreOriginalName"]=EventsBasedObjectVariant.prototype.SetAssetStoreOriginalName=function(assetStoreOriginalName){var self=this.ptr;ensureCache.prepare();if(assetStoreOriginalName&&typeof assetStoreOriginalName==="object")assetStoreOriginalName=assetStoreOriginalName.ptr;else assetStoreOriginalName=ensureString(assetStoreOriginalName);_emscripten_bind_EventsBasedObjectVariant_SetAssetStoreOriginalName_1(self,assetStoreOriginalName)};EventsBasedObjectVariant.prototype["GetAssetStoreOriginalName"]=EventsBasedObjectVariant.prototype.GetAssetStoreOriginalName=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_EventsBasedObjectVariant_GetAssetStoreOriginalName_0(self))};EventsBasedObjectVariant.prototype["GetAssociatedEditorSettings"]=EventsBasedObjectVariant.prototype.GetAssociatedEditorSettings=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_EventsBasedObjectVariant_GetAssociatedEditorSettings_0(self),EditorSettings)};EventsBasedObjectVariant.prototype["SerializeTo"]=EventsBasedObjectVariant.prototype.SerializeTo=function(element){var self=this.ptr;if(element&&typeof element==="object")element=element.ptr;_emscripten_bind_EventsBasedObjectVariant_SerializeTo_1(self,element)};EventsBasedObjectVariant.prototype["UnserializeFrom"]=EventsBasedObjectVariant.prototype.UnserializeFrom=function(project,element){var self=this.ptr;if(project&&typeof project==="object")project=project.ptr;if(element&&typeof element==="object")element=element.ptr;_emscripten_bind_EventsBasedObjectVariant_UnserializeFrom_2(self,project,element)};EventsBasedObjectVariant.prototype["__destroy__"]=EventsBasedObjectVariant.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_EventsBasedObjectVariant___destroy___0(self)};function EventsBasedObjectVariantsContainer(){throw"cannot construct a EventsBasedObjectVariantsContainer, no constructor in IDL"}EventsBasedObjectVariantsContainer.prototype=Object.create(WrapperObject.prototype);EventsBasedObjectVariantsContainer.prototype.constructor=EventsBasedObjectVariantsContainer;EventsBasedObjectVariantsContainer.prototype.__class__=EventsBasedObjectVariantsContainer;EventsBasedObjectVariantsContainer.__cache__={};Module["EventsBasedObjectVariantsContainer"]=EventsBasedObjectVariantsContainer;EventsBasedObjectVariantsContainer.prototype["InsertNewVariant"]=EventsBasedObjectVariantsContainer.prototype.InsertNewVariant=function(name,pos){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);if(pos&&typeof pos==="object")pos=pos.ptr;return wrapPointer(_emscripten_bind_EventsBasedObjectVariantsContainer_InsertNewVariant_2(self,name,pos),EventsBasedObjectVariant)};EventsBasedObjectVariantsContainer.prototype["InsertVariant"]=EventsBasedObjectVariantsContainer.prototype.InsertVariant=function(variant,pos){var self=this.ptr;if(variant&&typeof variant==="object")variant=variant.ptr;if(pos&&typeof pos==="object")pos=pos.ptr;return wrapPointer(_emscripten_bind_EventsBasedObjectVariantsContainer_InsertVariant_2(self,variant,pos),EventsBasedObjectVariant)};EventsBasedObjectVariantsContainer.prototype["HasVariantNamed"]=EventsBasedObjectVariantsContainer.prototype.HasVariantNamed=function(name){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);return!!_emscripten_bind_EventsBasedObjectVariantsContainer_HasVariantNamed_1(self,name)};EventsBasedObjectVariantsContainer.prototype["GetVariant"]=EventsBasedObjectVariantsContainer.prototype.GetVariant=function(name){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);return wrapPointer(_emscripten_bind_EventsBasedObjectVariantsContainer_GetVariant_1(self,name),EventsBasedObjectVariant)};EventsBasedObjectVariantsContainer.prototype["GetVariantAt"]=EventsBasedObjectVariantsContainer.prototype.GetVariantAt=function(pos){var self=this.ptr;if(pos&&typeof pos==="object")pos=pos.ptr;return wrapPointer(_emscripten_bind_EventsBasedObjectVariantsContainer_GetVariantAt_1(self,pos),EventsBasedObjectVariant)};EventsBasedObjectVariantsContainer.prototype["RemoveVariant"]=EventsBasedObjectVariantsContainer.prototype.RemoveVariant=function(name){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);_emscripten_bind_EventsBasedObjectVariantsContainer_RemoveVariant_1(self,name)};EventsBasedObjectVariantsContainer.prototype["MoveVariant"]=EventsBasedObjectVariantsContainer.prototype.MoveVariant=function(oldIndex,newIndex){var self=this.ptr;if(oldIndex&&typeof oldIndex==="object")oldIndex=oldIndex.ptr;if(newIndex&&typeof newIndex==="object")newIndex=newIndex.ptr;_emscripten_bind_EventsBasedObjectVariantsContainer_MoveVariant_2(self,oldIndex,newIndex)};EventsBasedObjectVariantsContainer.prototype["GetVariantsCount"]=EventsBasedObjectVariantsContainer.prototype.GetVariantsCount=function(){var self=this.ptr;return _emscripten_bind_EventsBasedObjectVariantsContainer_GetVariantsCount_0(self)};EventsBasedObjectVariantsContainer.prototype["GetVariantPosition"]=EventsBasedObjectVariantsContainer.prototype.GetVariantPosition=function(variant){var self=this.ptr;if(variant&&typeof variant==="object")variant=variant.ptr;return _emscripten_bind_EventsBasedObjectVariantsContainer_GetVariantPosition_1(self,variant)};EventsBasedObjectVariantsContainer.prototype["__destroy__"]=EventsBasedObjectVariantsContainer.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_EventsBasedObjectVariantsContainer___destroy___0(self)};function EventsBasedObjectsList(){throw"cannot construct a EventsBasedObjectsList, no constructor in IDL"}EventsBasedObjectsList.prototype=Object.create(WrapperObject.prototype);EventsBasedObjectsList.prototype.constructor=EventsBasedObjectsList;EventsBasedObjectsList.prototype.__class__=EventsBasedObjectsList;EventsBasedObjectsList.__cache__={};Module["EventsBasedObjectsList"]=EventsBasedObjectsList;EventsBasedObjectsList.prototype["InsertNew"]=EventsBasedObjectsList.prototype.InsertNew=function(name,pos){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);if(pos&&typeof pos==="object")pos=pos.ptr;return wrapPointer(_emscripten_bind_EventsBasedObjectsList_InsertNew_2(self,name,pos),EventsBasedObject)};EventsBasedObjectsList.prototype["Insert"]=EventsBasedObjectsList.prototype.Insert=function(item,pos){var self=this.ptr;if(item&&typeof item==="object")item=item.ptr;if(pos&&typeof pos==="object")pos=pos.ptr;return wrapPointer(_emscripten_bind_EventsBasedObjectsList_Insert_2(self,item,pos),EventsBasedObject)};EventsBasedObjectsList.prototype["Has"]=EventsBasedObjectsList.prototype.Has=function(name){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);return!!_emscripten_bind_EventsBasedObjectsList_Has_1(self,name)};EventsBasedObjectsList.prototype["Get"]=EventsBasedObjectsList.prototype.Get=function(name){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);return wrapPointer(_emscripten_bind_EventsBasedObjectsList_Get_1(self,name),EventsBasedObject)};EventsBasedObjectsList.prototype["GetAt"]=EventsBasedObjectsList.prototype.GetAt=function(pos){var self=this.ptr;if(pos&&typeof pos==="object")pos=pos.ptr;return wrapPointer(_emscripten_bind_EventsBasedObjectsList_GetAt_1(self,pos),EventsBasedObject)};EventsBasedObjectsList.prototype["Remove"]=EventsBasedObjectsList.prototype.Remove=function(name){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);_emscripten_bind_EventsBasedObjectsList_Remove_1(self,name)};EventsBasedObjectsList.prototype["Move"]=EventsBasedObjectsList.prototype.Move=function(oldIndex,newIndex){var self=this.ptr;if(oldIndex&&typeof oldIndex==="object")oldIndex=oldIndex.ptr;if(newIndex&&typeof newIndex==="object")newIndex=newIndex.ptr;_emscripten_bind_EventsBasedObjectsList_Move_2(self,oldIndex,newIndex)};EventsBasedObjectsList.prototype["GetCount"]=EventsBasedObjectsList.prototype.GetCount=function(){var self=this.ptr;return _emscripten_bind_EventsBasedObjectsList_GetCount_0(self)};EventsBasedObjectsList.prototype["GetPosition"]=EventsBasedObjectsList.prototype.GetPosition=function(item){var self=this.ptr;if(item&&typeof item==="object")item=item.ptr;return _emscripten_bind_EventsBasedObjectsList_GetPosition_1(self,item)};EventsBasedObjectsList.prototype["size"]=EventsBasedObjectsList.prototype.size=function(){var self=this.ptr;return _emscripten_bind_EventsBasedObjectsList_size_0(self)};EventsBasedObjectsList.prototype["at"]=EventsBasedObjectsList.prototype.at=function(index){var self=this.ptr;if(index&&typeof index==="object")index=index.ptr;return wrapPointer(_emscripten_bind_EventsBasedObjectsList_at_1(self,index),EventsBasedObject)};EventsBasedObjectsList.prototype["__destroy__"]=EventsBasedObjectsList.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_EventsBasedObjectsList___destroy___0(self)};function PropertyFolderOrProperty(){this.ptr=_emscripten_bind_PropertyFolderOrProperty_PropertyFolderOrProperty_0();getCache(PropertyFolderOrProperty)[this.ptr]=this}PropertyFolderOrProperty.prototype=Object.create(WrapperObject.prototype);PropertyFolderOrProperty.prototype.constructor=PropertyFolderOrProperty;PropertyFolderOrProperty.prototype.__class__=PropertyFolderOrProperty;PropertyFolderOrProperty.__cache__={};Module["PropertyFolderOrProperty"]=PropertyFolderOrProperty;PropertyFolderOrProperty.prototype["IsFolder"]=PropertyFolderOrProperty.prototype.IsFolder=function(){var self=this.ptr;return!!_emscripten_bind_PropertyFolderOrProperty_IsFolder_0(self)};PropertyFolderOrProperty.prototype["IsRootFolder"]=PropertyFolderOrProperty.prototype.IsRootFolder=function(){var self=this.ptr;return!!_emscripten_bind_PropertyFolderOrProperty_IsRootFolder_0(self)};PropertyFolderOrProperty.prototype["GetProperty"]=PropertyFolderOrProperty.prototype.GetProperty=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_PropertyFolderOrProperty_GetProperty_0(self),NamedPropertyDescriptor)};PropertyFolderOrProperty.prototype["GetFolderName"]=PropertyFolderOrProperty.prototype.GetFolderName=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_PropertyFolderOrProperty_GetFolderName_0(self))};PropertyFolderOrProperty.prototype["SetFolderName"]=PropertyFolderOrProperty.prototype.SetFolderName=function(name){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);_emscripten_bind_PropertyFolderOrProperty_SetFolderName_1(self,name)};PropertyFolderOrProperty.prototype["HasPropertyNamed"]=PropertyFolderOrProperty.prototype.HasPropertyNamed=function(name){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);return!!_emscripten_bind_PropertyFolderOrProperty_HasPropertyNamed_1(self,name)};PropertyFolderOrProperty.prototype["GetPropertyNamed"]=PropertyFolderOrProperty.prototype.GetPropertyNamed=function(name){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);return wrapPointer(_emscripten_bind_PropertyFolderOrProperty_GetPropertyNamed_1(self,name),PropertyFolderOrProperty)};PropertyFolderOrProperty.prototype["GetChildrenCount"]=PropertyFolderOrProperty.prototype.GetChildrenCount=function(){var self=this.ptr;return _emscripten_bind_PropertyFolderOrProperty_GetChildrenCount_0(self)};PropertyFolderOrProperty.prototype["GetChildAt"]=PropertyFolderOrProperty.prototype.GetChildAt=function(pos){var self=this.ptr;if(pos&&typeof pos==="object")pos=pos.ptr;return wrapPointer(_emscripten_bind_PropertyFolderOrProperty_GetChildAt_1(self,pos),PropertyFolderOrProperty)};PropertyFolderOrProperty.prototype["GetPropertyChild"]=PropertyFolderOrProperty.prototype.GetPropertyChild=function(name){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);return wrapPointer(_emscripten_bind_PropertyFolderOrProperty_GetPropertyChild_1(self,name),PropertyFolderOrProperty)};PropertyFolderOrProperty.prototype["GetOrCreateChildFolder"]=PropertyFolderOrProperty.prototype.GetOrCreateChildFolder=function(name){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);return wrapPointer(_emscripten_bind_PropertyFolderOrProperty_GetOrCreateChildFolder_1(self,name),PropertyFolderOrProperty)};PropertyFolderOrProperty.prototype["GetChildPosition"]=PropertyFolderOrProperty.prototype.GetChildPosition=function(child){var self=this.ptr;if(child&&typeof child==="object")child=child.ptr;return _emscripten_bind_PropertyFolderOrProperty_GetChildPosition_1(self,child)};PropertyFolderOrProperty.prototype["GetParent"]=PropertyFolderOrProperty.prototype.GetParent=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_PropertyFolderOrProperty_GetParent_0(self),PropertyFolderOrProperty)};PropertyFolderOrProperty.prototype["InsertNewFolder"]=PropertyFolderOrProperty.prototype.InsertNewFolder=function(name,newPosition){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);if(newPosition&&typeof newPosition==="object")newPosition=newPosition.ptr;return wrapPointer(_emscripten_bind_PropertyFolderOrProperty_InsertNewFolder_2(self,name,newPosition),PropertyFolderOrProperty)};PropertyFolderOrProperty.prototype["MovePropertyFolderOrPropertyToAnotherFolder"]=PropertyFolderOrProperty.prototype.MovePropertyFolderOrPropertyToAnotherFolder=function(propertyFolderOrProperty,newParentFolder,newPosition){var self=this.ptr;if(propertyFolderOrProperty&&typeof propertyFolderOrProperty==="object")propertyFolderOrProperty=propertyFolderOrProperty.ptr;if(newParentFolder&&typeof newParentFolder==="object")newParentFolder=newParentFolder.ptr;if(newPosition&&typeof newPosition==="object")newPosition=newPosition.ptr;_emscripten_bind_PropertyFolderOrProperty_MovePropertyFolderOrPropertyToAnotherFolder_3(self,propertyFolderOrProperty,newParentFolder,newPosition)};PropertyFolderOrProperty.prototype["MoveChild"]=PropertyFolderOrProperty.prototype.MoveChild=function(oldIndex,newIndex){var self=this.ptr;if(oldIndex&&typeof oldIndex==="object")oldIndex=oldIndex.ptr;if(newIndex&&typeof newIndex==="object")newIndex=newIndex.ptr;_emscripten_bind_PropertyFolderOrProperty_MoveChild_2(self,oldIndex,newIndex)};PropertyFolderOrProperty.prototype["RemoveFolderChild"]=PropertyFolderOrProperty.prototype.RemoveFolderChild=function(childToRemove){var self=this.ptr;if(childToRemove&&typeof childToRemove==="object")childToRemove=childToRemove.ptr;_emscripten_bind_PropertyFolderOrProperty_RemoveFolderChild_1(self,childToRemove)};PropertyFolderOrProperty.prototype["IsADescendantOf"]=PropertyFolderOrProperty.prototype.IsADescendantOf=function(otherPropertyFolderOrProperty){var self=this.ptr;if(otherPropertyFolderOrProperty&&typeof otherPropertyFolderOrProperty==="object")otherPropertyFolderOrProperty=otherPropertyFolderOrProperty.ptr;return!!_emscripten_bind_PropertyFolderOrProperty_IsADescendantOf_1(self,otherPropertyFolderOrProperty)};PropertyFolderOrProperty.prototype["__destroy__"]=PropertyFolderOrProperty.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_PropertyFolderOrProperty___destroy___0(self)};function PropertiesContainer(owner){if(owner&&typeof owner==="object")owner=owner.ptr;this.ptr=_emscripten_bind_PropertiesContainer_PropertiesContainer_1(owner);getCache(PropertiesContainer)[this.ptr]=this}PropertiesContainer.prototype=Object.create(WrapperObject.prototype);PropertiesContainer.prototype.constructor=PropertiesContainer;PropertiesContainer.prototype.__class__=PropertiesContainer;PropertiesContainer.__cache__={};Module["PropertiesContainer"]=PropertiesContainer;PropertiesContainer.prototype["InsertNew"]=PropertiesContainer.prototype.InsertNew=function(name,pos){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);if(pos&&typeof pos==="object")pos=pos.ptr;return wrapPointer(_emscripten_bind_PropertiesContainer_InsertNew_2(self,name,pos),NamedPropertyDescriptor)};PropertiesContainer.prototype["Insert"]=PropertiesContainer.prototype.Insert=function(item,pos){var self=this.ptr;if(item&&typeof item==="object")item=item.ptr;if(pos&&typeof pos==="object")pos=pos.ptr;return wrapPointer(_emscripten_bind_PropertiesContainer_Insert_2(self,item,pos),NamedPropertyDescriptor)};PropertiesContainer.prototype["Has"]=PropertiesContainer.prototype.Has=function(name){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);return!!_emscripten_bind_PropertiesContainer_Has_1(self,name)};PropertiesContainer.prototype["Get"]=PropertiesContainer.prototype.Get=function(name){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);return wrapPointer(_emscripten_bind_PropertiesContainer_Get_1(self,name),NamedPropertyDescriptor)};PropertiesContainer.prototype["GetAt"]=PropertiesContainer.prototype.GetAt=function(pos){var self=this.ptr;if(pos&&typeof pos==="object")pos=pos.ptr;return wrapPointer(_emscripten_bind_PropertiesContainer_GetAt_1(self,pos),NamedPropertyDescriptor)};PropertiesContainer.prototype["Remove"]=PropertiesContainer.prototype.Remove=function(name){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);_emscripten_bind_PropertiesContainer_Remove_1(self,name)};PropertiesContainer.prototype["Move"]=PropertiesContainer.prototype.Move=function(oldIndex,newIndex){var self=this.ptr;if(oldIndex&&typeof oldIndex==="object")oldIndex=oldIndex.ptr;if(newIndex&&typeof newIndex==="object")newIndex=newIndex.ptr;_emscripten_bind_PropertiesContainer_Move_2(self,oldIndex,newIndex)};PropertiesContainer.prototype["GetCount"]=PropertiesContainer.prototype.GetCount=function(){var self=this.ptr;return _emscripten_bind_PropertiesContainer_GetCount_0(self)};PropertiesContainer.prototype["GetPosition"]=PropertiesContainer.prototype.GetPosition=function(item){var self=this.ptr;if(item&&typeof item==="object")item=item.ptr;return _emscripten_bind_PropertiesContainer_GetPosition_1(self,item)};PropertiesContainer.prototype["size"]=PropertiesContainer.prototype.size=function(){var self=this.ptr;return _emscripten_bind_PropertiesContainer_size_0(self)};PropertiesContainer.prototype["at"]=PropertiesContainer.prototype.at=function(index){var self=this.ptr;if(index&&typeof index==="object")index=index.ptr;return wrapPointer(_emscripten_bind_PropertiesContainer_at_1(self,index),NamedPropertyDescriptor)};PropertiesContainer.prototype["InsertNewPropertyInFolder"]=PropertiesContainer.prototype.InsertNewPropertyInFolder=function(name,folder,pos){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);if(folder&&typeof folder==="object")folder=folder.ptr;if(pos&&typeof pos==="object")pos=pos.ptr;return wrapPointer(_emscripten_bind_PropertiesContainer_InsertNewPropertyInFolder_3(self,name,folder,pos),NamedPropertyDescriptor)};PropertiesContainer.prototype["GetRootFolder"]=PropertiesContainer.prototype.GetRootFolder=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_PropertiesContainer_GetRootFolder_0(self),PropertyFolderOrProperty)};PropertiesContainer.prototype["GetAllPropertyFolderOrProperty"]=PropertiesContainer.prototype.GetAllPropertyFolderOrProperty=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_PropertiesContainer_GetAllPropertyFolderOrProperty_0(self),VectorPropertyFolderOrProperty)};PropertiesContainer.prototype["AddMissingPropertiesInRootFolder"]=PropertiesContainer.prototype.AddMissingPropertiesInRootFolder=function(){var self=this.ptr;_emscripten_bind_PropertiesContainer_AddMissingPropertiesInRootFolder_0(self)};PropertiesContainer.prototype["__destroy__"]=PropertiesContainer.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_PropertiesContainer___destroy___0(self)};function EventsFunctionsExtension(){this.ptr=_emscripten_bind_EventsFunctionsExtension_EventsFunctionsExtension_0();getCache(EventsFunctionsExtension)[this.ptr]=this}EventsFunctionsExtension.prototype=Object.create(WrapperObject.prototype);EventsFunctionsExtension.prototype.constructor=EventsFunctionsExtension;EventsFunctionsExtension.prototype.__class__=EventsFunctionsExtension;EventsFunctionsExtension.__cache__={};Module["EventsFunctionsExtension"]=EventsFunctionsExtension;EventsFunctionsExtension.prototype["SetNamespace"]=EventsFunctionsExtension.prototype.SetNamespace=function(namespace_){var self=this.ptr;ensureCache.prepare();if(namespace_&&typeof namespace_==="object")namespace_=namespace_.ptr;else namespace_=ensureString(namespace_);return wrapPointer(_emscripten_bind_EventsFunctionsExtension_SetNamespace_1(self,namespace_),EventsFunctionsExtension)};EventsFunctionsExtension.prototype["GetNamespace"]=EventsFunctionsExtension.prototype.GetNamespace=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_EventsFunctionsExtension_GetNamespace_0(self))};EventsFunctionsExtension.prototype["SetVersion"]=EventsFunctionsExtension.prototype.SetVersion=function(version){var self=this.ptr;ensureCache.prepare();if(version&&typeof version==="object")version=version.ptr;else version=ensureString(version);return wrapPointer(_emscripten_bind_EventsFunctionsExtension_SetVersion_1(self,version),EventsFunctionsExtension)};EventsFunctionsExtension.prototype["GetVersion"]=EventsFunctionsExtension.prototype.GetVersion=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_EventsFunctionsExtension_GetVersion_0(self))};EventsFunctionsExtension.prototype["SetShortDescription"]=EventsFunctionsExtension.prototype.SetShortDescription=function(shortDescription){var self=this.ptr;ensureCache.prepare();if(shortDescription&&typeof shortDescription==="object")shortDescription=shortDescription.ptr;else shortDescription=ensureString(shortDescription);return wrapPointer(_emscripten_bind_EventsFunctionsExtension_SetShortDescription_1(self,shortDescription),EventsFunctionsExtension)};EventsFunctionsExtension.prototype["GetShortDescription"]=EventsFunctionsExtension.prototype.GetShortDescription=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_EventsFunctionsExtension_GetShortDescription_0(self))};EventsFunctionsExtension.prototype["SetDescription"]=EventsFunctionsExtension.prototype.SetDescription=function(description){var self=this.ptr;ensureCache.prepare();if(description&&typeof description==="object")description=description.ptr;else description=ensureString(description);return wrapPointer(_emscripten_bind_EventsFunctionsExtension_SetDescription_1(self,description),EventsFunctionsExtension)};EventsFunctionsExtension.prototype["GetDescription"]=EventsFunctionsExtension.prototype.GetDescription=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_EventsFunctionsExtension_GetDescription_0(self))};EventsFunctionsExtension.prototype["SetDimension"]=EventsFunctionsExtension.prototype.SetDimension=function(dimension){var self=this.ptr;ensureCache.prepare();if(dimension&&typeof dimension==="object")dimension=dimension.ptr;else dimension=ensureString(dimension);return wrapPointer(_emscripten_bind_EventsFunctionsExtension_SetDimension_1(self,dimension),EventsFunctionsExtension)};EventsFunctionsExtension.prototype["GetDimension"]=EventsFunctionsExtension.prototype.GetDimension=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_EventsFunctionsExtension_GetDimension_0(self))};EventsFunctionsExtension.prototype["SetName"]=EventsFunctionsExtension.prototype.SetName=function(name){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);return wrapPointer(_emscripten_bind_EventsFunctionsExtension_SetName_1(self,name),EventsFunctionsExtension)};EventsFunctionsExtension.prototype["GetName"]=EventsFunctionsExtension.prototype.GetName=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_EventsFunctionsExtension_GetName_0(self))};EventsFunctionsExtension.prototype["SetFullName"]=EventsFunctionsExtension.prototype.SetFullName=function(fullName){var self=this.ptr;ensureCache.prepare();if(fullName&&typeof fullName==="object")fullName=fullName.ptr;else fullName=ensureString(fullName);return wrapPointer(_emscripten_bind_EventsFunctionsExtension_SetFullName_1(self,fullName),EventsFunctionsExtension)};EventsFunctionsExtension.prototype["GetFullName"]=EventsFunctionsExtension.prototype.GetFullName=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_EventsFunctionsExtension_GetFullName_0(self))};EventsFunctionsExtension.prototype["SetCategory"]=EventsFunctionsExtension.prototype.SetCategory=function(category){var self=this.ptr;ensureCache.prepare();if(category&&typeof category==="object")category=category.ptr;else category=ensureString(category);return wrapPointer(_emscripten_bind_EventsFunctionsExtension_SetCategory_1(self,category),EventsFunctionsExtension)};EventsFunctionsExtension.prototype["GetCategory"]=EventsFunctionsExtension.prototype.GetCategory=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_EventsFunctionsExtension_GetCategory_0(self))};EventsFunctionsExtension.prototype["GetTags"]=EventsFunctionsExtension.prototype.GetTags=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_EventsFunctionsExtension_GetTags_0(self),VectorString)};EventsFunctionsExtension.prototype["GetAuthorIds"]=EventsFunctionsExtension.prototype.GetAuthorIds=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_EventsFunctionsExtension_GetAuthorIds_0(self),VectorString)};EventsFunctionsExtension.prototype["SetAuthor"]=EventsFunctionsExtension.prototype.SetAuthor=function(author){var self=this.ptr;ensureCache.prepare();if(author&&typeof author==="object")author=author.ptr;else author=ensureString(author);return wrapPointer(_emscripten_bind_EventsFunctionsExtension_SetAuthor_1(self,author),EventsFunctionsExtension)};EventsFunctionsExtension.prototype["GetAuthor"]=EventsFunctionsExtension.prototype.GetAuthor=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_EventsFunctionsExtension_GetAuthor_0(self))};EventsFunctionsExtension.prototype["SetPreviewIconUrl"]=EventsFunctionsExtension.prototype.SetPreviewIconUrl=function(previewIconUrl){var self=this.ptr;ensureCache.prepare();if(previewIconUrl&&typeof previewIconUrl==="object")previewIconUrl=previewIconUrl.ptr;else previewIconUrl=ensureString(previewIconUrl);return wrapPointer(_emscripten_bind_EventsFunctionsExtension_SetPreviewIconUrl_1(self,previewIconUrl),EventsFunctionsExtension)};EventsFunctionsExtension.prototype["GetPreviewIconUrl"]=EventsFunctionsExtension.prototype.GetPreviewIconUrl=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_EventsFunctionsExtension_GetPreviewIconUrl_0(self))};EventsFunctionsExtension.prototype["SetIconUrl"]=EventsFunctionsExtension.prototype.SetIconUrl=function(iconUrl){var self=this.ptr;ensureCache.prepare();if(iconUrl&&typeof iconUrl==="object")iconUrl=iconUrl.ptr;else iconUrl=ensureString(iconUrl);return wrapPointer(_emscripten_bind_EventsFunctionsExtension_SetIconUrl_1(self,iconUrl),EventsFunctionsExtension)};EventsFunctionsExtension.prototype["GetIconUrl"]=EventsFunctionsExtension.prototype.GetIconUrl=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_EventsFunctionsExtension_GetIconUrl_0(self))};EventsFunctionsExtension.prototype["SetHelpPath"]=EventsFunctionsExtension.prototype.SetHelpPath=function(helpPath){var self=this.ptr;ensureCache.prepare();if(helpPath&&typeof helpPath==="object")helpPath=helpPath.ptr;else helpPath=ensureString(helpPath);return wrapPointer(_emscripten_bind_EventsFunctionsExtension_SetHelpPath_1(self,helpPath),EventsFunctionsExtension)};EventsFunctionsExtension.prototype["GetHelpPath"]=EventsFunctionsExtension.prototype.GetHelpPath=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_EventsFunctionsExtension_GetHelpPath_0(self))};EventsFunctionsExtension.prototype["SetOrigin"]=EventsFunctionsExtension.prototype.SetOrigin=function(originName,originIdentifier){var self=this.ptr;ensureCache.prepare();if(originName&&typeof originName==="object")originName=originName.ptr;else originName=ensureString(originName);if(originIdentifier&&typeof originIdentifier==="object")originIdentifier=originIdentifier.ptr;else originIdentifier=ensureString(originIdentifier);_emscripten_bind_EventsFunctionsExtension_SetOrigin_2(self,originName,originIdentifier)};EventsFunctionsExtension.prototype["GetOriginName"]=EventsFunctionsExtension.prototype.GetOriginName=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_EventsFunctionsExtension_GetOriginName_0(self))};EventsFunctionsExtension.prototype["GetOriginIdentifier"]=EventsFunctionsExtension.prototype.GetOriginIdentifier=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_EventsFunctionsExtension_GetOriginIdentifier_0(self))};EventsFunctionsExtension.prototype["AddDependency"]=EventsFunctionsExtension.prototype.AddDependency=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_EventsFunctionsExtension_AddDependency_0(self),DependencyMetadata)};EventsFunctionsExtension.prototype["RemoveDependencyAt"]=EventsFunctionsExtension.prototype.RemoveDependencyAt=function(index){var self=this.ptr;if(index&&typeof index==="object")index=index.ptr;_emscripten_bind_EventsFunctionsExtension_RemoveDependencyAt_1(self,index)};EventsFunctionsExtension.prototype["GetAllDependencies"]=EventsFunctionsExtension.prototype.GetAllDependencies=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_EventsFunctionsExtension_GetAllDependencies_0(self),VectorDependencyMetadata)};EventsFunctionsExtension.prototype["AddSourceFile"]=EventsFunctionsExtension.prototype.AddSourceFile=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_EventsFunctionsExtension_AddSourceFile_0(self),SourceFileMetadata)};EventsFunctionsExtension.prototype["RemoveSourceFileAt"]=EventsFunctionsExtension.prototype.RemoveSourceFileAt=function(index){var self=this.ptr;if(index&&typeof index==="object")index=index.ptr;_emscripten_bind_EventsFunctionsExtension_RemoveSourceFileAt_1(self,index)};EventsFunctionsExtension.prototype["GetAllSourceFiles"]=EventsFunctionsExtension.prototype.GetAllSourceFiles=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_EventsFunctionsExtension_GetAllSourceFiles_0(self),VectorSourceFileMetadata)};EventsFunctionsExtension.prototype["GetEventsFunctions"]=EventsFunctionsExtension.prototype.GetEventsFunctions=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_EventsFunctionsExtension_GetEventsFunctions_0(self),EventsFunctionsContainer)};EventsFunctionsExtension.prototype["GetGlobalVariables"]=EventsFunctionsExtension.prototype.GetGlobalVariables=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_EventsFunctionsExtension_GetGlobalVariables_0(self),VariablesContainer)};EventsFunctionsExtension.prototype["GetSceneVariables"]=EventsFunctionsExtension.prototype.GetSceneVariables=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_EventsFunctionsExtension_GetSceneVariables_0(self),VariablesContainer)};EventsFunctionsExtension.prototype["GetEventsBasedBehaviors"]=EventsFunctionsExtension.prototype.GetEventsBasedBehaviors=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_EventsFunctionsExtension_GetEventsBasedBehaviors_0(self),EventsBasedBehaviorsList)};EventsFunctionsExtension.prototype["GetEventsBasedObjects"]=EventsFunctionsExtension.prototype.GetEventsBasedObjects=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_EventsFunctionsExtension_GetEventsBasedObjects_0(self),EventsBasedObjectsList)};EventsFunctionsExtension.prototype["SerializeTo"]=EventsFunctionsExtension.prototype.SerializeTo=function(element){var self=this.ptr;if(element&&typeof element==="object")element=element.ptr;_emscripten_bind_EventsFunctionsExtension_SerializeTo_1(self,element)};EventsFunctionsExtension.prototype["SerializeToExternal"]=EventsFunctionsExtension.prototype.SerializeToExternal=function(element){var self=this.ptr;if(element&&typeof element==="object")element=element.ptr;_emscripten_bind_EventsFunctionsExtension_SerializeToExternal_1(self,element)};EventsFunctionsExtension.prototype["UnserializeFrom"]=EventsFunctionsExtension.prototype.UnserializeFrom=function(project,element){var self=this.ptr;if(project&&typeof project==="object")project=project.ptr;if(element&&typeof element==="object")element=element.ptr;_emscripten_bind_EventsFunctionsExtension_UnserializeFrom_2(self,project,element)};EventsFunctionsExtension.prototype["STATIC_IsExtensionLifecycleEventsFunction"]=EventsFunctionsExtension.prototype.STATIC_IsExtensionLifecycleEventsFunction=function(eventsFunctionName){var self=this.ptr;ensureCache.prepare();if(eventsFunctionName&&typeof eventsFunctionName==="object")eventsFunctionName=eventsFunctionName.ptr;else eventsFunctionName=ensureString(eventsFunctionName);return!!_emscripten_bind_EventsFunctionsExtension_STATIC_IsExtensionLifecycleEventsFunction_1(self,eventsFunctionName)};EventsFunctionsExtension.prototype["__destroy__"]=EventsFunctionsExtension.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_EventsFunctionsExtension___destroy___0(self)};function AbstractFileSystemJS(){this.ptr=_emscripten_bind_AbstractFileSystemJS_AbstractFileSystemJS_0();getCache(AbstractFileSystemJS)[this.ptr]=this}AbstractFileSystemJS.prototype=Object.create(AbstractFileSystem.prototype);AbstractFileSystemJS.prototype.constructor=AbstractFileSystemJS;AbstractFileSystemJS.prototype.__class__=AbstractFileSystemJS;AbstractFileSystemJS.__cache__={};Module["AbstractFileSystemJS"]=AbstractFileSystemJS;AbstractFileSystemJS.prototype["MkDir"]=AbstractFileSystemJS.prototype.MkDir=function(dir){var self=this.ptr;ensureCache.prepare();if(dir&&typeof dir==="object")dir=dir.ptr;else dir=ensureString(dir);_emscripten_bind_AbstractFileSystemJS_MkDir_1(self,dir)};AbstractFileSystemJS.prototype["DirExists"]=AbstractFileSystemJS.prototype.DirExists=function(dir){var self=this.ptr;ensureCache.prepare();if(dir&&typeof dir==="object")dir=dir.ptr;else dir=ensureString(dir);_emscripten_bind_AbstractFileSystemJS_DirExists_1(self,dir)};AbstractFileSystemJS.prototype["ClearDir"]=AbstractFileSystemJS.prototype.ClearDir=function(dir){var self=this.ptr;ensureCache.prepare();if(dir&&typeof dir==="object")dir=dir.ptr;else dir=ensureString(dir);_emscripten_bind_AbstractFileSystemJS_ClearDir_1(self,dir)};AbstractFileSystemJS.prototype["GetTempDir"]=AbstractFileSystemJS.prototype.GetTempDir=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_AbstractFileSystemJS_GetTempDir_0(self))};AbstractFileSystemJS.prototype["FileNameFrom"]=AbstractFileSystemJS.prototype.FileNameFrom=function(dir){var self=this.ptr;ensureCache.prepare();if(dir&&typeof dir==="object")dir=dir.ptr;else dir=ensureString(dir);return UTF8ToString(_emscripten_bind_AbstractFileSystemJS_FileNameFrom_1(self,dir))};AbstractFileSystemJS.prototype["DirNameFrom"]=AbstractFileSystemJS.prototype.DirNameFrom=function(dir){var self=this.ptr;ensureCache.prepare();if(dir&&typeof dir==="object")dir=dir.ptr;else dir=ensureString(dir);return UTF8ToString(_emscripten_bind_AbstractFileSystemJS_DirNameFrom_1(self,dir))};AbstractFileSystemJS.prototype["IsAbsolute"]=AbstractFileSystemJS.prototype.IsAbsolute=function(fn){var self=this.ptr;ensureCache.prepare();if(fn&&typeof fn==="object")fn=fn.ptr;else fn=ensureString(fn);return!!_emscripten_bind_AbstractFileSystemJS_IsAbsolute_1(self,fn)};AbstractFileSystemJS.prototype["CopyFile"]=AbstractFileSystemJS.prototype.CopyFile=function(src,dest){var self=this.ptr;ensureCache.prepare();if(src&&typeof src==="object")src=src.ptr;else src=ensureString(src);if(dest&&typeof dest==="object")dest=dest.ptr;else dest=ensureString(dest);_emscripten_bind_AbstractFileSystemJS_CopyFile_2(self,src,dest)};AbstractFileSystemJS.prototype["WriteToFile"]=AbstractFileSystemJS.prototype.WriteToFile=function(fn,content){var self=this.ptr;ensureCache.prepare();if(fn&&typeof fn==="object")fn=fn.ptr;else fn=ensureString(fn);if(content&&typeof content==="object")content=content.ptr;else content=ensureString(content);_emscripten_bind_AbstractFileSystemJS_WriteToFile_2(self,fn,content)};AbstractFileSystemJS.prototype["ReadFile"]=AbstractFileSystemJS.prototype.ReadFile=function(fn){var self=this.ptr;ensureCache.prepare();if(fn&&typeof fn==="object")fn=fn.ptr;else fn=ensureString(fn);return UTF8ToString(_emscripten_bind_AbstractFileSystemJS_ReadFile_1(self,fn))};AbstractFileSystemJS.prototype["ReadDir"]=AbstractFileSystemJS.prototype.ReadDir=function(dir){var self=this.ptr;ensureCache.prepare();if(dir&&typeof dir==="object")dir=dir.ptr;else dir=ensureString(dir);return wrapPointer(_emscripten_bind_AbstractFileSystemJS_ReadDir_1(self,dir),VectorString)};AbstractFileSystemJS.prototype["FileExists"]=AbstractFileSystemJS.prototype.FileExists=function(fn){var self=this.ptr;ensureCache.prepare();if(fn&&typeof fn==="object")fn=fn.ptr;else fn=ensureString(fn);return!!_emscripten_bind_AbstractFileSystemJS_FileExists_1(self,fn)};AbstractFileSystemJS.prototype["__destroy__"]=AbstractFileSystemJS.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_AbstractFileSystemJS___destroy___0(self)};function ProjectResourcesAdder(){throw"cannot construct a ProjectResourcesAdder, no constructor in IDL"}ProjectResourcesAdder.prototype=Object.create(WrapperObject.prototype);ProjectResourcesAdder.prototype.constructor=ProjectResourcesAdder;ProjectResourcesAdder.prototype.__class__=ProjectResourcesAdder;ProjectResourcesAdder.__cache__={};Module["ProjectResourcesAdder"]=ProjectResourcesAdder;ProjectResourcesAdder.prototype["STATIC_GetAllUseless"]=ProjectResourcesAdder.prototype.STATIC_GetAllUseless=function(project,resourceType){var self=this.ptr;ensureCache.prepare();if(project&&typeof project==="object")project=project.ptr;if(resourceType&&typeof resourceType==="object")resourceType=resourceType.ptr;else resourceType=ensureString(resourceType);return wrapPointer(_emscripten_bind_ProjectResourcesAdder_STATIC_GetAllUseless_2(self,project,resourceType),VectorString)};ProjectResourcesAdder.prototype["STATIC_RemoveAllUseless"]=ProjectResourcesAdder.prototype.STATIC_RemoveAllUseless=function(project,resourceType){var self=this.ptr;ensureCache.prepare();if(project&&typeof project==="object")project=project.ptr;if(resourceType&&typeof resourceType==="object")resourceType=resourceType.ptr;else resourceType=ensureString(resourceType);_emscripten_bind_ProjectResourcesAdder_STATIC_RemoveAllUseless_2(self,project,resourceType)};ProjectResourcesAdder.prototype["__destroy__"]=ProjectResourcesAdder.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_ProjectResourcesAdder___destroy___0(self)};function ArbitraryEventsWorker(){throw"cannot construct a ArbitraryEventsWorker, no constructor in IDL"}ArbitraryEventsWorker.prototype=Object.create(WrapperObject.prototype);ArbitraryEventsWorker.prototype.constructor=ArbitraryEventsWorker;ArbitraryEventsWorker.prototype.__class__=ArbitraryEventsWorker;ArbitraryEventsWorker.__cache__={};Module["ArbitraryEventsWorker"]=ArbitraryEventsWorker;ArbitraryEventsWorker.prototype["Launch"]=ArbitraryEventsWorker.prototype.Launch=function(events){var self=this.ptr;if(events&&typeof events==="object")events=events.ptr;_emscripten_bind_ArbitraryEventsWorker_Launch_1(self,events)};ArbitraryEventsWorker.prototype["__destroy__"]=ArbitraryEventsWorker.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_ArbitraryEventsWorker___destroy___0(self)};function ArbitraryObjectsWorker(){throw"cannot construct a ArbitraryObjectsWorker, no constructor in IDL"}ArbitraryObjectsWorker.prototype=Object.create(WrapperObject.prototype);ArbitraryObjectsWorker.prototype.constructor=ArbitraryObjectsWorker;ArbitraryObjectsWorker.prototype.__class__=ArbitraryObjectsWorker;ArbitraryObjectsWorker.__cache__={};Module["ArbitraryObjectsWorker"]=ArbitraryObjectsWorker;ArbitraryObjectsWorker.prototype["Launch"]=ArbitraryObjectsWorker.prototype.Launch=function(container){var self=this.ptr;if(container&&typeof container==="object")container=container.ptr;_emscripten_bind_ArbitraryObjectsWorker_Launch_1(self,container)};ArbitraryObjectsWorker.prototype["__destroy__"]=ArbitraryObjectsWorker.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_ArbitraryObjectsWorker___destroy___0(self)};function EventsParametersLister(project){if(project&&typeof project==="object")project=project.ptr;this.ptr=_emscripten_bind_EventsParametersLister_EventsParametersLister_1(project);getCache(EventsParametersLister)[this.ptr]=this}EventsParametersLister.prototype=Object.create(WrapperObject.prototype);EventsParametersLister.prototype.constructor=EventsParametersLister;EventsParametersLister.prototype.__class__=EventsParametersLister;EventsParametersLister.__cache__={};Module["EventsParametersLister"]=EventsParametersLister;EventsParametersLister.prototype["GetParametersAndTypes"]=EventsParametersLister.prototype.GetParametersAndTypes=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_EventsParametersLister_GetParametersAndTypes_0(self),MapStringString)};EventsParametersLister.prototype["Launch"]=EventsParametersLister.prototype.Launch=function(events){var self=this.ptr;if(events&&typeof events==="object")events=events.ptr;_emscripten_bind_EventsParametersLister_Launch_1(self,events)};EventsParametersLister.prototype["__destroy__"]=EventsParametersLister.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_EventsParametersLister___destroy___0(self)};function EventsPositionFinder(){this.ptr=_emscripten_bind_EventsPositionFinder_EventsPositionFinder_0();getCache(EventsPositionFinder)[this.ptr]=this}EventsPositionFinder.prototype=Object.create(WrapperObject.prototype);EventsPositionFinder.prototype.constructor=EventsPositionFinder;EventsPositionFinder.prototype.__class__=EventsPositionFinder;EventsPositionFinder.__cache__={};Module["EventsPositionFinder"]=EventsPositionFinder;EventsPositionFinder.prototype["GetPositions"]=EventsPositionFinder.prototype.GetPositions=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_EventsPositionFinder_GetPositions_0(self),VectorInt)};EventsPositionFinder.prototype["AddEventToSearch"]=EventsPositionFinder.prototype.AddEventToSearch=function(event){var self=this.ptr;if(event&&typeof event==="object")event=event.ptr;_emscripten_bind_EventsPositionFinder_AddEventToSearch_1(self,event)};EventsPositionFinder.prototype["Launch"]=EventsPositionFinder.prototype.Launch=function(events){var self=this.ptr;if(events&&typeof events==="object")events=events.ptr;_emscripten_bind_EventsPositionFinder_Launch_1(self,events)};EventsPositionFinder.prototype["__destroy__"]=EventsPositionFinder.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_EventsPositionFinder___destroy___0(self)};function EventsTypesLister(project){if(project&&typeof project==="object")project=project.ptr;this.ptr=_emscripten_bind_EventsTypesLister_EventsTypesLister_1(project);getCache(EventsTypesLister)[this.ptr]=this}EventsTypesLister.prototype=Object.create(WrapperObject.prototype);EventsTypesLister.prototype.constructor=EventsTypesLister;EventsTypesLister.prototype.__class__=EventsTypesLister;EventsTypesLister.__cache__={};Module["EventsTypesLister"]=EventsTypesLister;EventsTypesLister.prototype["GetAllEventsTypes"]=EventsTypesLister.prototype.GetAllEventsTypes=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_EventsTypesLister_GetAllEventsTypes_0(self),VectorString)};EventsTypesLister.prototype["GetAllConditionsTypes"]=EventsTypesLister.prototype.GetAllConditionsTypes=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_EventsTypesLister_GetAllConditionsTypes_0(self),VectorString)};EventsTypesLister.prototype["GetAllActionsTypes"]=EventsTypesLister.prototype.GetAllActionsTypes=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_EventsTypesLister_GetAllActionsTypes_0(self),VectorString)};EventsTypesLister.prototype["Launch"]=EventsTypesLister.prototype.Launch=function(events){var self=this.ptr;if(events&&typeof events==="object")events=events.ptr;_emscripten_bind_EventsTypesLister_Launch_1(self,events)};EventsTypesLister.prototype["__destroy__"]=EventsTypesLister.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_EventsTypesLister___destroy___0(self)};function InstructionsTypeRenamer(project,oldType,newType){ensureCache.prepare();if(project&&typeof project==="object")project=project.ptr;if(oldType&&typeof oldType==="object")oldType=oldType.ptr;else oldType=ensureString(oldType);if(newType&&typeof newType==="object")newType=newType.ptr;else newType=ensureString(newType);this.ptr=_emscripten_bind_InstructionsTypeRenamer_InstructionsTypeRenamer_3(project,oldType,newType);getCache(InstructionsTypeRenamer)[this.ptr]=this}InstructionsTypeRenamer.prototype=Object.create(WrapperObject.prototype);InstructionsTypeRenamer.prototype.constructor=InstructionsTypeRenamer;InstructionsTypeRenamer.prototype.__class__=InstructionsTypeRenamer;InstructionsTypeRenamer.__cache__={};Module["InstructionsTypeRenamer"]=InstructionsTypeRenamer;InstructionsTypeRenamer.prototype["Launch"]=InstructionsTypeRenamer.prototype.Launch=function(events){var self=this.ptr;if(events&&typeof events==="object")events=events.ptr;_emscripten_bind_InstructionsTypeRenamer_Launch_1(self,events)};InstructionsTypeRenamer.prototype["__destroy__"]=InstructionsTypeRenamer.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_InstructionsTypeRenamer___destroy___0(self)};function EventsContext(){throw"cannot construct a EventsContext, no constructor in IDL"}EventsContext.prototype=Object.create(WrapperObject.prototype);EventsContext.prototype.constructor=EventsContext;EventsContext.prototype.__class__=EventsContext;EventsContext.__cache__={};Module["EventsContext"]=EventsContext;EventsContext.prototype["GetReferencedObjectOrGroupNames"]=EventsContext.prototype.GetReferencedObjectOrGroupNames=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_EventsContext_GetReferencedObjectOrGroupNames_0(self),SetString)};EventsContext.prototype["GetObjectNames"]=EventsContext.prototype.GetObjectNames=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_EventsContext_GetObjectNames_0(self),SetString)};EventsContext.prototype["GetBehaviorNamesOfObjectOrGroup"]=EventsContext.prototype.GetBehaviorNamesOfObjectOrGroup=function(objectOrGroupName){var self=this.ptr;ensureCache.prepare();if(objectOrGroupName&&typeof objectOrGroupName==="object")objectOrGroupName=objectOrGroupName.ptr;else objectOrGroupName=ensureString(objectOrGroupName);return wrapPointer(_emscripten_bind_EventsContext_GetBehaviorNamesOfObjectOrGroup_1(self,objectOrGroupName),SetString)};EventsContext.prototype["__destroy__"]=EventsContext.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_EventsContext___destroy___0(self)};function EventsContextAnalyzer(platform){if(platform&&typeof platform==="object")platform=platform.ptr;this.ptr=_emscripten_bind_EventsContextAnalyzer_EventsContextAnalyzer_1(platform);getCache(EventsContextAnalyzer)[this.ptr]=this}EventsContextAnalyzer.prototype=Object.create(WrapperObject.prototype);EventsContextAnalyzer.prototype.constructor=EventsContextAnalyzer;EventsContextAnalyzer.prototype.__class__=EventsContextAnalyzer;EventsContextAnalyzer.__cache__={};Module["EventsContextAnalyzer"]=EventsContextAnalyzer;EventsContextAnalyzer.prototype["GetEventsContext"]=EventsContextAnalyzer.prototype.GetEventsContext=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_EventsContextAnalyzer_GetEventsContext_0(self),EventsContext)};EventsContextAnalyzer.prototype["Launch"]=EventsContextAnalyzer.prototype.Launch=function(events,projectScopedContainers){var self=this.ptr;if(events&&typeof events==="object")events=events.ptr;if(projectScopedContainers&&typeof projectScopedContainers==="object")projectScopedContainers=projectScopedContainers.ptr;_emscripten_bind_EventsContextAnalyzer_Launch_2(self,events,projectScopedContainers)};EventsContextAnalyzer.prototype["__destroy__"]=EventsContextAnalyzer.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_EventsContextAnalyzer___destroy___0(self)};function ReadOnlyArbitraryEventsWorkerWithContextJS(){this.ptr=_emscripten_bind_ReadOnlyArbitraryEventsWorkerWithContextJS_ReadOnlyArbitraryEventsWorkerWithContextJS_0();getCache(ReadOnlyArbitraryEventsWorkerWithContextJS)[this.ptr]=this}ReadOnlyArbitraryEventsWorkerWithContextJS.prototype=Object.create(ReadOnlyArbitraryEventsWorkerWithContext.prototype);ReadOnlyArbitraryEventsWorkerWithContextJS.prototype.constructor=ReadOnlyArbitraryEventsWorkerWithContextJS;ReadOnlyArbitraryEventsWorkerWithContextJS.prototype.__class__=ReadOnlyArbitraryEventsWorkerWithContextJS;ReadOnlyArbitraryEventsWorkerWithContextJS.__cache__={};Module["ReadOnlyArbitraryEventsWorkerWithContextJS"]=ReadOnlyArbitraryEventsWorkerWithContextJS;ReadOnlyArbitraryEventsWorkerWithContextJS.prototype["DoOnLaunch"]=ReadOnlyArbitraryEventsWorkerWithContextJS.prototype.DoOnLaunch=function(events){var self=this.ptr;if(events&&typeof events==="object")events=events.ptr;_emscripten_bind_ReadOnlyArbitraryEventsWorkerWithContextJS_DoOnLaunch_1(self,events)};ReadOnlyArbitraryEventsWorkerWithContextJS.prototype["DoVisitEvent"]=ReadOnlyArbitraryEventsWorkerWithContextJS.prototype.DoVisitEvent=function(event){var self=this.ptr;if(event&&typeof event==="object")event=event.ptr;_emscripten_bind_ReadOnlyArbitraryEventsWorkerWithContextJS_DoVisitEvent_1(self,event)};ReadOnlyArbitraryEventsWorkerWithContextJS.prototype["DoVisitInstruction"]=ReadOnlyArbitraryEventsWorkerWithContextJS.prototype.DoVisitInstruction=function(instruction,isCondition,projectScopedContainers){var self=this.ptr;if(instruction&&typeof instruction==="object")instruction=instruction.ptr;if(isCondition&&typeof isCondition==="object")isCondition=isCondition.ptr;if(projectScopedContainers&&typeof projectScopedContainers==="object")projectScopedContainers=projectScopedContainers.ptr;_emscripten_bind_ReadOnlyArbitraryEventsWorkerWithContextJS_DoVisitInstruction_3(self,instruction,isCondition,projectScopedContainers)};ReadOnlyArbitraryEventsWorkerWithContextJS.prototype["SetSkipDisabledEvents"]=ReadOnlyArbitraryEventsWorkerWithContextJS.prototype.SetSkipDisabledEvents=function(skip){var self=this.ptr;if(skip&&typeof skip==="object")skip=skip.ptr;_emscripten_bind_ReadOnlyArbitraryEventsWorkerWithContextJS_SetSkipDisabledEvents_1(self,skip)};ReadOnlyArbitraryEventsWorkerWithContextJS.prototype["Launch"]=ReadOnlyArbitraryEventsWorkerWithContextJS.prototype.Launch=function(events,projectScopedContainers){var self=this.ptr;if(events&&typeof events==="object")events=events.ptr;if(projectScopedContainers&&typeof projectScopedContainers==="object")projectScopedContainers=projectScopedContainers.ptr;_emscripten_bind_ReadOnlyArbitraryEventsWorkerWithContextJS_Launch_2(self,events,projectScopedContainers)};ReadOnlyArbitraryEventsWorkerWithContextJS.prototype["__destroy__"]=ReadOnlyArbitraryEventsWorkerWithContextJS.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_ReadOnlyArbitraryEventsWorkerWithContextJS___destroy___0(self)};function ArbitraryResourceWorkerJS(resourcesManager){if(resourcesManager&&typeof resourcesManager==="object")resourcesManager=resourcesManager.ptr;this.ptr=_emscripten_bind_ArbitraryResourceWorkerJS_ArbitraryResourceWorkerJS_1(resourcesManager);getCache(ArbitraryResourceWorkerJS)[this.ptr]=this}ArbitraryResourceWorkerJS.prototype=Object.create(ArbitraryResourceWorker.prototype);ArbitraryResourceWorkerJS.prototype.constructor=ArbitraryResourceWorkerJS;ArbitraryResourceWorkerJS.prototype.__class__=ArbitraryResourceWorkerJS;ArbitraryResourceWorkerJS.__cache__={};Module["ArbitraryResourceWorkerJS"]=ArbitraryResourceWorkerJS;ArbitraryResourceWorkerJS.prototype["ExposeImage"]=ArbitraryResourceWorkerJS.prototype.ExposeImage=function(image){var self=this.ptr;ensureCache.prepare();if(image&&typeof image==="object")image=image.ptr;else image=ensureString(image);_emscripten_bind_ArbitraryResourceWorkerJS_ExposeImage_1(self,image)};ArbitraryResourceWorkerJS.prototype["ExposeShader"]=ArbitraryResourceWorkerJS.prototype.ExposeShader=function(shader){var self=this.ptr;ensureCache.prepare();if(shader&&typeof shader==="object")shader=shader.ptr;else shader=ensureString(shader);_emscripten_bind_ArbitraryResourceWorkerJS_ExposeShader_1(self,shader)};ArbitraryResourceWorkerJS.prototype["ExposeFile"]=ArbitraryResourceWorkerJS.prototype.ExposeFile=function(file){var self=this.ptr;ensureCache.prepare();if(file&&typeof file==="object")file=file.ptr;else file=ensureString(file);_emscripten_bind_ArbitraryResourceWorkerJS_ExposeFile_1(self,file)};ArbitraryResourceWorkerJS.prototype["__destroy__"]=ArbitraryResourceWorkerJS.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_ArbitraryResourceWorkerJS___destroy___0(self)};function ResourcesMergingHelper(resourcesManager,fs){if(resourcesManager&&typeof resourcesManager==="object")resourcesManager=resourcesManager.ptr;if(fs&&typeof fs==="object")fs=fs.ptr;this.ptr=_emscripten_bind_ResourcesMergingHelper_ResourcesMergingHelper_2(resourcesManager,fs);getCache(ResourcesMergingHelper)[this.ptr]=this}ResourcesMergingHelper.prototype=Object.create(ArbitraryResourceWorker.prototype);ResourcesMergingHelper.prototype.constructor=ResourcesMergingHelper;ResourcesMergingHelper.prototype.__class__=ResourcesMergingHelper;ResourcesMergingHelper.__cache__={};Module["ResourcesMergingHelper"]=ResourcesMergingHelper;ResourcesMergingHelper.prototype["SetBaseDirectory"]=ResourcesMergingHelper.prototype.SetBaseDirectory=function(basePath){var self=this.ptr;ensureCache.prepare();if(basePath&&typeof basePath==="object")basePath=basePath.ptr;else basePath=ensureString(basePath);_emscripten_bind_ResourcesMergingHelper_SetBaseDirectory_1(self,basePath)};ResourcesMergingHelper.prototype["GetAllResourcesOldAndNewFilename"]=ResourcesMergingHelper.prototype.GetAllResourcesOldAndNewFilename=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_ResourcesMergingHelper_GetAllResourcesOldAndNewFilename_0(self),MapStringString)};ResourcesMergingHelper.prototype["__destroy__"]=ResourcesMergingHelper.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_ResourcesMergingHelper___destroy___0(self)};function ResourcesRenamer(resourcesManager,oldToNewNames){if(resourcesManager&&typeof resourcesManager==="object")resourcesManager=resourcesManager.ptr;if(oldToNewNames&&typeof oldToNewNames==="object")oldToNewNames=oldToNewNames.ptr;this.ptr=_emscripten_bind_ResourcesRenamer_ResourcesRenamer_2(resourcesManager,oldToNewNames);getCache(ResourcesRenamer)[this.ptr]=this}ResourcesRenamer.prototype=Object.create(ArbitraryResourceWorker.prototype);ResourcesRenamer.prototype.constructor=ResourcesRenamer;ResourcesRenamer.prototype.__class__=ResourcesRenamer;ResourcesRenamer.__cache__={};Module["ResourcesRenamer"]=ResourcesRenamer;ResourcesRenamer.prototype["__destroy__"]=ResourcesRenamer.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_ResourcesRenamer___destroy___0(self)};function ProjectResourcesCopier(){throw"cannot construct a ProjectResourcesCopier, no constructor in IDL"}ProjectResourcesCopier.prototype=Object.create(WrapperObject.prototype);ProjectResourcesCopier.prototype.constructor=ProjectResourcesCopier;ProjectResourcesCopier.prototype.__class__=ProjectResourcesCopier;ProjectResourcesCopier.__cache__={};Module["ProjectResourcesCopier"]=ProjectResourcesCopier;ProjectResourcesCopier.prototype["STATIC_CopyAllResourcesTo"]=ProjectResourcesCopier.prototype.STATIC_CopyAllResourcesTo=function(project,fs,destinationDirectory,updateOriginalProject,preserveAbsoluteFilenames,preserveDirectoryStructure){var self=this.ptr;ensureCache.prepare();if(project&&typeof project==="object")project=project.ptr;if(fs&&typeof fs==="object")fs=fs.ptr;if(destinationDirectory&&typeof destinationDirectory==="object")destinationDirectory=destinationDirectory.ptr;else destinationDirectory=ensureString(destinationDirectory);if(updateOriginalProject&&typeof updateOriginalProject==="object")updateOriginalProject=updateOriginalProject.ptr;if(preserveAbsoluteFilenames&&typeof preserveAbsoluteFilenames==="object")preserveAbsoluteFilenames=preserveAbsoluteFilenames.ptr;if(preserveDirectoryStructure&&typeof preserveDirectoryStructure==="object")preserveDirectoryStructure=preserveDirectoryStructure.ptr;return!!_emscripten_bind_ProjectResourcesCopier_STATIC_CopyAllResourcesTo_6(self,project,fs,destinationDirectory,updateOriginalProject,preserveAbsoluteFilenames,preserveDirectoryStructure)};ProjectResourcesCopier.prototype["__destroy__"]=ProjectResourcesCopier.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_ProjectResourcesCopier___destroy___0(self)};function ObjectsUsingResourceCollector(resourcesManager,resourceName){ensureCache.prepare();if(resourcesManager&&typeof resourcesManager==="object")resourcesManager=resourcesManager.ptr;if(resourceName&&typeof resourceName==="object")resourceName=resourceName.ptr;else resourceName=ensureString(resourceName);this.ptr=_emscripten_bind_ObjectsUsingResourceCollector_ObjectsUsingResourceCollector_2(resourcesManager,resourceName);getCache(ObjectsUsingResourceCollector)[this.ptr]=this}ObjectsUsingResourceCollector.prototype=Object.create(WrapperObject.prototype);ObjectsUsingResourceCollector.prototype.constructor=ObjectsUsingResourceCollector;ObjectsUsingResourceCollector.prototype.__class__=ObjectsUsingResourceCollector;ObjectsUsingResourceCollector.__cache__={};Module["ObjectsUsingResourceCollector"]=ObjectsUsingResourceCollector;ObjectsUsingResourceCollector.prototype["GetObjectNames"]=ObjectsUsingResourceCollector.prototype.GetObjectNames=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_ObjectsUsingResourceCollector_GetObjectNames_0(self),VectorString)};ObjectsUsingResourceCollector.prototype["Launch"]=ObjectsUsingResourceCollector.prototype.Launch=function(container){var self=this.ptr;if(container&&typeof container==="object")container=container.ptr;_emscripten_bind_ObjectsUsingResourceCollector_Launch_1(self,container)};ObjectsUsingResourceCollector.prototype["__destroy__"]=ObjectsUsingResourceCollector.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_ObjectsUsingResourceCollector___destroy___0(self)};function ResourcesInUseHelper(resourcesManager){if(resourcesManager&&typeof resourcesManager==="object")resourcesManager=resourcesManager.ptr;this.ptr=_emscripten_bind_ResourcesInUseHelper_ResourcesInUseHelper_1(resourcesManager);getCache(ResourcesInUseHelper)[this.ptr]=this}ResourcesInUseHelper.prototype=Object.create(ArbitraryResourceWorker.prototype);ResourcesInUseHelper.prototype.constructor=ResourcesInUseHelper;ResourcesInUseHelper.prototype.__class__=ResourcesInUseHelper;ResourcesInUseHelper.__cache__={};Module["ResourcesInUseHelper"]=ResourcesInUseHelper;ResourcesInUseHelper.prototype["GetAllResources"]=ResourcesInUseHelper.prototype.GetAllResources=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_ResourcesInUseHelper_GetAllResources_0(self),VectorString)};ResourcesInUseHelper.prototype["GetAllImages"]=ResourcesInUseHelper.prototype.GetAllImages=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_ResourcesInUseHelper_GetAllImages_0(self),SetString)};ResourcesInUseHelper.prototype["GetAllAudios"]=ResourcesInUseHelper.prototype.GetAllAudios=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_ResourcesInUseHelper_GetAllAudios_0(self),SetString)};ResourcesInUseHelper.prototype["GetAllFonts"]=ResourcesInUseHelper.prototype.GetAllFonts=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_ResourcesInUseHelper_GetAllFonts_0(self),SetString)};ResourcesInUseHelper.prototype["GetAllBitmapFonts"]=ResourcesInUseHelper.prototype.GetAllBitmapFonts=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_ResourcesInUseHelper_GetAllBitmapFonts_0(self),SetString)};ResourcesInUseHelper.prototype["GetAll"]=ResourcesInUseHelper.prototype.GetAll=function(resourceType){var self=this.ptr;ensureCache.prepare();if(resourceType&&typeof resourceType==="object")resourceType=resourceType.ptr;else resourceType=ensureString(resourceType);return wrapPointer(_emscripten_bind_ResourcesInUseHelper_GetAll_1(self,resourceType),SetString)};ResourcesInUseHelper.prototype["__destroy__"]=ResourcesInUseHelper.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_ResourcesInUseHelper___destroy___0(self)};function EditorSettings(){this.ptr=_emscripten_bind_EditorSettings_EditorSettings_0();getCache(EditorSettings)[this.ptr]=this}EditorSettings.prototype=Object.create(WrapperObject.prototype);EditorSettings.prototype.constructor=EditorSettings;EditorSettings.prototype.__class__=EditorSettings;EditorSettings.__cache__={};Module["EditorSettings"]=EditorSettings;EditorSettings.prototype["SerializeTo"]=EditorSettings.prototype.SerializeTo=function(element){var self=this.ptr;if(element&&typeof element==="object")element=element.ptr;_emscripten_bind_EditorSettings_SerializeTo_1(self,element)};EditorSettings.prototype["UnserializeFrom"]=EditorSettings.prototype.UnserializeFrom=function(element){var self=this.ptr;if(element&&typeof element==="object")element=element.ptr;_emscripten_bind_EditorSettings_UnserializeFrom_1(self,element)};EditorSettings.prototype["__destroy__"]=EditorSettings.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_EditorSettings___destroy___0(self)};function Point(name){ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);this.ptr=_emscripten_bind_Point_Point_1(name);getCache(Point)[this.ptr]=this}Point.prototype=Object.create(WrapperObject.prototype);Point.prototype.constructor=Point;Point.prototype.__class__=Point;Point.__cache__={};Module["Point"]=Point;Point.prototype["SetName"]=Point.prototype.SetName=function(name){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);_emscripten_bind_Point_SetName_1(self,name)};Point.prototype["GetName"]=Point.prototype.GetName=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_Point_GetName_0(self))};Point.prototype["SetXY"]=Point.prototype.SetXY=function(x,y){var self=this.ptr;if(x&&typeof x==="object")x=x.ptr;if(y&&typeof y==="object")y=y.ptr;_emscripten_bind_Point_SetXY_2(self,x,y)};Point.prototype["GetX"]=Point.prototype.GetX=function(){var self=this.ptr;return _emscripten_bind_Point_GetX_0(self)};Point.prototype["SetX"]=Point.prototype.SetX=function(x){var self=this.ptr;if(x&&typeof x==="object")x=x.ptr;_emscripten_bind_Point_SetX_1(self,x)};Point.prototype["GetY"]=Point.prototype.GetY=function(){var self=this.ptr;return _emscripten_bind_Point_GetY_0(self)};Point.prototype["SetY"]=Point.prototype.SetY=function(y){var self=this.ptr;if(y&&typeof y==="object")y=y.ptr;_emscripten_bind_Point_SetY_1(self,y)};Point.prototype["__destroy__"]=Point.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_Point___destroy___0(self)};function VectorPoint(){this.ptr=_emscripten_bind_VectorPoint_VectorPoint_0();getCache(VectorPoint)[this.ptr]=this}VectorPoint.prototype=Object.create(WrapperObject.prototype);VectorPoint.prototype.constructor=VectorPoint;VectorPoint.prototype.__class__=VectorPoint;VectorPoint.__cache__={};Module["VectorPoint"]=VectorPoint;VectorPoint.prototype["push_back"]=VectorPoint.prototype.push_back=function(pt){var self=this.ptr;if(pt&&typeof pt==="object")pt=pt.ptr;_emscripten_bind_VectorPoint_push_back_1(self,pt)};VectorPoint.prototype["size"]=VectorPoint.prototype.size=function(){var self=this.ptr;return _emscripten_bind_VectorPoint_size_0(self)};VectorPoint.prototype["at"]=VectorPoint.prototype.at=function(index){var self=this.ptr;if(index&&typeof index==="object")index=index.ptr;return wrapPointer(_emscripten_bind_VectorPoint_at_1(self,index),Point)};VectorPoint.prototype["WRAPPED_set"]=VectorPoint.prototype.WRAPPED_set=function(index,pt){var self=this.ptr;if(index&&typeof index==="object")index=index.ptr;if(pt&&typeof pt==="object")pt=pt.ptr;_emscripten_bind_VectorPoint_WRAPPED_set_2(self,index,pt)};VectorPoint.prototype["clear"]=VectorPoint.prototype.clear=function(){var self=this.ptr;_emscripten_bind_VectorPoint_clear_0(self)};VectorPoint.prototype["__destroy__"]=VectorPoint.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_VectorPoint___destroy___0(self)};function Polygon2d(){this.ptr=_emscripten_bind_Polygon2d_Polygon2d_0();getCache(Polygon2d)[this.ptr]=this}Polygon2d.prototype=Object.create(WrapperObject.prototype);Polygon2d.prototype.constructor=Polygon2d;Polygon2d.prototype.__class__=Polygon2d;Polygon2d.__cache__={};Module["Polygon2d"]=Polygon2d;Polygon2d.prototype["GetVertices"]=Polygon2d.prototype.GetVertices=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_Polygon2d_GetVertices_0(self),VectorVector2f)};Polygon2d.prototype["Move"]=Polygon2d.prototype.Move=function(x,y){var self=this.ptr;if(x&&typeof x==="object")x=x.ptr;if(y&&typeof y==="object")y=y.ptr;_emscripten_bind_Polygon2d_Move_2(self,x,y)};Polygon2d.prototype["Rotate"]=Polygon2d.prototype.Rotate=function(angle){var self=this.ptr;if(angle&&typeof angle==="object")angle=angle.ptr;_emscripten_bind_Polygon2d_Rotate_1(self,angle)};Polygon2d.prototype["IsConvex"]=Polygon2d.prototype.IsConvex=function(){var self=this.ptr;return!!_emscripten_bind_Polygon2d_IsConvex_0(self)};Polygon2d.prototype["ComputeCenter"]=Polygon2d.prototype.ComputeCenter=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_Polygon2d_ComputeCenter_0(self),Vector2f)};Polygon2d.prototype["STATIC_CreateRectangle"]=Polygon2d.prototype.STATIC_CreateRectangle=function(width,height){var self=this.ptr;if(width&&typeof width==="object")width=width.ptr;if(height&&typeof height==="object")height=height.ptr;return wrapPointer(_emscripten_bind_Polygon2d_STATIC_CreateRectangle_2(self,width,height),Polygon2d)};Polygon2d.prototype["__destroy__"]=Polygon2d.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_Polygon2d___destroy___0(self)};function VectorPolygon2d(){this.ptr=_emscripten_bind_VectorPolygon2d_VectorPolygon2d_0();getCache(VectorPolygon2d)[this.ptr]=this}VectorPolygon2d.prototype=Object.create(WrapperObject.prototype);VectorPolygon2d.prototype.constructor=VectorPolygon2d;VectorPolygon2d.prototype.__class__=VectorPolygon2d;VectorPolygon2d.__cache__={};Module["VectorPolygon2d"]=VectorPolygon2d;VectorPolygon2d.prototype["push_back"]=VectorPolygon2d.prototype.push_back=function(polygon){var self=this.ptr;if(polygon&&typeof polygon==="object")polygon=polygon.ptr;_emscripten_bind_VectorPolygon2d_push_back_1(self,polygon)};VectorPolygon2d.prototype["size"]=VectorPolygon2d.prototype.size=function(){var self=this.ptr;return _emscripten_bind_VectorPolygon2d_size_0(self)};VectorPolygon2d.prototype["at"]=VectorPolygon2d.prototype.at=function(index){var self=this.ptr;if(index&&typeof index==="object")index=index.ptr;return wrapPointer(_emscripten_bind_VectorPolygon2d_at_1(self,index),Polygon2d)};VectorPolygon2d.prototype["WRAPPED_set"]=VectorPolygon2d.prototype.WRAPPED_set=function(index,polygon){var self=this.ptr;if(index&&typeof index==="object")index=index.ptr;if(polygon&&typeof polygon==="object")polygon=polygon.ptr;_emscripten_bind_VectorPolygon2d_WRAPPED_set_2(self,index,polygon)};VectorPolygon2d.prototype["FREE_removeFromVectorPolygon2d"]=VectorPolygon2d.prototype.FREE_removeFromVectorPolygon2d=function(index){var self=this.ptr;if(index&&typeof index==="object")index=index.ptr;_emscripten_bind_VectorPolygon2d_FREE_removeFromVectorPolygon2d_1(self,index)};VectorPolygon2d.prototype["clear"]=VectorPolygon2d.prototype.clear=function(){var self=this.ptr;_emscripten_bind_VectorPolygon2d_clear_0(self)};VectorPolygon2d.prototype["__destroy__"]=VectorPolygon2d.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_VectorPolygon2d___destroy___0(self)};function Sprite(){this.ptr=_emscripten_bind_Sprite_Sprite_0();getCache(Sprite)[this.ptr]=this}Sprite.prototype=Object.create(WrapperObject.prototype);Sprite.prototype.constructor=Sprite;Sprite.prototype.__class__=Sprite;Sprite.__cache__={};Module["Sprite"]=Sprite;Sprite.prototype["SetImageName"]=Sprite.prototype.SetImageName=function(name){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);_emscripten_bind_Sprite_SetImageName_1(self,name)};Sprite.prototype["GetImageName"]=Sprite.prototype.GetImageName=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_Sprite_GetImageName_0(self))};Sprite.prototype["GetOrigin"]=Sprite.prototype.GetOrigin=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_Sprite_GetOrigin_0(self),Point)};Sprite.prototype["GetCenter"]=Sprite.prototype.GetCenter=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_Sprite_GetCenter_0(self),Point)};Sprite.prototype["IsDefaultCenterPoint"]=Sprite.prototype.IsDefaultCenterPoint=function(){var self=this.ptr;return!!_emscripten_bind_Sprite_IsDefaultCenterPoint_0(self)};Sprite.prototype["SetDefaultCenterPoint"]=Sprite.prototype.SetDefaultCenterPoint=function(defaultPoint){var self=this.ptr;if(defaultPoint&&typeof defaultPoint==="object")defaultPoint=defaultPoint.ptr;_emscripten_bind_Sprite_SetDefaultCenterPoint_1(self,defaultPoint)};Sprite.prototype["GetAllNonDefaultPoints"]=Sprite.prototype.GetAllNonDefaultPoints=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_Sprite_GetAllNonDefaultPoints_0(self),VectorPoint)};Sprite.prototype["AddPoint"]=Sprite.prototype.AddPoint=function(point){var self=this.ptr;if(point&&typeof point==="object")point=point.ptr;_emscripten_bind_Sprite_AddPoint_1(self,point)};Sprite.prototype["DelPoint"]=Sprite.prototype.DelPoint=function(name){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);_emscripten_bind_Sprite_DelPoint_1(self,name)};Sprite.prototype["GetPoint"]=Sprite.prototype.GetPoint=function(name){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);return wrapPointer(_emscripten_bind_Sprite_GetPoint_1(self,name),Point)};Sprite.prototype["HasPoint"]=Sprite.prototype.HasPoint=function(name){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);return!!_emscripten_bind_Sprite_HasPoint_1(self,name)};Sprite.prototype["IsFullImageCollisionMask"]=Sprite.prototype.IsFullImageCollisionMask=function(){var self=this.ptr;return!!_emscripten_bind_Sprite_IsFullImageCollisionMask_0(self)};Sprite.prototype["SetFullImageCollisionMask"]=Sprite.prototype.SetFullImageCollisionMask=function(enabled){var self=this.ptr;if(enabled&&typeof enabled==="object")enabled=enabled.ptr;_emscripten_bind_Sprite_SetFullImageCollisionMask_1(self,enabled)};Sprite.prototype["GetCustomCollisionMask"]=Sprite.prototype.GetCustomCollisionMask=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_Sprite_GetCustomCollisionMask_0(self),VectorPolygon2d)};Sprite.prototype["SetCustomCollisionMask"]=Sprite.prototype.SetCustomCollisionMask=function(collisionMask){var self=this.ptr;if(collisionMask&&typeof collisionMask==="object")collisionMask=collisionMask.ptr;_emscripten_bind_Sprite_SetCustomCollisionMask_1(self,collisionMask)};Sprite.prototype["__destroy__"]=Sprite.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_Sprite___destroy___0(self)};function Direction(){this.ptr=_emscripten_bind_Direction_Direction_0();getCache(Direction)[this.ptr]=this}Direction.prototype=Object.create(WrapperObject.prototype);Direction.prototype.constructor=Direction;Direction.prototype.__class__=Direction;Direction.__cache__={};Module["Direction"]=Direction;Direction.prototype["AddSprite"]=Direction.prototype.AddSprite=function(sprite){var self=this.ptr;if(sprite&&typeof sprite==="object")sprite=sprite.ptr;_emscripten_bind_Direction_AddSprite_1(self,sprite)};Direction.prototype["GetSprite"]=Direction.prototype.GetSprite=function(index){var self=this.ptr;if(index&&typeof index==="object")index=index.ptr;return wrapPointer(_emscripten_bind_Direction_GetSprite_1(self,index),Sprite)};Direction.prototype["GetSpritesCount"]=Direction.prototype.GetSpritesCount=function(){var self=this.ptr;return _emscripten_bind_Direction_GetSpritesCount_0(self)};Direction.prototype["HasNoSprites"]=Direction.prototype.HasNoSprites=function(){var self=this.ptr;return!!_emscripten_bind_Direction_HasNoSprites_0(self)};Direction.prototype["RemoveSprite"]=Direction.prototype.RemoveSprite=function(index){var self=this.ptr;if(index&&typeof index==="object")index=index.ptr;_emscripten_bind_Direction_RemoveSprite_1(self,index)};Direction.prototype["RemoveAllSprites"]=Direction.prototype.RemoveAllSprites=function(){var self=this.ptr;_emscripten_bind_Direction_RemoveAllSprites_0(self)};Direction.prototype["IsLooping"]=Direction.prototype.IsLooping=function(){var self=this.ptr;return!!_emscripten_bind_Direction_IsLooping_0(self)};Direction.prototype["SetLoop"]=Direction.prototype.SetLoop=function(enable){var self=this.ptr;if(enable&&typeof enable==="object")enable=enable.ptr;_emscripten_bind_Direction_SetLoop_1(self,enable)};Direction.prototype["GetTimeBetweenFrames"]=Direction.prototype.GetTimeBetweenFrames=function(){var self=this.ptr;return _emscripten_bind_Direction_GetTimeBetweenFrames_0(self)};Direction.prototype["GetSpriteNames"]=Direction.prototype.GetSpriteNames=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_Direction_GetSpriteNames_0(self),VectorString)};Direction.prototype["SetTimeBetweenFrames"]=Direction.prototype.SetTimeBetweenFrames=function(time){var self=this.ptr;if(time&&typeof time==="object")time=time.ptr;_emscripten_bind_Direction_SetTimeBetweenFrames_1(self,time)};Direction.prototype["SwapSprites"]=Direction.prototype.SwapSprites=function(first,second){var self=this.ptr;if(first&&typeof first==="object")first=first.ptr;if(second&&typeof second==="object")second=second.ptr;_emscripten_bind_Direction_SwapSprites_2(self,first,second)};Direction.prototype["MoveSprite"]=Direction.prototype.MoveSprite=function(oldIndex,newIndex){var self=this.ptr;if(oldIndex&&typeof oldIndex==="object")oldIndex=oldIndex.ptr;if(newIndex&&typeof newIndex==="object")newIndex=newIndex.ptr;_emscripten_bind_Direction_MoveSprite_2(self,oldIndex,newIndex)};Direction.prototype["SetMetadata"]=Direction.prototype.SetMetadata=function(metadata){var self=this.ptr;ensureCache.prepare();if(metadata&&typeof metadata==="object")metadata=metadata.ptr;else metadata=ensureString(metadata);_emscripten_bind_Direction_SetMetadata_1(self,metadata)};Direction.prototype["GetMetadata"]=Direction.prototype.GetMetadata=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_Direction_GetMetadata_0(self))};Direction.prototype["__destroy__"]=Direction.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_Direction___destroy___0(self)};function Animation(){this.ptr=_emscripten_bind_Animation_Animation_0();getCache(Animation)[this.ptr]=this}Animation.prototype=Object.create(WrapperObject.prototype);Animation.prototype.constructor=Animation;Animation.prototype.__class__=Animation;Animation.__cache__={};Module["Animation"]=Animation;Animation.prototype["SetName"]=Animation.prototype.SetName=function(name){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);_emscripten_bind_Animation_SetName_1(self,name)};Animation.prototype["GetName"]=Animation.prototype.GetName=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_Animation_GetName_0(self))};Animation.prototype["SetDirectionsCount"]=Animation.prototype.SetDirectionsCount=function(count){var self=this.ptr;if(count&&typeof count==="object")count=count.ptr;_emscripten_bind_Animation_SetDirectionsCount_1(self,count)};Animation.prototype["GetDirectionsCount"]=Animation.prototype.GetDirectionsCount=function(){var self=this.ptr;return _emscripten_bind_Animation_GetDirectionsCount_0(self)};Animation.prototype["GetDirection"]=Animation.prototype.GetDirection=function(index){var self=this.ptr;if(index&&typeof index==="object")index=index.ptr;return wrapPointer(_emscripten_bind_Animation_GetDirection_1(self,index),Direction)};Animation.prototype["SetDirection"]=Animation.prototype.SetDirection=function(direction,index){var self=this.ptr;if(direction&&typeof direction==="object")direction=direction.ptr;if(index&&typeof index==="object")index=index.ptr;_emscripten_bind_Animation_SetDirection_2(self,direction,index)};Animation.prototype["HasNoDirections"]=Animation.prototype.HasNoDirections=function(){var self=this.ptr;return!!_emscripten_bind_Animation_HasNoDirections_0(self)};Animation.prototype["UseMultipleDirections"]=Animation.prototype.UseMultipleDirections=function(){var self=this.ptr;return!!_emscripten_bind_Animation_UseMultipleDirections_0(self)};Animation.prototype["SetUseMultipleDirections"]=Animation.prototype.SetUseMultipleDirections=function(enable){var self=this.ptr;if(enable&&typeof enable==="object")enable=enable.ptr;_emscripten_bind_Animation_SetUseMultipleDirections_1(self,enable)};Animation.prototype["__destroy__"]=Animation.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_Animation___destroy___0(self)};function SpriteAnimationList(){this.ptr=_emscripten_bind_SpriteAnimationList_SpriteAnimationList_0();getCache(SpriteAnimationList)[this.ptr]=this}SpriteAnimationList.prototype=Object.create(WrapperObject.prototype);SpriteAnimationList.prototype.constructor=SpriteAnimationList;SpriteAnimationList.prototype.__class__=SpriteAnimationList;SpriteAnimationList.__cache__={};Module["SpriteAnimationList"]=SpriteAnimationList;SpriteAnimationList.prototype["AddAnimation"]=SpriteAnimationList.prototype.AddAnimation=function(animation){var self=this.ptr;if(animation&&typeof animation==="object")animation=animation.ptr;_emscripten_bind_SpriteAnimationList_AddAnimation_1(self,animation)};SpriteAnimationList.prototype["GetAnimation"]=SpriteAnimationList.prototype.GetAnimation=function(index){var self=this.ptr;if(index&&typeof index==="object")index=index.ptr;return wrapPointer(_emscripten_bind_SpriteAnimationList_GetAnimation_1(self,index),Animation)};SpriteAnimationList.prototype["GetAnimationsCount"]=SpriteAnimationList.prototype.GetAnimationsCount=function(){var self=this.ptr;return _emscripten_bind_SpriteAnimationList_GetAnimationsCount_0(self)};SpriteAnimationList.prototype["RemoveAnimation"]=SpriteAnimationList.prototype.RemoveAnimation=function(index){var self=this.ptr;if(index&&typeof index==="object")index=index.ptr;_emscripten_bind_SpriteAnimationList_RemoveAnimation_1(self,index)};SpriteAnimationList.prototype["RemoveAllAnimations"]=SpriteAnimationList.prototype.RemoveAllAnimations=function(){var self=this.ptr;_emscripten_bind_SpriteAnimationList_RemoveAllAnimations_0(self)};SpriteAnimationList.prototype["HasNoAnimations"]=SpriteAnimationList.prototype.HasNoAnimations=function(){var self=this.ptr;return!!_emscripten_bind_SpriteAnimationList_HasNoAnimations_0(self)};SpriteAnimationList.prototype["SwapAnimations"]=SpriteAnimationList.prototype.SwapAnimations=function(first,second){var self=this.ptr;if(first&&typeof first==="object")first=first.ptr;if(second&&typeof second==="object")second=second.ptr;_emscripten_bind_SpriteAnimationList_SwapAnimations_2(self,first,second)};SpriteAnimationList.prototype["MoveAnimation"]=SpriteAnimationList.prototype.MoveAnimation=function(oldIndex,newIndex){var self=this.ptr;if(oldIndex&&typeof oldIndex==="object")oldIndex=oldIndex.ptr;if(newIndex&&typeof newIndex==="object")newIndex=newIndex.ptr;_emscripten_bind_SpriteAnimationList_MoveAnimation_2(self,oldIndex,newIndex)};SpriteAnimationList.prototype["AdaptCollisionMaskAutomatically"]=SpriteAnimationList.prototype.AdaptCollisionMaskAutomatically=function(){var self=this.ptr;return!!_emscripten_bind_SpriteAnimationList_AdaptCollisionMaskAutomatically_0(self)};SpriteAnimationList.prototype["SetAdaptCollisionMaskAutomatically"]=SpriteAnimationList.prototype.SetAdaptCollisionMaskAutomatically=function(adaptCollisionMaskAutomatically){var self=this.ptr;if(adaptCollisionMaskAutomatically&&typeof adaptCollisionMaskAutomatically==="object")adaptCollisionMaskAutomatically=adaptCollisionMaskAutomatically.ptr;_emscripten_bind_SpriteAnimationList_SetAdaptCollisionMaskAutomatically_1(self,adaptCollisionMaskAutomatically)};SpriteAnimationList.prototype["__destroy__"]=SpriteAnimationList.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_SpriteAnimationList___destroy___0(self)};function SpriteObject(){this.ptr=_emscripten_bind_SpriteObject_SpriteObject_0();getCache(SpriteObject)[this.ptr]=this}SpriteObject.prototype=Object.create(ObjectConfiguration.prototype);SpriteObject.prototype.constructor=SpriteObject;SpriteObject.prototype.__class__=SpriteObject;SpriteObject.__cache__={};Module["SpriteObject"]=SpriteObject;SpriteObject.prototype["GetAnimations"]=SpriteObject.prototype.GetAnimations=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_SpriteObject_GetAnimations_0(self),SpriteAnimationList)};SpriteObject.prototype["SetUpdateIfNotVisible"]=SpriteObject.prototype.SetUpdateIfNotVisible=function(updateIfNotVisible){var self=this.ptr;if(updateIfNotVisible&&typeof updateIfNotVisible==="object")updateIfNotVisible=updateIfNotVisible.ptr;_emscripten_bind_SpriteObject_SetUpdateIfNotVisible_1(self,updateIfNotVisible)};SpriteObject.prototype["GetUpdateIfNotVisible"]=SpriteObject.prototype.GetUpdateIfNotVisible=function(){var self=this.ptr;return!!_emscripten_bind_SpriteObject_GetUpdateIfNotVisible_0(self)};SpriteObject.prototype["SetPreScale"]=SpriteObject.prototype.SetPreScale=function(value){var self=this.ptr;if(value&&typeof value==="object")value=value.ptr;_emscripten_bind_SpriteObject_SetPreScale_1(self,value)};SpriteObject.prototype["GetPreScale"]=SpriteObject.prototype.GetPreScale=function(){var self=this.ptr;return _emscripten_bind_SpriteObject_GetPreScale_0(self)};SpriteObject.prototype["GetType"]=SpriteObject.prototype.GetType=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_SpriteObject_GetType_0(self))};SpriteObject.prototype["SetType"]=SpriteObject.prototype.SetType=function(typeName){var self=this.ptr;ensureCache.prepare();if(typeName&&typeof typeName==="object")typeName=typeName.ptr;else typeName=ensureString(typeName);_emscripten_bind_SpriteObject_SetType_1(self,typeName)};SpriteObject.prototype["ExposeResources"]=SpriteObject.prototype.ExposeResources=function(worker){var self=this.ptr;if(worker&&typeof worker==="object")worker=worker.ptr;_emscripten_bind_SpriteObject_ExposeResources_1(self,worker)};SpriteObject.prototype["SerializeTo"]=SpriteObject.prototype.SerializeTo=function(element){var self=this.ptr;if(element&&typeof element==="object")element=element.ptr;_emscripten_bind_SpriteObject_SerializeTo_1(self,element)};SpriteObject.prototype["UnserializeFrom"]=SpriteObject.prototype.UnserializeFrom=function(project,element){var self=this.ptr;if(project&&typeof project==="object")project=project.ptr;if(element&&typeof element==="object")element=element.ptr;_emscripten_bind_SpriteObject_UnserializeFrom_2(self,project,element)};SpriteObject.prototype["GetAnimationsCount"]=SpriteObject.prototype.GetAnimationsCount=function(){var self=this.ptr;return _emscripten_bind_SpriteObject_GetAnimationsCount_0(self)};SpriteObject.prototype["GetAnimationName"]=SpriteObject.prototype.GetAnimationName=function(index){var self=this.ptr;if(index&&typeof index==="object")index=index.ptr;return UTF8ToString(_emscripten_bind_SpriteObject_GetAnimationName_1(self,index))};SpriteObject.prototype["__destroy__"]=SpriteObject.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_SpriteObject___destroy___0(self)};function Model3DAnimation(){this.ptr=_emscripten_bind_Model3DAnimation_Model3DAnimation_0();getCache(Model3DAnimation)[this.ptr]=this}Model3DAnimation.prototype=Object.create(WrapperObject.prototype);Model3DAnimation.prototype.constructor=Model3DAnimation;Model3DAnimation.prototype.__class__=Model3DAnimation;Model3DAnimation.__cache__={};Module["Model3DAnimation"]=Model3DAnimation;Model3DAnimation.prototype["SetName"]=Model3DAnimation.prototype.SetName=function(name){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);_emscripten_bind_Model3DAnimation_SetName_1(self,name)};Model3DAnimation.prototype["GetName"]=Model3DAnimation.prototype.GetName=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_Model3DAnimation_GetName_0(self))};Model3DAnimation.prototype["SetSource"]=Model3DAnimation.prototype.SetSource=function(name){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);_emscripten_bind_Model3DAnimation_SetSource_1(self,name)};Model3DAnimation.prototype["GetSource"]=Model3DAnimation.prototype.GetSource=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_Model3DAnimation_GetSource_0(self))};Model3DAnimation.prototype["SetShouldLoop"]=Model3DAnimation.prototype.SetShouldLoop=function(shouldLoop){var self=this.ptr;if(shouldLoop&&typeof shouldLoop==="object")shouldLoop=shouldLoop.ptr;_emscripten_bind_Model3DAnimation_SetShouldLoop_1(self,shouldLoop)};Model3DAnimation.prototype["ShouldLoop"]=Model3DAnimation.prototype.ShouldLoop=function(){var self=this.ptr;return!!_emscripten_bind_Model3DAnimation_ShouldLoop_0(self)};Model3DAnimation.prototype["__destroy__"]=Model3DAnimation.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_Model3DAnimation___destroy___0(self)};function Model3DObjectConfiguration(){this.ptr=_emscripten_bind_Model3DObjectConfiguration_Model3DObjectConfiguration_0();getCache(Model3DObjectConfiguration)[this.ptr]=this}Model3DObjectConfiguration.prototype=Object.create(ObjectConfiguration.prototype);Model3DObjectConfiguration.prototype.constructor=Model3DObjectConfiguration;Model3DObjectConfiguration.prototype.__class__=Model3DObjectConfiguration;Model3DObjectConfiguration.__cache__={};Module["Model3DObjectConfiguration"]=Model3DObjectConfiguration;Model3DObjectConfiguration.prototype["AddAnimation"]=Model3DObjectConfiguration.prototype.AddAnimation=function(animation){var self=this.ptr;if(animation&&typeof animation==="object")animation=animation.ptr;_emscripten_bind_Model3DObjectConfiguration_AddAnimation_1(self,animation)};Model3DObjectConfiguration.prototype["GetAnimation"]=Model3DObjectConfiguration.prototype.GetAnimation=function(index){var self=this.ptr;if(index&&typeof index==="object")index=index.ptr;return wrapPointer(_emscripten_bind_Model3DObjectConfiguration_GetAnimation_1(self,index),Model3DAnimation)};Model3DObjectConfiguration.prototype["HasAnimationNamed"]=Model3DObjectConfiguration.prototype.HasAnimationNamed=function(name){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);return!!_emscripten_bind_Model3DObjectConfiguration_HasAnimationNamed_1(self,name)};Model3DObjectConfiguration.prototype["GetAnimationsCount"]=Model3DObjectConfiguration.prototype.GetAnimationsCount=function(){var self=this.ptr;return _emscripten_bind_Model3DObjectConfiguration_GetAnimationsCount_0(self)};Model3DObjectConfiguration.prototype["RemoveAnimation"]=Model3DObjectConfiguration.prototype.RemoveAnimation=function(index){var self=this.ptr;if(index&&typeof index==="object")index=index.ptr;_emscripten_bind_Model3DObjectConfiguration_RemoveAnimation_1(self,index)};Model3DObjectConfiguration.prototype["RemoveAllAnimations"]=Model3DObjectConfiguration.prototype.RemoveAllAnimations=function(){var self=this.ptr;_emscripten_bind_Model3DObjectConfiguration_RemoveAllAnimations_0(self)};Model3DObjectConfiguration.prototype["HasNoAnimations"]=Model3DObjectConfiguration.prototype.HasNoAnimations=function(){var self=this.ptr;return!!_emscripten_bind_Model3DObjectConfiguration_HasNoAnimations_0(self)};Model3DObjectConfiguration.prototype["SwapAnimations"]=Model3DObjectConfiguration.prototype.SwapAnimations=function(first,second){var self=this.ptr;if(first&&typeof first==="object")first=first.ptr;if(second&&typeof second==="object")second=second.ptr;_emscripten_bind_Model3DObjectConfiguration_SwapAnimations_2(self,first,second)};Model3DObjectConfiguration.prototype["MoveAnimation"]=Model3DObjectConfiguration.prototype.MoveAnimation=function(oldIndex,newIndex){var self=this.ptr;if(oldIndex&&typeof oldIndex==="object")oldIndex=oldIndex.ptr;if(newIndex&&typeof newIndex==="object")newIndex=newIndex.ptr;_emscripten_bind_Model3DObjectConfiguration_MoveAnimation_2(self,oldIndex,newIndex)};Model3DObjectConfiguration.prototype["GetWidth"]=Model3DObjectConfiguration.prototype.GetWidth=function(){var self=this.ptr;return _emscripten_bind_Model3DObjectConfiguration_GetWidth_0(self)};Model3DObjectConfiguration.prototype["GetHeight"]=Model3DObjectConfiguration.prototype.GetHeight=function(){var self=this.ptr;return _emscripten_bind_Model3DObjectConfiguration_GetHeight_0(self)};Model3DObjectConfiguration.prototype["GetDepth"]=Model3DObjectConfiguration.prototype.GetDepth=function(){var self=this.ptr;return _emscripten_bind_Model3DObjectConfiguration_GetDepth_0(self)};Model3DObjectConfiguration.prototype["GetRotationX"]=Model3DObjectConfiguration.prototype.GetRotationX=function(){var self=this.ptr;return _emscripten_bind_Model3DObjectConfiguration_GetRotationX_0(self)};Model3DObjectConfiguration.prototype["GetRotationY"]=Model3DObjectConfiguration.prototype.GetRotationY=function(){var self=this.ptr;return _emscripten_bind_Model3DObjectConfiguration_GetRotationY_0(self)};Model3DObjectConfiguration.prototype["GetRotationZ"]=Model3DObjectConfiguration.prototype.GetRotationZ=function(){var self=this.ptr;return _emscripten_bind_Model3DObjectConfiguration_GetRotationZ_0(self)};Model3DObjectConfiguration.prototype["GetModelResourceName"]=Model3DObjectConfiguration.prototype.GetModelResourceName=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_Model3DObjectConfiguration_GetModelResourceName_0(self))};Model3DObjectConfiguration.prototype["GetMaterialType"]=Model3DObjectConfiguration.prototype.GetMaterialType=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_Model3DObjectConfiguration_GetMaterialType_0(self))};Model3DObjectConfiguration.prototype["GetOriginLocation"]=Model3DObjectConfiguration.prototype.GetOriginLocation=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_Model3DObjectConfiguration_GetOriginLocation_0(self))};Model3DObjectConfiguration.prototype["GetCenterLocation"]=Model3DObjectConfiguration.prototype.GetCenterLocation=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_Model3DObjectConfiguration_GetCenterLocation_0(self))};Model3DObjectConfiguration.prototype["shouldKeepAspectRatio"]=Model3DObjectConfiguration.prototype.shouldKeepAspectRatio=function(){var self=this.ptr;return!!_emscripten_bind_Model3DObjectConfiguration_shouldKeepAspectRatio_0(self)};Model3DObjectConfiguration.prototype["GetType"]=Model3DObjectConfiguration.prototype.GetType=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_Model3DObjectConfiguration_GetType_0(self))};Model3DObjectConfiguration.prototype["SetType"]=Model3DObjectConfiguration.prototype.SetType=function(typeName){var self=this.ptr;ensureCache.prepare();if(typeName&&typeof typeName==="object")typeName=typeName.ptr;else typeName=ensureString(typeName);_emscripten_bind_Model3DObjectConfiguration_SetType_1(self,typeName)};Model3DObjectConfiguration.prototype["ExposeResources"]=Model3DObjectConfiguration.prototype.ExposeResources=function(worker){var self=this.ptr;if(worker&&typeof worker==="object")worker=worker.ptr;_emscripten_bind_Model3DObjectConfiguration_ExposeResources_1(self,worker)};Model3DObjectConfiguration.prototype["SerializeTo"]=Model3DObjectConfiguration.prototype.SerializeTo=function(element){var self=this.ptr;if(element&&typeof element==="object")element=element.ptr;_emscripten_bind_Model3DObjectConfiguration_SerializeTo_1(self,element)};Model3DObjectConfiguration.prototype["UnserializeFrom"]=Model3DObjectConfiguration.prototype.UnserializeFrom=function(project,element){var self=this.ptr;if(project&&typeof project==="object")project=project.ptr;if(element&&typeof element==="object")element=element.ptr;_emscripten_bind_Model3DObjectConfiguration_UnserializeFrom_2(self,project,element)};Model3DObjectConfiguration.prototype["GetAnimationName"]=Model3DObjectConfiguration.prototype.GetAnimationName=function(index){var self=this.ptr;if(index&&typeof index==="object")index=index.ptr;return UTF8ToString(_emscripten_bind_Model3DObjectConfiguration_GetAnimationName_1(self,index))};Model3DObjectConfiguration.prototype["__destroy__"]=Model3DObjectConfiguration.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_Model3DObjectConfiguration___destroy___0(self)};function SpineAnimation(){this.ptr=_emscripten_bind_SpineAnimation_SpineAnimation_0();getCache(SpineAnimation)[this.ptr]=this}SpineAnimation.prototype=Object.create(WrapperObject.prototype);SpineAnimation.prototype.constructor=SpineAnimation;SpineAnimation.prototype.__class__=SpineAnimation;SpineAnimation.__cache__={};Module["SpineAnimation"]=SpineAnimation;SpineAnimation.prototype["SetName"]=SpineAnimation.prototype.SetName=function(name){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);_emscripten_bind_SpineAnimation_SetName_1(self,name)};SpineAnimation.prototype["GetName"]=SpineAnimation.prototype.GetName=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_SpineAnimation_GetName_0(self))};SpineAnimation.prototype["SetSource"]=SpineAnimation.prototype.SetSource=function(name){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);_emscripten_bind_SpineAnimation_SetSource_1(self,name)};SpineAnimation.prototype["GetSource"]=SpineAnimation.prototype.GetSource=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_SpineAnimation_GetSource_0(self))};SpineAnimation.prototype["SetShouldLoop"]=SpineAnimation.prototype.SetShouldLoop=function(shouldLoop){var self=this.ptr;if(shouldLoop&&typeof shouldLoop==="object")shouldLoop=shouldLoop.ptr;_emscripten_bind_SpineAnimation_SetShouldLoop_1(self,shouldLoop)};SpineAnimation.prototype["ShouldLoop"]=SpineAnimation.prototype.ShouldLoop=function(){var self=this.ptr;return!!_emscripten_bind_SpineAnimation_ShouldLoop_0(self)};SpineAnimation.prototype["__destroy__"]=SpineAnimation.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_SpineAnimation___destroy___0(self)};function SpineObjectConfiguration(){this.ptr=_emscripten_bind_SpineObjectConfiguration_SpineObjectConfiguration_0();getCache(SpineObjectConfiguration)[this.ptr]=this}SpineObjectConfiguration.prototype=Object.create(ObjectConfiguration.prototype);SpineObjectConfiguration.prototype.constructor=SpineObjectConfiguration;SpineObjectConfiguration.prototype.__class__=SpineObjectConfiguration;SpineObjectConfiguration.__cache__={};Module["SpineObjectConfiguration"]=SpineObjectConfiguration;SpineObjectConfiguration.prototype["AddAnimation"]=SpineObjectConfiguration.prototype.AddAnimation=function(animation){var self=this.ptr;if(animation&&typeof animation==="object")animation=animation.ptr;_emscripten_bind_SpineObjectConfiguration_AddAnimation_1(self,animation)};SpineObjectConfiguration.prototype["GetAnimation"]=SpineObjectConfiguration.prototype.GetAnimation=function(index){var self=this.ptr;if(index&&typeof index==="object")index=index.ptr;return wrapPointer(_emscripten_bind_SpineObjectConfiguration_GetAnimation_1(self,index),SpineAnimation)};SpineObjectConfiguration.prototype["HasAnimationNamed"]=SpineObjectConfiguration.prototype.HasAnimationNamed=function(name){var self=this.ptr;ensureCache.prepare();if(name&&typeof name==="object")name=name.ptr;else name=ensureString(name);return!!_emscripten_bind_SpineObjectConfiguration_HasAnimationNamed_1(self,name)};SpineObjectConfiguration.prototype["GetAnimationsCount"]=SpineObjectConfiguration.prototype.GetAnimationsCount=function(){var self=this.ptr;return _emscripten_bind_SpineObjectConfiguration_GetAnimationsCount_0(self)};SpineObjectConfiguration.prototype["RemoveAnimation"]=SpineObjectConfiguration.prototype.RemoveAnimation=function(index){var self=this.ptr;if(index&&typeof index==="object")index=index.ptr;_emscripten_bind_SpineObjectConfiguration_RemoveAnimation_1(self,index)};SpineObjectConfiguration.prototype["RemoveAllAnimations"]=SpineObjectConfiguration.prototype.RemoveAllAnimations=function(){var self=this.ptr;_emscripten_bind_SpineObjectConfiguration_RemoveAllAnimations_0(self)};SpineObjectConfiguration.prototype["HasNoAnimations"]=SpineObjectConfiguration.prototype.HasNoAnimations=function(){var self=this.ptr;return!!_emscripten_bind_SpineObjectConfiguration_HasNoAnimations_0(self)};SpineObjectConfiguration.prototype["SwapAnimations"]=SpineObjectConfiguration.prototype.SwapAnimations=function(first,second){var self=this.ptr;if(first&&typeof first==="object")first=first.ptr;if(second&&typeof second==="object")second=second.ptr;_emscripten_bind_SpineObjectConfiguration_SwapAnimations_2(self,first,second)};SpineObjectConfiguration.prototype["MoveAnimation"]=SpineObjectConfiguration.prototype.MoveAnimation=function(oldIndex,newIndex){var self=this.ptr;if(oldIndex&&typeof oldIndex==="object")oldIndex=oldIndex.ptr;if(newIndex&&typeof newIndex==="object")newIndex=newIndex.ptr;_emscripten_bind_SpineObjectConfiguration_MoveAnimation_2(self,oldIndex,newIndex)};SpineObjectConfiguration.prototype["GetScale"]=SpineObjectConfiguration.prototype.GetScale=function(){var self=this.ptr;return _emscripten_bind_SpineObjectConfiguration_GetScale_0(self)};SpineObjectConfiguration.prototype["GetSpineResourceName"]=SpineObjectConfiguration.prototype.GetSpineResourceName=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_SpineObjectConfiguration_GetSpineResourceName_0(self))};SpineObjectConfiguration.prototype["GetSkinName"]=SpineObjectConfiguration.prototype.GetSkinName=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_SpineObjectConfiguration_GetSkinName_0(self))};SpineObjectConfiguration.prototype["GetType"]=SpineObjectConfiguration.prototype.GetType=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_SpineObjectConfiguration_GetType_0(self))};SpineObjectConfiguration.prototype["SetType"]=SpineObjectConfiguration.prototype.SetType=function(typeName){var self=this.ptr;ensureCache.prepare();if(typeName&&typeof typeName==="object")typeName=typeName.ptr;else typeName=ensureString(typeName);_emscripten_bind_SpineObjectConfiguration_SetType_1(self,typeName)};SpineObjectConfiguration.prototype["ExposeResources"]=SpineObjectConfiguration.prototype.ExposeResources=function(worker){var self=this.ptr;if(worker&&typeof worker==="object")worker=worker.ptr;_emscripten_bind_SpineObjectConfiguration_ExposeResources_1(self,worker)};SpineObjectConfiguration.prototype["SerializeTo"]=SpineObjectConfiguration.prototype.SerializeTo=function(element){var self=this.ptr;if(element&&typeof element==="object")element=element.ptr;_emscripten_bind_SpineObjectConfiguration_SerializeTo_1(self,element)};SpineObjectConfiguration.prototype["UnserializeFrom"]=SpineObjectConfiguration.prototype.UnserializeFrom=function(project,element){var self=this.ptr;if(project&&typeof project==="object")project=project.ptr;if(element&&typeof element==="object")element=element.ptr;_emscripten_bind_SpineObjectConfiguration_UnserializeFrom_2(self,project,element)};SpineObjectConfiguration.prototype["GetAnimationName"]=SpineObjectConfiguration.prototype.GetAnimationName=function(index){var self=this.ptr;if(index&&typeof index==="object")index=index.ptr;return UTF8ToString(_emscripten_bind_SpineObjectConfiguration_GetAnimationName_1(self,index))};SpineObjectConfiguration.prototype["__destroy__"]=SpineObjectConfiguration.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_SpineObjectConfiguration___destroy___0(self)};function Vector2f(){this.ptr=_emscripten_bind_Vector2f_Vector2f_0();getCache(Vector2f)[this.ptr]=this}Vector2f.prototype=Object.create(WrapperObject.prototype);Vector2f.prototype.constructor=Vector2f;Vector2f.prototype.__class__=Vector2f;Vector2f.__cache__={};Module["Vector2f"]=Vector2f;Vector2f.prototype["get_x"]=Vector2f.prototype.get_x=function(){var self=this.ptr;return _emscripten_bind_Vector2f_get_x_0(self)};Vector2f.prototype["set_x"]=Vector2f.prototype.set_x=function(arg0){var self=this.ptr;if(arg0&&typeof arg0==="object")arg0=arg0.ptr;_emscripten_bind_Vector2f_set_x_1(self,arg0)};Object.defineProperty(Vector2f.prototype,"x",{get:Vector2f.prototype.get_x,set:Vector2f.prototype.set_x});Vector2f.prototype["get_y"]=Vector2f.prototype.get_y=function(){var self=this.ptr;return _emscripten_bind_Vector2f_get_y_0(self)};Vector2f.prototype["set_y"]=Vector2f.prototype.set_y=function(arg0){var self=this.ptr;if(arg0&&typeof arg0==="object")arg0=arg0.ptr;_emscripten_bind_Vector2f_set_y_1(self,arg0)};Object.defineProperty(Vector2f.prototype,"y",{get:Vector2f.prototype.get_y,set:Vector2f.prototype.set_y});Vector2f.prototype["__destroy__"]=Vector2f.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_Vector2f___destroy___0(self)};function VectorVector2f(){this.ptr=_emscripten_bind_VectorVector2f_VectorVector2f_0();getCache(VectorVector2f)[this.ptr]=this}VectorVector2f.prototype=Object.create(WrapperObject.prototype);VectorVector2f.prototype.constructor=VectorVector2f;VectorVector2f.prototype.__class__=VectorVector2f;VectorVector2f.__cache__={};Module["VectorVector2f"]=VectorVector2f;VectorVector2f.prototype["push_back"]=VectorVector2f.prototype.push_back=function(pt){var self=this.ptr;if(pt&&typeof pt==="object")pt=pt.ptr;_emscripten_bind_VectorVector2f_push_back_1(self,pt)};VectorVector2f.prototype["size"]=VectorVector2f.prototype.size=function(){var self=this.ptr;return _emscripten_bind_VectorVector2f_size_0(self)};VectorVector2f.prototype["at"]=VectorVector2f.prototype.at=function(index){var self=this.ptr;if(index&&typeof index==="object")index=index.ptr;return wrapPointer(_emscripten_bind_VectorVector2f_at_1(self,index),Vector2f)};VectorVector2f.prototype["WRAPPED_set"]=VectorVector2f.prototype.WRAPPED_set=function(index,pt){var self=this.ptr;if(index&&typeof index==="object")index=index.ptr;if(pt&&typeof pt==="object")pt=pt.ptr;_emscripten_bind_VectorVector2f_WRAPPED_set_2(self,index,pt)};VectorVector2f.prototype["FREE_removeFromVectorVector2f"]=VectorVector2f.prototype.FREE_removeFromVectorVector2f=function(index){var self=this.ptr;if(index&&typeof index==="object")index=index.ptr;_emscripten_bind_VectorVector2f_FREE_removeFromVectorVector2f_1(self,index)};VectorVector2f.prototype["FREE_moveVector2fInVector"]=VectorVector2f.prototype.FREE_moveVector2fInVector=function(oldIndex,newIndex){var self=this.ptr;if(oldIndex&&typeof oldIndex==="object")oldIndex=oldIndex.ptr;if(newIndex&&typeof newIndex==="object")newIndex=newIndex.ptr;_emscripten_bind_VectorVector2f_FREE_moveVector2fInVector_2(self,oldIndex,newIndex)};VectorVector2f.prototype["clear"]=VectorVector2f.prototype.clear=function(){var self=this.ptr;_emscripten_bind_VectorVector2f_clear_0(self)};VectorVector2f.prototype["__destroy__"]=VectorVector2f.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_VectorVector2f___destroy___0(self)};function TextObject(){this.ptr=_emscripten_bind_TextObject_TextObject_0();getCache(TextObject)[this.ptr]=this}TextObject.prototype=Object.create(ObjectConfiguration.prototype);TextObject.prototype.constructor=TextObject;TextObject.prototype.__class__=TextObject;TextObject.__cache__={};Module["TextObject"]=TextObject;TextObject.prototype["SetText"]=TextObject.prototype.SetText=function(string){var self=this.ptr;ensureCache.prepare();if(string&&typeof string==="object")string=string.ptr;else string=ensureString(string);_emscripten_bind_TextObject_SetText_1(self,string)};TextObject.prototype["GetText"]=TextObject.prototype.GetText=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_TextObject_GetText_0(self))};TextObject.prototype["SetCharacterSize"]=TextObject.prototype.SetCharacterSize=function(size){var self=this.ptr;if(size&&typeof size==="object")size=size.ptr;_emscripten_bind_TextObject_SetCharacterSize_1(self,size)};TextObject.prototype["GetCharacterSize"]=TextObject.prototype.GetCharacterSize=function(){var self=this.ptr;return _emscripten_bind_TextObject_GetCharacterSize_0(self)};TextObject.prototype["SetLineHeight"]=TextObject.prototype.SetLineHeight=function(value){var self=this.ptr;if(value&&typeof value==="object")value=value.ptr;_emscripten_bind_TextObject_SetLineHeight_1(self,value)};TextObject.prototype["GetLineHeight"]=TextObject.prototype.GetLineHeight=function(){var self=this.ptr;return _emscripten_bind_TextObject_GetLineHeight_0(self)};TextObject.prototype["SetFontName"]=TextObject.prototype.SetFontName=function(string){var self=this.ptr;ensureCache.prepare();if(string&&typeof string==="object")string=string.ptr;else string=ensureString(string);_emscripten_bind_TextObject_SetFontName_1(self,string)};TextObject.prototype["GetFontName"]=TextObject.prototype.GetFontName=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_TextObject_GetFontName_0(self))};TextObject.prototype["IsBold"]=TextObject.prototype.IsBold=function(){var self=this.ptr;return!!_emscripten_bind_TextObject_IsBold_0(self)};TextObject.prototype["SetBold"]=TextObject.prototype.SetBold=function(enable){var self=this.ptr;if(enable&&typeof enable==="object")enable=enable.ptr;_emscripten_bind_TextObject_SetBold_1(self,enable)};TextObject.prototype["IsItalic"]=TextObject.prototype.IsItalic=function(){var self=this.ptr;return!!_emscripten_bind_TextObject_IsItalic_0(self)};TextObject.prototype["SetItalic"]=TextObject.prototype.SetItalic=function(enable){var self=this.ptr;if(enable&&typeof enable==="object")enable=enable.ptr;_emscripten_bind_TextObject_SetItalic_1(self,enable)};TextObject.prototype["IsUnderlined"]=TextObject.prototype.IsUnderlined=function(){var self=this.ptr;return!!_emscripten_bind_TextObject_IsUnderlined_0(self)};TextObject.prototype["SetUnderlined"]=TextObject.prototype.SetUnderlined=function(enable){var self=this.ptr;if(enable&&typeof enable==="object")enable=enable.ptr;_emscripten_bind_TextObject_SetUnderlined_1(self,enable)};TextObject.prototype["SetColor"]=TextObject.prototype.SetColor=function(color){var self=this.ptr;ensureCache.prepare();if(color&&typeof color==="object")color=color.ptr;else color=ensureString(color);_emscripten_bind_TextObject_SetColor_1(self,color)};TextObject.prototype["GetColor"]=TextObject.prototype.GetColor=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_TextObject_GetColor_0(self))};TextObject.prototype["SetTextAlignment"]=TextObject.prototype.SetTextAlignment=function(textAlignment){var self=this.ptr;ensureCache.prepare();if(textAlignment&&typeof textAlignment==="object")textAlignment=textAlignment.ptr;else textAlignment=ensureString(textAlignment);_emscripten_bind_TextObject_SetTextAlignment_1(self,textAlignment)};TextObject.prototype["GetTextAlignment"]=TextObject.prototype.GetTextAlignment=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_TextObject_GetTextAlignment_0(self))};TextObject.prototype["SetVerticalTextAlignment"]=TextObject.prototype.SetVerticalTextAlignment=function(value){var self=this.ptr;ensureCache.prepare();if(value&&typeof value==="object")value=value.ptr;else value=ensureString(value);_emscripten_bind_TextObject_SetVerticalTextAlignment_1(self,value)};TextObject.prototype["GetVerticalTextAlignment"]=TextObject.prototype.GetVerticalTextAlignment=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_TextObject_GetVerticalTextAlignment_0(self))};TextObject.prototype["SetOutlineEnabled"]=TextObject.prototype.SetOutlineEnabled=function(enable){var self=this.ptr;if(enable&&typeof enable==="object")enable=enable.ptr;_emscripten_bind_TextObject_SetOutlineEnabled_1(self,enable)};TextObject.prototype["IsOutlineEnabled"]=TextObject.prototype.IsOutlineEnabled=function(){var self=this.ptr;return!!_emscripten_bind_TextObject_IsOutlineEnabled_0(self)};TextObject.prototype["SetOutlineThickness"]=TextObject.prototype.SetOutlineThickness=function(value){var self=this.ptr;if(value&&typeof value==="object")value=value.ptr;_emscripten_bind_TextObject_SetOutlineThickness_1(self,value)};TextObject.prototype["GetOutlineThickness"]=TextObject.prototype.GetOutlineThickness=function(){var self=this.ptr;return _emscripten_bind_TextObject_GetOutlineThickness_0(self)};TextObject.prototype["SetOutlineColor"]=TextObject.prototype.SetOutlineColor=function(color){var self=this.ptr;ensureCache.prepare();if(color&&typeof color==="object")color=color.ptr;else color=ensureString(color);_emscripten_bind_TextObject_SetOutlineColor_1(self,color)};TextObject.prototype["GetOutlineColor"]=TextObject.prototype.GetOutlineColor=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_TextObject_GetOutlineColor_0(self))};TextObject.prototype["SetShadowEnabled"]=TextObject.prototype.SetShadowEnabled=function(enable){var self=this.ptr;if(enable&&typeof enable==="object")enable=enable.ptr;_emscripten_bind_TextObject_SetShadowEnabled_1(self,enable)};TextObject.prototype["IsShadowEnabled"]=TextObject.prototype.IsShadowEnabled=function(){var self=this.ptr;return!!_emscripten_bind_TextObject_IsShadowEnabled_0(self)};TextObject.prototype["SetShadowColor"]=TextObject.prototype.SetShadowColor=function(color){var self=this.ptr;ensureCache.prepare();if(color&&typeof color==="object")color=color.ptr;else color=ensureString(color);_emscripten_bind_TextObject_SetShadowColor_1(self,color)};TextObject.prototype["GetShadowColor"]=TextObject.prototype.GetShadowColor=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_TextObject_GetShadowColor_0(self))};TextObject.prototype["SetShadowOpacity"]=TextObject.prototype.SetShadowOpacity=function(value){var self=this.ptr;if(value&&typeof value==="object")value=value.ptr;_emscripten_bind_TextObject_SetShadowOpacity_1(self,value)};TextObject.prototype["GetShadowOpacity"]=TextObject.prototype.GetShadowOpacity=function(){var self=this.ptr;return _emscripten_bind_TextObject_GetShadowOpacity_0(self)};TextObject.prototype["SetShadowAngle"]=TextObject.prototype.SetShadowAngle=function(value){var self=this.ptr;if(value&&typeof value==="object")value=value.ptr;_emscripten_bind_TextObject_SetShadowAngle_1(self,value)};TextObject.prototype["GetShadowAngle"]=TextObject.prototype.GetShadowAngle=function(){var self=this.ptr;return _emscripten_bind_TextObject_GetShadowAngle_0(self)};TextObject.prototype["SetShadowDistance"]=TextObject.prototype.SetShadowDistance=function(value){var self=this.ptr;if(value&&typeof value==="object")value=value.ptr;_emscripten_bind_TextObject_SetShadowDistance_1(self,value)};TextObject.prototype["GetShadowDistance"]=TextObject.prototype.GetShadowDistance=function(){var self=this.ptr;return _emscripten_bind_TextObject_GetShadowDistance_0(self)};TextObject.prototype["SetShadowBlurRadius"]=TextObject.prototype.SetShadowBlurRadius=function(value){var self=this.ptr;if(value&&typeof value==="object")value=value.ptr;_emscripten_bind_TextObject_SetShadowBlurRadius_1(self,value)};TextObject.prototype["GetShadowBlurRadius"]=TextObject.prototype.GetShadowBlurRadius=function(){var self=this.ptr;return _emscripten_bind_TextObject_GetShadowBlurRadius_0(self)};TextObject.prototype["GetType"]=TextObject.prototype.GetType=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_TextObject_GetType_0(self))};TextObject.prototype["SetType"]=TextObject.prototype.SetType=function(typeName){var self=this.ptr;ensureCache.prepare();if(typeName&&typeof typeName==="object")typeName=typeName.ptr;else typeName=ensureString(typeName);_emscripten_bind_TextObject_SetType_1(self,typeName)};TextObject.prototype["ExposeResources"]=TextObject.prototype.ExposeResources=function(worker){var self=this.ptr;if(worker&&typeof worker==="object")worker=worker.ptr;_emscripten_bind_TextObject_ExposeResources_1(self,worker)};TextObject.prototype["SerializeTo"]=TextObject.prototype.SerializeTo=function(element){var self=this.ptr;if(element&&typeof element==="object")element=element.ptr;_emscripten_bind_TextObject_SerializeTo_1(self,element)};TextObject.prototype["UnserializeFrom"]=TextObject.prototype.UnserializeFrom=function(project,element){var self=this.ptr;if(project&&typeof project==="object")project=project.ptr;if(element&&typeof element==="object")element=element.ptr;_emscripten_bind_TextObject_UnserializeFrom_2(self,project,element)};TextObject.prototype["GetAnimationName"]=TextObject.prototype.GetAnimationName=function(index){var self=this.ptr;if(index&&typeof index==="object")index=index.ptr;return UTF8ToString(_emscripten_bind_TextObject_GetAnimationName_1(self,index))};TextObject.prototype["__destroy__"]=TextObject.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_TextObject___destroy___0(self)};function TiledSpriteObject(){this.ptr=_emscripten_bind_TiledSpriteObject_TiledSpriteObject_0();getCache(TiledSpriteObject)[this.ptr]=this}TiledSpriteObject.prototype=Object.create(ObjectConfiguration.prototype);TiledSpriteObject.prototype.constructor=TiledSpriteObject;TiledSpriteObject.prototype.__class__=TiledSpriteObject;TiledSpriteObject.__cache__={};Module["TiledSpriteObject"]=TiledSpriteObject;TiledSpriteObject.prototype["SetTexture"]=TiledSpriteObject.prototype.SetTexture=function(texture){var self=this.ptr;ensureCache.prepare();if(texture&&typeof texture==="object")texture=texture.ptr;else texture=ensureString(texture);_emscripten_bind_TiledSpriteObject_SetTexture_1(self,texture)};TiledSpriteObject.prototype["GetTexture"]=TiledSpriteObject.prototype.GetTexture=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_TiledSpriteObject_GetTexture_0(self))};TiledSpriteObject.prototype["SetWidth"]=TiledSpriteObject.prototype.SetWidth=function(width){var self=this.ptr;if(width&&typeof width==="object")width=width.ptr;_emscripten_bind_TiledSpriteObject_SetWidth_1(self,width)};TiledSpriteObject.prototype["GetWidth"]=TiledSpriteObject.prototype.GetWidth=function(){var self=this.ptr;return _emscripten_bind_TiledSpriteObject_GetWidth_0(self)};TiledSpriteObject.prototype["SetHeight"]=TiledSpriteObject.prototype.SetHeight=function(height){var self=this.ptr;if(height&&typeof height==="object")height=height.ptr;_emscripten_bind_TiledSpriteObject_SetHeight_1(self,height)};TiledSpriteObject.prototype["GetHeight"]=TiledSpriteObject.prototype.GetHeight=function(){var self=this.ptr;return _emscripten_bind_TiledSpriteObject_GetHeight_0(self)};TiledSpriteObject.prototype["GetType"]=TiledSpriteObject.prototype.GetType=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_TiledSpriteObject_GetType_0(self))};TiledSpriteObject.prototype["SetType"]=TiledSpriteObject.prototype.SetType=function(typeName){var self=this.ptr;ensureCache.prepare();if(typeName&&typeof typeName==="object")typeName=typeName.ptr;else typeName=ensureString(typeName);_emscripten_bind_TiledSpriteObject_SetType_1(self,typeName)};TiledSpriteObject.prototype["ExposeResources"]=TiledSpriteObject.prototype.ExposeResources=function(worker){var self=this.ptr;if(worker&&typeof worker==="object")worker=worker.ptr;_emscripten_bind_TiledSpriteObject_ExposeResources_1(self,worker)};TiledSpriteObject.prototype["SerializeTo"]=TiledSpriteObject.prototype.SerializeTo=function(element){var self=this.ptr;if(element&&typeof element==="object")element=element.ptr;_emscripten_bind_TiledSpriteObject_SerializeTo_1(self,element)};TiledSpriteObject.prototype["UnserializeFrom"]=TiledSpriteObject.prototype.UnserializeFrom=function(project,element){var self=this.ptr;if(project&&typeof project==="object")project=project.ptr;if(element&&typeof element==="object")element=element.ptr;_emscripten_bind_TiledSpriteObject_UnserializeFrom_2(self,project,element)};TiledSpriteObject.prototype["GetAnimationName"]=TiledSpriteObject.prototype.GetAnimationName=function(index){var self=this.ptr;if(index&&typeof index==="object")index=index.ptr;return UTF8ToString(_emscripten_bind_TiledSpriteObject_GetAnimationName_1(self,index))};TiledSpriteObject.prototype["__destroy__"]=TiledSpriteObject.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_TiledSpriteObject___destroy___0(self)};function PanelSpriteObject(){this.ptr=_emscripten_bind_PanelSpriteObject_PanelSpriteObject_0();getCache(PanelSpriteObject)[this.ptr]=this}PanelSpriteObject.prototype=Object.create(ObjectConfiguration.prototype);PanelSpriteObject.prototype.constructor=PanelSpriteObject;PanelSpriteObject.prototype.__class__=PanelSpriteObject;PanelSpriteObject.__cache__={};Module["PanelSpriteObject"]=PanelSpriteObject;PanelSpriteObject.prototype["GetLeftMargin"]=PanelSpriteObject.prototype.GetLeftMargin=function(){var self=this.ptr;return _emscripten_bind_PanelSpriteObject_GetLeftMargin_0(self)};PanelSpriteObject.prototype["SetLeftMargin"]=PanelSpriteObject.prototype.SetLeftMargin=function(newMargin){var self=this.ptr;if(newMargin&&typeof newMargin==="object")newMargin=newMargin.ptr;_emscripten_bind_PanelSpriteObject_SetLeftMargin_1(self,newMargin)};PanelSpriteObject.prototype["GetTopMargin"]=PanelSpriteObject.prototype.GetTopMargin=function(){var self=this.ptr;return _emscripten_bind_PanelSpriteObject_GetTopMargin_0(self)};PanelSpriteObject.prototype["SetTopMargin"]=PanelSpriteObject.prototype.SetTopMargin=function(newMargin){var self=this.ptr;if(newMargin&&typeof newMargin==="object")newMargin=newMargin.ptr;_emscripten_bind_PanelSpriteObject_SetTopMargin_1(self,newMargin)};PanelSpriteObject.prototype["GetRightMargin"]=PanelSpriteObject.prototype.GetRightMargin=function(){var self=this.ptr;return _emscripten_bind_PanelSpriteObject_GetRightMargin_0(self)};PanelSpriteObject.prototype["SetRightMargin"]=PanelSpriteObject.prototype.SetRightMargin=function(newMargin){var self=this.ptr;if(newMargin&&typeof newMargin==="object")newMargin=newMargin.ptr;_emscripten_bind_PanelSpriteObject_SetRightMargin_1(self,newMargin)};PanelSpriteObject.prototype["GetBottomMargin"]=PanelSpriteObject.prototype.GetBottomMargin=function(){var self=this.ptr;return _emscripten_bind_PanelSpriteObject_GetBottomMargin_0(self)};PanelSpriteObject.prototype["SetBottomMargin"]=PanelSpriteObject.prototype.SetBottomMargin=function(newMargin){var self=this.ptr;if(newMargin&&typeof newMargin==="object")newMargin=newMargin.ptr;_emscripten_bind_PanelSpriteObject_SetBottomMargin_1(self,newMargin)};PanelSpriteObject.prototype["IsTiled"]=PanelSpriteObject.prototype.IsTiled=function(){var self=this.ptr;return!!_emscripten_bind_PanelSpriteObject_IsTiled_0(self)};PanelSpriteObject.prototype["SetTiled"]=PanelSpriteObject.prototype.SetTiled=function(enable){var self=this.ptr;if(enable&&typeof enable==="object")enable=enable.ptr;_emscripten_bind_PanelSpriteObject_SetTiled_1(self,enable)};PanelSpriteObject.prototype["SetTexture"]=PanelSpriteObject.prototype.SetTexture=function(texture){var self=this.ptr;ensureCache.prepare();if(texture&&typeof texture==="object")texture=texture.ptr;else texture=ensureString(texture);_emscripten_bind_PanelSpriteObject_SetTexture_1(self,texture)};PanelSpriteObject.prototype["GetTexture"]=PanelSpriteObject.prototype.GetTexture=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_PanelSpriteObject_GetTexture_0(self))};PanelSpriteObject.prototype["SetWidth"]=PanelSpriteObject.prototype.SetWidth=function(width){var self=this.ptr;if(width&&typeof width==="object")width=width.ptr;_emscripten_bind_PanelSpriteObject_SetWidth_1(self,width)};PanelSpriteObject.prototype["GetWidth"]=PanelSpriteObject.prototype.GetWidth=function(){var self=this.ptr;return _emscripten_bind_PanelSpriteObject_GetWidth_0(self)};PanelSpriteObject.prototype["SetHeight"]=PanelSpriteObject.prototype.SetHeight=function(height){var self=this.ptr;if(height&&typeof height==="object")height=height.ptr;_emscripten_bind_PanelSpriteObject_SetHeight_1(self,height)};PanelSpriteObject.prototype["GetHeight"]=PanelSpriteObject.prototype.GetHeight=function(){var self=this.ptr;return _emscripten_bind_PanelSpriteObject_GetHeight_0(self)};PanelSpriteObject.prototype["GetType"]=PanelSpriteObject.prototype.GetType=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_PanelSpriteObject_GetType_0(self))};PanelSpriteObject.prototype["SetType"]=PanelSpriteObject.prototype.SetType=function(typeName){var self=this.ptr;ensureCache.prepare();if(typeName&&typeof typeName==="object")typeName=typeName.ptr;else typeName=ensureString(typeName);_emscripten_bind_PanelSpriteObject_SetType_1(self,typeName)};PanelSpriteObject.prototype["ExposeResources"]=PanelSpriteObject.prototype.ExposeResources=function(worker){var self=this.ptr;if(worker&&typeof worker==="object")worker=worker.ptr;_emscripten_bind_PanelSpriteObject_ExposeResources_1(self,worker)};PanelSpriteObject.prototype["SerializeTo"]=PanelSpriteObject.prototype.SerializeTo=function(element){var self=this.ptr;if(element&&typeof element==="object")element=element.ptr;_emscripten_bind_PanelSpriteObject_SerializeTo_1(self,element)};PanelSpriteObject.prototype["UnserializeFrom"]=PanelSpriteObject.prototype.UnserializeFrom=function(project,element){var self=this.ptr;if(project&&typeof project==="object")project=project.ptr;if(element&&typeof element==="object")element=element.ptr;_emscripten_bind_PanelSpriteObject_UnserializeFrom_2(self,project,element)};PanelSpriteObject.prototype["GetAnimationName"]=PanelSpriteObject.prototype.GetAnimationName=function(index){var self=this.ptr;if(index&&typeof index==="object")index=index.ptr;return UTF8ToString(_emscripten_bind_PanelSpriteObject_GetAnimationName_1(self,index))};PanelSpriteObject.prototype["__destroy__"]=PanelSpriteObject.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_PanelSpriteObject___destroy___0(self)};function ShapePainterObject(){this.ptr=_emscripten_bind_ShapePainterObject_ShapePainterObject_0();getCache(ShapePainterObject)[this.ptr]=this}ShapePainterObject.prototype=Object.create(ObjectConfiguration.prototype);ShapePainterObject.prototype.constructor=ShapePainterObject;ShapePainterObject.prototype.__class__=ShapePainterObject;ShapePainterObject.__cache__={};Module["ShapePainterObject"]=ShapePainterObject;ShapePainterObject.prototype["SetCoordinatesAbsolute"]=ShapePainterObject.prototype.SetCoordinatesAbsolute=function(){var self=this.ptr;_emscripten_bind_ShapePainterObject_SetCoordinatesAbsolute_0(self)};ShapePainterObject.prototype["SetCoordinatesRelative"]=ShapePainterObject.prototype.SetCoordinatesRelative=function(){var self=this.ptr;_emscripten_bind_ShapePainterObject_SetCoordinatesRelative_0(self)};ShapePainterObject.prototype["AreCoordinatesAbsolute"]=ShapePainterObject.prototype.AreCoordinatesAbsolute=function(){var self=this.ptr;return!!_emscripten_bind_ShapePainterObject_AreCoordinatesAbsolute_0(self)};ShapePainterObject.prototype["SetClearBetweenFrames"]=ShapePainterObject.prototype.SetClearBetweenFrames=function(value){var self=this.ptr;if(value&&typeof value==="object")value=value.ptr;_emscripten_bind_ShapePainterObject_SetClearBetweenFrames_1(self,value)};ShapePainterObject.prototype["IsClearedBetweenFrames"]=ShapePainterObject.prototype.IsClearedBetweenFrames=function(){var self=this.ptr;return!!_emscripten_bind_ShapePainterObject_IsClearedBetweenFrames_0(self)};ShapePainterObject.prototype["SetOutlineSize"]=ShapePainterObject.prototype.SetOutlineSize=function(size){var self=this.ptr;if(size&&typeof size==="object")size=size.ptr;_emscripten_bind_ShapePainterObject_SetOutlineSize_1(self,size)};ShapePainterObject.prototype["GetOutlineSize"]=ShapePainterObject.prototype.GetOutlineSize=function(){var self=this.ptr;return _emscripten_bind_ShapePainterObject_GetOutlineSize_0(self)};ShapePainterObject.prototype["SetOutlineColor"]=ShapePainterObject.prototype.SetOutlineColor=function(color){var self=this.ptr;ensureCache.prepare();if(color&&typeof color==="object")color=color.ptr;else color=ensureString(color);_emscripten_bind_ShapePainterObject_SetOutlineColor_1(self,color)};ShapePainterObject.prototype["GetOutlineColor"]=ShapePainterObject.prototype.GetOutlineColor=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_ShapePainterObject_GetOutlineColor_0(self))};ShapePainterObject.prototype["SetOutlineOpacity"]=ShapePainterObject.prototype.SetOutlineOpacity=function(val){var self=this.ptr;if(val&&typeof val==="object")val=val.ptr;_emscripten_bind_ShapePainterObject_SetOutlineOpacity_1(self,val)};ShapePainterObject.prototype["GetOutlineOpacity"]=ShapePainterObject.prototype.GetOutlineOpacity=function(){var self=this.ptr;return _emscripten_bind_ShapePainterObject_GetOutlineOpacity_0(self)};ShapePainterObject.prototype["SetFillColor"]=ShapePainterObject.prototype.SetFillColor=function(color){var self=this.ptr;ensureCache.prepare();if(color&&typeof color==="object")color=color.ptr;else color=ensureString(color);_emscripten_bind_ShapePainterObject_SetFillColor_1(self,color)};ShapePainterObject.prototype["GetFillColor"]=ShapePainterObject.prototype.GetFillColor=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_ShapePainterObject_GetFillColor_0(self))};ShapePainterObject.prototype["SetFillOpacity"]=ShapePainterObject.prototype.SetFillOpacity=function(val){var self=this.ptr;if(val&&typeof val==="object")val=val.ptr;_emscripten_bind_ShapePainterObject_SetFillOpacity_1(self,val)};ShapePainterObject.prototype["GetFillOpacity"]=ShapePainterObject.prototype.GetFillOpacity=function(){var self=this.ptr;return _emscripten_bind_ShapePainterObject_GetFillOpacity_0(self)};ShapePainterObject.prototype["GetAntialiasing"]=ShapePainterObject.prototype.GetAntialiasing=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_ShapePainterObject_GetAntialiasing_0(self))};ShapePainterObject.prototype["SetAntialiasing"]=ShapePainterObject.prototype.SetAntialiasing=function(value){var self=this.ptr;ensureCache.prepare();if(value&&typeof value==="object")value=value.ptr;else value=ensureString(value);_emscripten_bind_ShapePainterObject_SetAntialiasing_1(self,value)};ShapePainterObject.prototype["GetType"]=ShapePainterObject.prototype.GetType=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_ShapePainterObject_GetType_0(self))};ShapePainterObject.prototype["SetType"]=ShapePainterObject.prototype.SetType=function(typeName){var self=this.ptr;ensureCache.prepare();if(typeName&&typeof typeName==="object")typeName=typeName.ptr;else typeName=ensureString(typeName);_emscripten_bind_ShapePainterObject_SetType_1(self,typeName)};ShapePainterObject.prototype["ExposeResources"]=ShapePainterObject.prototype.ExposeResources=function(worker){var self=this.ptr;if(worker&&typeof worker==="object")worker=worker.ptr;_emscripten_bind_ShapePainterObject_ExposeResources_1(self,worker)};ShapePainterObject.prototype["SerializeTo"]=ShapePainterObject.prototype.SerializeTo=function(element){var self=this.ptr;if(element&&typeof element==="object")element=element.ptr;_emscripten_bind_ShapePainterObject_SerializeTo_1(self,element)};ShapePainterObject.prototype["UnserializeFrom"]=ShapePainterObject.prototype.UnserializeFrom=function(project,element){var self=this.ptr;if(project&&typeof project==="object")project=project.ptr;if(element&&typeof element==="object")element=element.ptr;_emscripten_bind_ShapePainterObject_UnserializeFrom_2(self,project,element)};ShapePainterObject.prototype["GetAnimationName"]=ShapePainterObject.prototype.GetAnimationName=function(index){var self=this.ptr;if(index&&typeof index==="object")index=index.ptr;return UTF8ToString(_emscripten_bind_ShapePainterObject_GetAnimationName_1(self,index))};ShapePainterObject.prototype["__destroy__"]=ShapePainterObject.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_ShapePainterObject___destroy___0(self)};function TextEntryObject(){this.ptr=_emscripten_bind_TextEntryObject_TextEntryObject_0();getCache(TextEntryObject)[this.ptr]=this}TextEntryObject.prototype=Object.create(ObjectConfiguration.prototype);TextEntryObject.prototype.constructor=TextEntryObject;TextEntryObject.prototype.__class__=TextEntryObject;TextEntryObject.__cache__={};Module["TextEntryObject"]=TextEntryObject;TextEntryObject.prototype["GetType"]=TextEntryObject.prototype.GetType=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_TextEntryObject_GetType_0(self))};TextEntryObject.prototype["SetType"]=TextEntryObject.prototype.SetType=function(typeName){var self=this.ptr;ensureCache.prepare();if(typeName&&typeof typeName==="object")typeName=typeName.ptr;else typeName=ensureString(typeName);_emscripten_bind_TextEntryObject_SetType_1(self,typeName)};TextEntryObject.prototype["ExposeResources"]=TextEntryObject.prototype.ExposeResources=function(worker){var self=this.ptr;if(worker&&typeof worker==="object")worker=worker.ptr;_emscripten_bind_TextEntryObject_ExposeResources_1(self,worker)};TextEntryObject.prototype["SerializeTo"]=TextEntryObject.prototype.SerializeTo=function(element){var self=this.ptr;if(element&&typeof element==="object")element=element.ptr;_emscripten_bind_TextEntryObject_SerializeTo_1(self,element)};TextEntryObject.prototype["UnserializeFrom"]=TextEntryObject.prototype.UnserializeFrom=function(project,element){var self=this.ptr;if(project&&typeof project==="object")project=project.ptr;if(element&&typeof element==="object")element=element.ptr;_emscripten_bind_TextEntryObject_UnserializeFrom_2(self,project,element)};TextEntryObject.prototype["GetAnimationName"]=TextEntryObject.prototype.GetAnimationName=function(index){var self=this.ptr;if(index&&typeof index==="object")index=index.ptr;return UTF8ToString(_emscripten_bind_TextEntryObject_GetAnimationName_1(self,index))};TextEntryObject.prototype["__destroy__"]=TextEntryObject.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_TextEntryObject___destroy___0(self)};function ParticleEmitterObject(){this.ptr=_emscripten_bind_ParticleEmitterObject_ParticleEmitterObject_0();getCache(ParticleEmitterObject)[this.ptr]=this}ParticleEmitterObject.prototype=Object.create(ObjectConfiguration.prototype);ParticleEmitterObject.prototype.constructor=ParticleEmitterObject;ParticleEmitterObject.prototype.__class__=ParticleEmitterObject;ParticleEmitterObject.__cache__={};Module["ParticleEmitterObject"]=ParticleEmitterObject;ParticleEmitterObject.prototype["SetRendererType"]=ParticleEmitterObject.prototype.SetRendererType=function(type){var self=this.ptr;if(type&&typeof type==="object")type=type.ptr;_emscripten_bind_ParticleEmitterObject_SetRendererType_1(self,type)};ParticleEmitterObject.prototype["GetRendererType"]=ParticleEmitterObject.prototype.GetRendererType=function(){var self=this.ptr;return _emscripten_bind_ParticleEmitterObject_GetRendererType_0(self)};ParticleEmitterObject.prototype["SetParticleTexture"]=ParticleEmitterObject.prototype.SetParticleTexture=function(resourceName){var self=this.ptr;ensureCache.prepare();if(resourceName&&typeof resourceName==="object")resourceName=resourceName.ptr;else resourceName=ensureString(resourceName);_emscripten_bind_ParticleEmitterObject_SetParticleTexture_1(self,resourceName)};ParticleEmitterObject.prototype["GetParticleTexture"]=ParticleEmitterObject.prototype.GetParticleTexture=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_ParticleEmitterObject_GetParticleTexture_0(self))};ParticleEmitterObject.prototype["SetRendererParam1"]=ParticleEmitterObject.prototype.SetRendererParam1=function(newValue){var self=this.ptr;if(newValue&&typeof newValue==="object")newValue=newValue.ptr;_emscripten_bind_ParticleEmitterObject_SetRendererParam1_1(self,newValue)};ParticleEmitterObject.prototype["GetRendererParam1"]=ParticleEmitterObject.prototype.GetRendererParam1=function(){var self=this.ptr;return _emscripten_bind_ParticleEmitterObject_GetRendererParam1_0(self)};ParticleEmitterObject.prototype["SetRendererParam2"]=ParticleEmitterObject.prototype.SetRendererParam2=function(newValue){var self=this.ptr;if(newValue&&typeof newValue==="object")newValue=newValue.ptr;_emscripten_bind_ParticleEmitterObject_SetRendererParam2_1(self,newValue)};ParticleEmitterObject.prototype["GetRendererParam2"]=ParticleEmitterObject.prototype.GetRendererParam2=function(){var self=this.ptr;return _emscripten_bind_ParticleEmitterObject_GetRendererParam2_0(self)};ParticleEmitterObject.prototype["IsRenderingAdditive"]=ParticleEmitterObject.prototype.IsRenderingAdditive=function(){var self=this.ptr;return!!_emscripten_bind_ParticleEmitterObject_IsRenderingAdditive_0(self)};ParticleEmitterObject.prototype["SetRenderingAdditive"]=ParticleEmitterObject.prototype.SetRenderingAdditive=function(){var self=this.ptr;_emscripten_bind_ParticleEmitterObject_SetRenderingAdditive_0(self)};ParticleEmitterObject.prototype["SetRenderingAlpha"]=ParticleEmitterObject.prototype.SetRenderingAlpha=function(){var self=this.ptr;_emscripten_bind_ParticleEmitterObject_SetRenderingAlpha_0(self)};ParticleEmitterObject.prototype["SetMaxParticleNb"]=ParticleEmitterObject.prototype.SetMaxParticleNb=function(newValue){var self=this.ptr;if(newValue&&typeof newValue==="object")newValue=newValue.ptr;_emscripten_bind_ParticleEmitterObject_SetMaxParticleNb_1(self,newValue)};ParticleEmitterObject.prototype["GetMaxParticleNb"]=ParticleEmitterObject.prototype.GetMaxParticleNb=function(){var self=this.ptr;return _emscripten_bind_ParticleEmitterObject_GetMaxParticleNb_0(self)};ParticleEmitterObject.prototype["SetTank"]=ParticleEmitterObject.prototype.SetTank=function(newValue){var self=this.ptr;if(newValue&&typeof newValue==="object")newValue=newValue.ptr;_emscripten_bind_ParticleEmitterObject_SetTank_1(self,newValue)};ParticleEmitterObject.prototype["GetTank"]=ParticleEmitterObject.prototype.GetTank=function(){var self=this.ptr;return _emscripten_bind_ParticleEmitterObject_GetTank_0(self)};ParticleEmitterObject.prototype["SetFlow"]=ParticleEmitterObject.prototype.SetFlow=function(newValue){var self=this.ptr;if(newValue&&typeof newValue==="object")newValue=newValue.ptr;_emscripten_bind_ParticleEmitterObject_SetFlow_1(self,newValue)};ParticleEmitterObject.prototype["GetFlow"]=ParticleEmitterObject.prototype.GetFlow=function(){var self=this.ptr;return _emscripten_bind_ParticleEmitterObject_GetFlow_0(self)};ParticleEmitterObject.prototype["SetDestroyWhenNoParticles"]=ParticleEmitterObject.prototype.SetDestroyWhenNoParticles=function(enable){var self=this.ptr;if(enable&&typeof enable==="object")enable=enable.ptr;_emscripten_bind_ParticleEmitterObject_SetDestroyWhenNoParticles_1(self,enable)};ParticleEmitterObject.prototype["GetDestroyWhenNoParticles"]=ParticleEmitterObject.prototype.GetDestroyWhenNoParticles=function(){var self=this.ptr;return!!_emscripten_bind_ParticleEmitterObject_GetDestroyWhenNoParticles_0(self)};ParticleEmitterObject.prototype["SetEmitterForceMin"]=ParticleEmitterObject.prototype.SetEmitterForceMin=function(newValue){var self=this.ptr;if(newValue&&typeof newValue==="object")newValue=newValue.ptr;_emscripten_bind_ParticleEmitterObject_SetEmitterForceMin_1(self,newValue)};ParticleEmitterObject.prototype["GetEmitterForceMin"]=ParticleEmitterObject.prototype.GetEmitterForceMin=function(){var self=this.ptr;return _emscripten_bind_ParticleEmitterObject_GetEmitterForceMin_0(self)};ParticleEmitterObject.prototype["SetEmitterForceMax"]=ParticleEmitterObject.prototype.SetEmitterForceMax=function(newValue){var self=this.ptr;if(newValue&&typeof newValue==="object")newValue=newValue.ptr;_emscripten_bind_ParticleEmitterObject_SetEmitterForceMax_1(self,newValue)};ParticleEmitterObject.prototype["GetEmitterForceMax"]=ParticleEmitterObject.prototype.GetEmitterForceMax=function(){var self=this.ptr;return _emscripten_bind_ParticleEmitterObject_GetEmitterForceMax_0(self)};ParticleEmitterObject.prototype["SetConeSprayAngle"]=ParticleEmitterObject.prototype.SetConeSprayAngle=function(newValue){var self=this.ptr;if(newValue&&typeof newValue==="object")newValue=newValue.ptr;_emscripten_bind_ParticleEmitterObject_SetConeSprayAngle_1(self,newValue)};ParticleEmitterObject.prototype["GetConeSprayAngle"]=ParticleEmitterObject.prototype.GetConeSprayAngle=function(){var self=this.ptr;return _emscripten_bind_ParticleEmitterObject_GetConeSprayAngle_0(self)};ParticleEmitterObject.prototype["SetZoneRadius"]=ParticleEmitterObject.prototype.SetZoneRadius=function(newValue){var self=this.ptr;if(newValue&&typeof newValue==="object")newValue=newValue.ptr;_emscripten_bind_ParticleEmitterObject_SetZoneRadius_1(self,newValue)};ParticleEmitterObject.prototype["GetZoneRadius"]=ParticleEmitterObject.prototype.GetZoneRadius=function(){var self=this.ptr;return _emscripten_bind_ParticleEmitterObject_GetZoneRadius_0(self)};ParticleEmitterObject.prototype["SetParticleGravityX"]=ParticleEmitterObject.prototype.SetParticleGravityX=function(newValue){var self=this.ptr;if(newValue&&typeof newValue==="object")newValue=newValue.ptr;_emscripten_bind_ParticleEmitterObject_SetParticleGravityX_1(self,newValue)};ParticleEmitterObject.prototype["GetParticleGravityX"]=ParticleEmitterObject.prototype.GetParticleGravityX=function(){var self=this.ptr;return _emscripten_bind_ParticleEmitterObject_GetParticleGravityX_0(self)};ParticleEmitterObject.prototype["SetParticleGravityY"]=ParticleEmitterObject.prototype.SetParticleGravityY=function(newValue){var self=this.ptr;if(newValue&&typeof newValue==="object")newValue=newValue.ptr;_emscripten_bind_ParticleEmitterObject_SetParticleGravityY_1(self,newValue)};ParticleEmitterObject.prototype["GetParticleGravityY"]=ParticleEmitterObject.prototype.GetParticleGravityY=function(){var self=this.ptr;return _emscripten_bind_ParticleEmitterObject_GetParticleGravityY_0(self)};ParticleEmitterObject.prototype["SetParticleGravityAngle"]=ParticleEmitterObject.prototype.SetParticleGravityAngle=function(newValue){var self=this.ptr;if(newValue&&typeof newValue==="object")newValue=newValue.ptr;_emscripten_bind_ParticleEmitterObject_SetParticleGravityAngle_1(self,newValue)};ParticleEmitterObject.prototype["GetParticleGravityAngle"]=ParticleEmitterObject.prototype.GetParticleGravityAngle=function(){var self=this.ptr;return _emscripten_bind_ParticleEmitterObject_GetParticleGravityAngle_0(self)};ParticleEmitterObject.prototype["SetParticleGravityLength"]=ParticleEmitterObject.prototype.SetParticleGravityLength=function(newValue){var self=this.ptr;if(newValue&&typeof newValue==="object")newValue=newValue.ptr;_emscripten_bind_ParticleEmitterObject_SetParticleGravityLength_1(self,newValue)};ParticleEmitterObject.prototype["GetParticleGravityLength"]=ParticleEmitterObject.prototype.GetParticleGravityLength=function(){var self=this.ptr;return _emscripten_bind_ParticleEmitterObject_GetParticleGravityLength_0(self)};ParticleEmitterObject.prototype["SetParticleLifeTimeMin"]=ParticleEmitterObject.prototype.SetParticleLifeTimeMin=function(newValue){var self=this.ptr;if(newValue&&typeof newValue==="object")newValue=newValue.ptr;_emscripten_bind_ParticleEmitterObject_SetParticleLifeTimeMin_1(self,newValue)};ParticleEmitterObject.prototype["GetParticleLifeTimeMin"]=ParticleEmitterObject.prototype.GetParticleLifeTimeMin=function(){var self=this.ptr;return _emscripten_bind_ParticleEmitterObject_GetParticleLifeTimeMin_0(self)};ParticleEmitterObject.prototype["SetParticleLifeTimeMax"]=ParticleEmitterObject.prototype.SetParticleLifeTimeMax=function(newValue){var self=this.ptr;if(newValue&&typeof newValue==="object")newValue=newValue.ptr;_emscripten_bind_ParticleEmitterObject_SetParticleLifeTimeMax_1(self,newValue)};ParticleEmitterObject.prototype["GetParticleLifeTimeMax"]=ParticleEmitterObject.prototype.GetParticleLifeTimeMax=function(){var self=this.ptr;return _emscripten_bind_ParticleEmitterObject_GetParticleLifeTimeMax_0(self)};ParticleEmitterObject.prototype["SetParticleColor1"]=ParticleEmitterObject.prototype.SetParticleColor1=function(newValue){var self=this.ptr;ensureCache.prepare();if(newValue&&typeof newValue==="object")newValue=newValue.ptr;else newValue=ensureString(newValue);_emscripten_bind_ParticleEmitterObject_SetParticleColor1_1(self,newValue)};ParticleEmitterObject.prototype["GetParticleColor1"]=ParticleEmitterObject.prototype.GetParticleColor1=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_ParticleEmitterObject_GetParticleColor1_0(self))};ParticleEmitterObject.prototype["SetParticleColor2"]=ParticleEmitterObject.prototype.SetParticleColor2=function(newValue){var self=this.ptr;ensureCache.prepare();if(newValue&&typeof newValue==="object")newValue=newValue.ptr;else newValue=ensureString(newValue);_emscripten_bind_ParticleEmitterObject_SetParticleColor2_1(self,newValue)};ParticleEmitterObject.prototype["GetParticleColor2"]=ParticleEmitterObject.prototype.GetParticleColor2=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_ParticleEmitterObject_GetParticleColor2_0(self))};ParticleEmitterObject.prototype["SetParticleAlpha1"]=ParticleEmitterObject.prototype.SetParticleAlpha1=function(newValue){var self=this.ptr;if(newValue&&typeof newValue==="object")newValue=newValue.ptr;_emscripten_bind_ParticleEmitterObject_SetParticleAlpha1_1(self,newValue)};ParticleEmitterObject.prototype["GetParticleAlpha1"]=ParticleEmitterObject.prototype.GetParticleAlpha1=function(){var self=this.ptr;return _emscripten_bind_ParticleEmitterObject_GetParticleAlpha1_0(self)};ParticleEmitterObject.prototype["SetParticleAlpha2"]=ParticleEmitterObject.prototype.SetParticleAlpha2=function(newValue){var self=this.ptr;if(newValue&&typeof newValue==="object")newValue=newValue.ptr;_emscripten_bind_ParticleEmitterObject_SetParticleAlpha2_1(self,newValue)};ParticleEmitterObject.prototype["GetParticleAlpha2"]=ParticleEmitterObject.prototype.GetParticleAlpha2=function(){var self=this.ptr;return _emscripten_bind_ParticleEmitterObject_GetParticleAlpha2_0(self)};ParticleEmitterObject.prototype["SetParticleSize1"]=ParticleEmitterObject.prototype.SetParticleSize1=function(newValue){var self=this.ptr;if(newValue&&typeof newValue==="object")newValue=newValue.ptr;_emscripten_bind_ParticleEmitterObject_SetParticleSize1_1(self,newValue)};ParticleEmitterObject.prototype["GetParticleSize1"]=ParticleEmitterObject.prototype.GetParticleSize1=function(){var self=this.ptr;return _emscripten_bind_ParticleEmitterObject_GetParticleSize1_0(self)};ParticleEmitterObject.prototype["SetParticleSize2"]=ParticleEmitterObject.prototype.SetParticleSize2=function(newValue){var self=this.ptr;if(newValue&&typeof newValue==="object")newValue=newValue.ptr;_emscripten_bind_ParticleEmitterObject_SetParticleSize2_1(self,newValue)};ParticleEmitterObject.prototype["GetParticleSize2"]=ParticleEmitterObject.prototype.GetParticleSize2=function(){var self=this.ptr;return _emscripten_bind_ParticleEmitterObject_GetParticleSize2_0(self)};ParticleEmitterObject.prototype["SetParticleAngle1"]=ParticleEmitterObject.prototype.SetParticleAngle1=function(newValue){var self=this.ptr;if(newValue&&typeof newValue==="object")newValue=newValue.ptr;_emscripten_bind_ParticleEmitterObject_SetParticleAngle1_1(self,newValue)};ParticleEmitterObject.prototype["GetParticleAngle1"]=ParticleEmitterObject.prototype.GetParticleAngle1=function(){var self=this.ptr;return _emscripten_bind_ParticleEmitterObject_GetParticleAngle1_0(self)};ParticleEmitterObject.prototype["SetParticleAngle2"]=ParticleEmitterObject.prototype.SetParticleAngle2=function(newValue){var self=this.ptr;if(newValue&&typeof newValue==="object")newValue=newValue.ptr;_emscripten_bind_ParticleEmitterObject_SetParticleAngle2_1(self,newValue)};ParticleEmitterObject.prototype["GetParticleAngle2"]=ParticleEmitterObject.prototype.GetParticleAngle2=function(){var self=this.ptr;return _emscripten_bind_ParticleEmitterObject_GetParticleAngle2_0(self)};ParticleEmitterObject.prototype["SetParticleAlphaRandomness1"]=ParticleEmitterObject.prototype.SetParticleAlphaRandomness1=function(newValue){var self=this.ptr;if(newValue&&typeof newValue==="object")newValue=newValue.ptr;_emscripten_bind_ParticleEmitterObject_SetParticleAlphaRandomness1_1(self,newValue)};ParticleEmitterObject.prototype["GetParticleAlphaRandomness1"]=ParticleEmitterObject.prototype.GetParticleAlphaRandomness1=function(){var self=this.ptr;return _emscripten_bind_ParticleEmitterObject_GetParticleAlphaRandomness1_0(self)};ParticleEmitterObject.prototype["SetParticleAlphaRandomness2"]=ParticleEmitterObject.prototype.SetParticleAlphaRandomness2=function(newValue){var self=this.ptr;if(newValue&&typeof newValue==="object")newValue=newValue.ptr;_emscripten_bind_ParticleEmitterObject_SetParticleAlphaRandomness2_1(self,newValue)};ParticleEmitterObject.prototype["GetParticleAlphaRandomness2"]=ParticleEmitterObject.prototype.GetParticleAlphaRandomness2=function(){var self=this.ptr;return _emscripten_bind_ParticleEmitterObject_GetParticleAlphaRandomness2_0(self)};ParticleEmitterObject.prototype["SetParticleSizeRandomness1"]=ParticleEmitterObject.prototype.SetParticleSizeRandomness1=function(newValue){var self=this.ptr;if(newValue&&typeof newValue==="object")newValue=newValue.ptr;_emscripten_bind_ParticleEmitterObject_SetParticleSizeRandomness1_1(self,newValue)};ParticleEmitterObject.prototype["GetParticleSizeRandomness1"]=ParticleEmitterObject.prototype.GetParticleSizeRandomness1=function(){var self=this.ptr;return _emscripten_bind_ParticleEmitterObject_GetParticleSizeRandomness1_0(self)};ParticleEmitterObject.prototype["SetParticleSizeRandomness2"]=ParticleEmitterObject.prototype.SetParticleSizeRandomness2=function(newValue){var self=this.ptr;if(newValue&&typeof newValue==="object")newValue=newValue.ptr;_emscripten_bind_ParticleEmitterObject_SetParticleSizeRandomness2_1(self,newValue)};ParticleEmitterObject.prototype["GetParticleSizeRandomness2"]=ParticleEmitterObject.prototype.GetParticleSizeRandomness2=function(){var self=this.ptr;return _emscripten_bind_ParticleEmitterObject_GetParticleSizeRandomness2_0(self)};ParticleEmitterObject.prototype["SetParticleAngleRandomness1"]=ParticleEmitterObject.prototype.SetParticleAngleRandomness1=function(newValue){var self=this.ptr;if(newValue&&typeof newValue==="object")newValue=newValue.ptr;_emscripten_bind_ParticleEmitterObject_SetParticleAngleRandomness1_1(self,newValue)};ParticleEmitterObject.prototype["GetParticleAngleRandomness1"]=ParticleEmitterObject.prototype.GetParticleAngleRandomness1=function(){var self=this.ptr;return _emscripten_bind_ParticleEmitterObject_GetParticleAngleRandomness1_0(self)};ParticleEmitterObject.prototype["SetParticleAngleRandomness2"]=ParticleEmitterObject.prototype.SetParticleAngleRandomness2=function(newValue){var self=this.ptr;if(newValue&&typeof newValue==="object")newValue=newValue.ptr;_emscripten_bind_ParticleEmitterObject_SetParticleAngleRandomness2_1(self,newValue)};ParticleEmitterObject.prototype["GetParticleAngleRandomness2"]=ParticleEmitterObject.prototype.GetParticleAngleRandomness2=function(){var self=this.ptr;return _emscripten_bind_ParticleEmitterObject_GetParticleAngleRandomness2_0(self)};ParticleEmitterObject.prototype["SetJumpForwardInTimeOnCreation"]=ParticleEmitterObject.prototype.SetJumpForwardInTimeOnCreation=function(newValue){var self=this.ptr;if(newValue&&typeof newValue==="object")newValue=newValue.ptr;_emscripten_bind_ParticleEmitterObject_SetJumpForwardInTimeOnCreation_1(self,newValue)};ParticleEmitterObject.prototype["GetJumpForwardInTimeOnCreation"]=ParticleEmitterObject.prototype.GetJumpForwardInTimeOnCreation=function(){var self=this.ptr;return _emscripten_bind_ParticleEmitterObject_GetJumpForwardInTimeOnCreation_0(self)};ParticleEmitterObject.prototype["GetType"]=ParticleEmitterObject.prototype.GetType=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_ParticleEmitterObject_GetType_0(self))};ParticleEmitterObject.prototype["SetType"]=ParticleEmitterObject.prototype.SetType=function(typeName){var self=this.ptr;ensureCache.prepare();if(typeName&&typeof typeName==="object")typeName=typeName.ptr;else typeName=ensureString(typeName);_emscripten_bind_ParticleEmitterObject_SetType_1(self,typeName)};ParticleEmitterObject.prototype["ExposeResources"]=ParticleEmitterObject.prototype.ExposeResources=function(worker){var self=this.ptr;if(worker&&typeof worker==="object")worker=worker.ptr;_emscripten_bind_ParticleEmitterObject_ExposeResources_1(self,worker)};ParticleEmitterObject.prototype["SerializeTo"]=ParticleEmitterObject.prototype.SerializeTo=function(element){var self=this.ptr;if(element&&typeof element==="object")element=element.ptr;_emscripten_bind_ParticleEmitterObject_SerializeTo_1(self,element)};ParticleEmitterObject.prototype["UnserializeFrom"]=ParticleEmitterObject.prototype.UnserializeFrom=function(project,element){var self=this.ptr;if(project&&typeof project==="object")project=project.ptr;if(element&&typeof element==="object")element=element.ptr;_emscripten_bind_ParticleEmitterObject_UnserializeFrom_2(self,project,element)};ParticleEmitterObject.prototype["GetAnimationName"]=ParticleEmitterObject.prototype.GetAnimationName=function(index){var self=this.ptr;if(index&&typeof index==="object")index=index.ptr;return UTF8ToString(_emscripten_bind_ParticleEmitterObject_GetAnimationName_1(self,index))};ParticleEmitterObject.prototype["__destroy__"]=ParticleEmitterObject.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_ParticleEmitterObject___destroy___0(self)};function LayoutCodeGenerator(project){if(project&&typeof project==="object")project=project.ptr;this.ptr=_emscripten_bind_LayoutCodeGenerator_LayoutCodeGenerator_1(project);getCache(LayoutCodeGenerator)[this.ptr]=this}LayoutCodeGenerator.prototype=Object.create(WrapperObject.prototype);LayoutCodeGenerator.prototype.constructor=LayoutCodeGenerator;LayoutCodeGenerator.prototype.__class__=LayoutCodeGenerator;LayoutCodeGenerator.__cache__={};Module["LayoutCodeGenerator"]=LayoutCodeGenerator;LayoutCodeGenerator.prototype["GenerateLayoutCompleteCode"]=LayoutCodeGenerator.prototype.GenerateLayoutCompleteCode=function(layout,includes,diagnosticReport,compilationForRuntime){var self=this.ptr;if(layout&&typeof layout==="object")layout=layout.ptr;if(includes&&typeof includes==="object")includes=includes.ptr;if(diagnosticReport&&typeof diagnosticReport==="object")diagnosticReport=diagnosticReport.ptr;if(compilationForRuntime&&typeof compilationForRuntime==="object")compilationForRuntime=compilationForRuntime.ptr;return UTF8ToString(_emscripten_bind_LayoutCodeGenerator_GenerateLayoutCompleteCode_4(self,layout,includes,diagnosticReport,compilationForRuntime))};LayoutCodeGenerator.prototype["__destroy__"]=LayoutCodeGenerator.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_LayoutCodeGenerator___destroy___0(self)};function BehaviorCodeGenerator(project){if(project&&typeof project==="object")project=project.ptr;this.ptr=_emscripten_bind_BehaviorCodeGenerator_BehaviorCodeGenerator_1(project);getCache(BehaviorCodeGenerator)[this.ptr]=this}BehaviorCodeGenerator.prototype=Object.create(WrapperObject.prototype);BehaviorCodeGenerator.prototype.constructor=BehaviorCodeGenerator;BehaviorCodeGenerator.prototype.__class__=BehaviorCodeGenerator;BehaviorCodeGenerator.__cache__={};Module["BehaviorCodeGenerator"]=BehaviorCodeGenerator;BehaviorCodeGenerator.prototype["GenerateRuntimeBehaviorCompleteCode"]=BehaviorCodeGenerator.prototype.GenerateRuntimeBehaviorCompleteCode=function(eventsFunctionsExtension,eventsBasedBehavior,codeNamespace,behaviorMethodMangledNames,includes,compilationForRuntime){var self=this.ptr;ensureCache.prepare();if(eventsFunctionsExtension&&typeof eventsFunctionsExtension==="object")eventsFunctionsExtension=eventsFunctionsExtension.ptr;if(eventsBasedBehavior&&typeof eventsBasedBehavior==="object")eventsBasedBehavior=eventsBasedBehavior.ptr;if(codeNamespace&&typeof codeNamespace==="object")codeNamespace=codeNamespace.ptr;else codeNamespace=ensureString(codeNamespace);if(behaviorMethodMangledNames&&typeof behaviorMethodMangledNames==="object")behaviorMethodMangledNames=behaviorMethodMangledNames.ptr;if(includes&&typeof includes==="object")includes=includes.ptr;if(compilationForRuntime&&typeof compilationForRuntime==="object")compilationForRuntime=compilationForRuntime.ptr;return UTF8ToString(_emscripten_bind_BehaviorCodeGenerator_GenerateRuntimeBehaviorCompleteCode_6(self,eventsFunctionsExtension,eventsBasedBehavior,codeNamespace,behaviorMethodMangledNames,includes,compilationForRuntime))};BehaviorCodeGenerator.prototype["STATIC_GetBehaviorPropertyGetterName"]=BehaviorCodeGenerator.prototype.STATIC_GetBehaviorPropertyGetterName=function(propertyName){var self=this.ptr;ensureCache.prepare();if(propertyName&&typeof propertyName==="object")propertyName=propertyName.ptr;else propertyName=ensureString(propertyName);return UTF8ToString(_emscripten_bind_BehaviorCodeGenerator_STATIC_GetBehaviorPropertyGetterName_1(self,propertyName))};BehaviorCodeGenerator.prototype["STATIC_GetBehaviorPropertySetterName"]=BehaviorCodeGenerator.prototype.STATIC_GetBehaviorPropertySetterName=function(propertyName){var self=this.ptr;ensureCache.prepare();if(propertyName&&typeof propertyName==="object")propertyName=propertyName.ptr;else propertyName=ensureString(propertyName);return UTF8ToString(_emscripten_bind_BehaviorCodeGenerator_STATIC_GetBehaviorPropertySetterName_1(self,propertyName))};BehaviorCodeGenerator.prototype["STATIC_GetBehaviorPropertyToggleFunctionName"]=BehaviorCodeGenerator.prototype.STATIC_GetBehaviorPropertyToggleFunctionName=function(propertyName){var self=this.ptr;ensureCache.prepare();if(propertyName&&typeof propertyName==="object")propertyName=propertyName.ptr;else propertyName=ensureString(propertyName);return UTF8ToString(_emscripten_bind_BehaviorCodeGenerator_STATIC_GetBehaviorPropertyToggleFunctionName_1(self,propertyName))};BehaviorCodeGenerator.prototype["STATIC_GetBehaviorSharedPropertyGetterName"]=BehaviorCodeGenerator.prototype.STATIC_GetBehaviorSharedPropertyGetterName=function(propertyName){var self=this.ptr;ensureCache.prepare();if(propertyName&&typeof propertyName==="object")propertyName=propertyName.ptr;else propertyName=ensureString(propertyName);return UTF8ToString(_emscripten_bind_BehaviorCodeGenerator_STATIC_GetBehaviorSharedPropertyGetterName_1(self,propertyName))};BehaviorCodeGenerator.prototype["STATIC_GetBehaviorSharedPropertySetterName"]=BehaviorCodeGenerator.prototype.STATIC_GetBehaviorSharedPropertySetterName=function(propertyName){var self=this.ptr;ensureCache.prepare();if(propertyName&&typeof propertyName==="object")propertyName=propertyName.ptr;else propertyName=ensureString(propertyName);return UTF8ToString(_emscripten_bind_BehaviorCodeGenerator_STATIC_GetBehaviorSharedPropertySetterName_1(self,propertyName))};BehaviorCodeGenerator.prototype["STATIC_GetBehaviorSharedPropertyToggleFunctionName"]=BehaviorCodeGenerator.prototype.STATIC_GetBehaviorSharedPropertyToggleFunctionName=function(propertyName){var self=this.ptr;ensureCache.prepare();if(propertyName&&typeof propertyName==="object")propertyName=propertyName.ptr;else propertyName=ensureString(propertyName);return UTF8ToString(_emscripten_bind_BehaviorCodeGenerator_STATIC_GetBehaviorSharedPropertyToggleFunctionName_1(self,propertyName))};BehaviorCodeGenerator.prototype["__destroy__"]=BehaviorCodeGenerator.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_BehaviorCodeGenerator___destroy___0(self)};function ObjectCodeGenerator(project){if(project&&typeof project==="object")project=project.ptr;this.ptr=_emscripten_bind_ObjectCodeGenerator_ObjectCodeGenerator_1(project);getCache(ObjectCodeGenerator)[this.ptr]=this}ObjectCodeGenerator.prototype=Object.create(WrapperObject.prototype);ObjectCodeGenerator.prototype.constructor=ObjectCodeGenerator;ObjectCodeGenerator.prototype.__class__=ObjectCodeGenerator;ObjectCodeGenerator.__cache__={};Module["ObjectCodeGenerator"]=ObjectCodeGenerator;ObjectCodeGenerator.prototype["GenerateRuntimeObjectCompleteCode"]=ObjectCodeGenerator.prototype.GenerateRuntimeObjectCompleteCode=function(eventsFunctionsExtension,eventsBasedObject,codeNamespace,objectMethodMangledNames,includes,compilationForRuntime){var self=this.ptr;ensureCache.prepare();if(eventsFunctionsExtension&&typeof eventsFunctionsExtension==="object")eventsFunctionsExtension=eventsFunctionsExtension.ptr;if(eventsBasedObject&&typeof eventsBasedObject==="object")eventsBasedObject=eventsBasedObject.ptr;if(codeNamespace&&typeof codeNamespace==="object")codeNamespace=codeNamespace.ptr;else codeNamespace=ensureString(codeNamespace);if(objectMethodMangledNames&&typeof objectMethodMangledNames==="object")objectMethodMangledNames=objectMethodMangledNames.ptr;if(includes&&typeof includes==="object")includes=includes.ptr;if(compilationForRuntime&&typeof compilationForRuntime==="object")compilationForRuntime=compilationForRuntime.ptr;return UTF8ToString(_emscripten_bind_ObjectCodeGenerator_GenerateRuntimeObjectCompleteCode_6(self,eventsFunctionsExtension,eventsBasedObject,codeNamespace,objectMethodMangledNames,includes,compilationForRuntime))};ObjectCodeGenerator.prototype["STATIC_GetObjectPropertyGetterName"]=ObjectCodeGenerator.prototype.STATIC_GetObjectPropertyGetterName=function(propertyName){var self=this.ptr;ensureCache.prepare();if(propertyName&&typeof propertyName==="object")propertyName=propertyName.ptr;else propertyName=ensureString(propertyName);return UTF8ToString(_emscripten_bind_ObjectCodeGenerator_STATIC_GetObjectPropertyGetterName_1(self,propertyName))};ObjectCodeGenerator.prototype["STATIC_GetObjectPropertySetterName"]=ObjectCodeGenerator.prototype.STATIC_GetObjectPropertySetterName=function(propertyName){var self=this.ptr;ensureCache.prepare();if(propertyName&&typeof propertyName==="object")propertyName=propertyName.ptr;else propertyName=ensureString(propertyName);return UTF8ToString(_emscripten_bind_ObjectCodeGenerator_STATIC_GetObjectPropertySetterName_1(self,propertyName))};ObjectCodeGenerator.prototype["STATIC_GetObjectPropertyToggleFunctionName"]=ObjectCodeGenerator.prototype.STATIC_GetObjectPropertyToggleFunctionName=function(propertyName){var self=this.ptr;ensureCache.prepare();if(propertyName&&typeof propertyName==="object")propertyName=propertyName.ptr;else propertyName=ensureString(propertyName);return UTF8ToString(_emscripten_bind_ObjectCodeGenerator_STATIC_GetObjectPropertyToggleFunctionName_1(self,propertyName))};ObjectCodeGenerator.prototype["__destroy__"]=ObjectCodeGenerator.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_ObjectCodeGenerator___destroy___0(self)};function EventsFunctionsExtensionCodeGenerator(project){if(project&&typeof project==="object")project=project.ptr;this.ptr=_emscripten_bind_EventsFunctionsExtensionCodeGenerator_EventsFunctionsExtensionCodeGenerator_1(project);getCache(EventsFunctionsExtensionCodeGenerator)[this.ptr]=this}EventsFunctionsExtensionCodeGenerator.prototype=Object.create(WrapperObject.prototype);EventsFunctionsExtensionCodeGenerator.prototype.constructor=EventsFunctionsExtensionCodeGenerator;EventsFunctionsExtensionCodeGenerator.prototype.__class__=EventsFunctionsExtensionCodeGenerator;EventsFunctionsExtensionCodeGenerator.__cache__={};Module["EventsFunctionsExtensionCodeGenerator"]=EventsFunctionsExtensionCodeGenerator;EventsFunctionsExtensionCodeGenerator.prototype["GenerateFreeEventsFunctionCompleteCode"]=EventsFunctionsExtensionCodeGenerator.prototype.GenerateFreeEventsFunctionCompleteCode=function(extension,eventsFunction,codeNamespac,includes,compilationForRuntime){var self=this.ptr;ensureCache.prepare();if(extension&&typeof extension==="object")extension=extension.ptr;if(eventsFunction&&typeof eventsFunction==="object")eventsFunction=eventsFunction.ptr;if(codeNamespac&&typeof codeNamespac==="object")codeNamespac=codeNamespac.ptr;else codeNamespac=ensureString(codeNamespac);if(includes&&typeof includes==="object")includes=includes.ptr;if(compilationForRuntime&&typeof compilationForRuntime==="object")compilationForRuntime=compilationForRuntime.ptr;return UTF8ToString(_emscripten_bind_EventsFunctionsExtensionCodeGenerator_GenerateFreeEventsFunctionCompleteCode_5(self,extension,eventsFunction,codeNamespac,includes,compilationForRuntime))};EventsFunctionsExtensionCodeGenerator.prototype["__destroy__"]=EventsFunctionsExtensionCodeGenerator.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_EventsFunctionsExtensionCodeGenerator___destroy___0(self)};function PreviewExportOptions(project,outputPath){ensureCache.prepare();if(project&&typeof project==="object")project=project.ptr;if(outputPath&&typeof outputPath==="object")outputPath=outputPath.ptr;else outputPath=ensureString(outputPath);this.ptr=_emscripten_bind_PreviewExportOptions_PreviewExportOptions_2(project,outputPath);getCache(PreviewExportOptions)[this.ptr]=this}PreviewExportOptions.prototype=Object.create(WrapperObject.prototype);PreviewExportOptions.prototype.constructor=PreviewExportOptions;PreviewExportOptions.prototype.__class__=PreviewExportOptions;PreviewExportOptions.__cache__={};Module["PreviewExportOptions"]=PreviewExportOptions;PreviewExportOptions.prototype["UseWebsocketDebuggerClientWithServerAddress"]=PreviewExportOptions.prototype.UseWebsocketDebuggerClientWithServerAddress=function(address,port){var self=this.ptr;ensureCache.prepare();if(address&&typeof address==="object")address=address.ptr;else address=ensureString(address);if(port&&typeof port==="object")port=port.ptr;else port=ensureString(port);return wrapPointer(_emscripten_bind_PreviewExportOptions_UseWebsocketDebuggerClientWithServerAddress_2(self,address,port),PreviewExportOptions)};PreviewExportOptions.prototype["UseWindowMessageDebuggerClient"]=PreviewExportOptions.prototype.UseWindowMessageDebuggerClient=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_PreviewExportOptions_UseWindowMessageDebuggerClient_0(self),PreviewExportOptions)};PreviewExportOptions.prototype["UseMinimalDebuggerClient"]=PreviewExportOptions.prototype.UseMinimalDebuggerClient=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_PreviewExportOptions_UseMinimalDebuggerClient_0(self),PreviewExportOptions)};PreviewExportOptions.prototype["SetInAppTutorialMessageInPreview"]=PreviewExportOptions.prototype.SetInAppTutorialMessageInPreview=function(message,position){var self=this.ptr;ensureCache.prepare();if(message&&typeof message==="object")message=message.ptr;else message=ensureString(message);if(position&&typeof position==="object")position=position.ptr;else position=ensureString(position);return wrapPointer(_emscripten_bind_PreviewExportOptions_SetInAppTutorialMessageInPreview_2(self,message,position),PreviewExportOptions)};PreviewExportOptions.prototype["SetLayoutName"]=PreviewExportOptions.prototype.SetLayoutName=function(layoutName){var self=this.ptr;ensureCache.prepare();if(layoutName&&typeof layoutName==="object")layoutName=layoutName.ptr;else layoutName=ensureString(layoutName);return wrapPointer(_emscripten_bind_PreviewExportOptions_SetLayoutName_1(self,layoutName),PreviewExportOptions)};PreviewExportOptions.prototype["SetFallbackAuthor"]=PreviewExportOptions.prototype.SetFallbackAuthor=function(id,username){var self=this.ptr;ensureCache.prepare();if(id&&typeof id==="object")id=id.ptr;else id=ensureString(id);if(username&&typeof username==="object")username=username.ptr;else username=ensureString(username);return wrapPointer(_emscripten_bind_PreviewExportOptions_SetFallbackAuthor_2(self,id,username),PreviewExportOptions)};PreviewExportOptions.prototype["SetAuthenticatedPlayer"]=PreviewExportOptions.prototype.SetAuthenticatedPlayer=function(playerId,playerUsername,playerToken){var self=this.ptr;ensureCache.prepare();if(playerId&&typeof playerId==="object")playerId=playerId.ptr;else playerId=ensureString(playerId);if(playerUsername&&typeof playerUsername==="object")playerUsername=playerUsername.ptr;else playerUsername=ensureString(playerUsername);if(playerToken&&typeof playerToken==="object")playerToken=playerToken.ptr;else playerToken=ensureString(playerToken);return wrapPointer(_emscripten_bind_PreviewExportOptions_SetAuthenticatedPlayer_3(self,playerId,playerUsername,playerToken),PreviewExportOptions)};PreviewExportOptions.prototype["SetExternalLayoutName"]=PreviewExportOptions.prototype.SetExternalLayoutName=function(externalLayoutName){var self=this.ptr;ensureCache.prepare();if(externalLayoutName&&typeof externalLayoutName==="object")externalLayoutName=externalLayoutName.ptr;else externalLayoutName=ensureString(externalLayoutName);return wrapPointer(_emscripten_bind_PreviewExportOptions_SetExternalLayoutName_1(self,externalLayoutName),PreviewExportOptions)};PreviewExportOptions.prototype["SetEventsBasedObjectType"]=PreviewExportOptions.prototype.SetEventsBasedObjectType=function(eventsBasedObjectType){var self=this.ptr;ensureCache.prepare();if(eventsBasedObjectType&&typeof eventsBasedObjectType==="object")eventsBasedObjectType=eventsBasedObjectType.ptr;else eventsBasedObjectType=ensureString(eventsBasedObjectType);return wrapPointer(_emscripten_bind_PreviewExportOptions_SetEventsBasedObjectType_1(self,eventsBasedObjectType),PreviewExportOptions)};PreviewExportOptions.prototype["SetEventsBasedObjectVariantName"]=PreviewExportOptions.prototype.SetEventsBasedObjectVariantName=function(eventsBasedObjectVariantName){var self=this.ptr;ensureCache.prepare();if(eventsBasedObjectVariantName&&typeof eventsBasedObjectVariantName==="object")eventsBasedObjectVariantName=eventsBasedObjectVariantName.ptr;else eventsBasedObjectVariantName=ensureString(eventsBasedObjectVariantName);return wrapPointer(_emscripten_bind_PreviewExportOptions_SetEventsBasedObjectVariantName_1(self,eventsBasedObjectVariantName),PreviewExportOptions)};PreviewExportOptions.prototype["SetIncludeFileHash"]=PreviewExportOptions.prototype.SetIncludeFileHash=function(includeFile,hash){var self=this.ptr;ensureCache.prepare();if(includeFile&&typeof includeFile==="object")includeFile=includeFile.ptr;else includeFile=ensureString(includeFile);if(hash&&typeof hash==="object")hash=hash.ptr;return wrapPointer(_emscripten_bind_PreviewExportOptions_SetIncludeFileHash_2(self,includeFile,hash),PreviewExportOptions)};PreviewExportOptions.prototype["SetShouldClearExportFolder"]=PreviewExportOptions.prototype.SetShouldClearExportFolder=function(enable){var self=this.ptr;if(enable&&typeof enable==="object")enable=enable.ptr;return wrapPointer(_emscripten_bind_PreviewExportOptions_SetShouldClearExportFolder_1(self,enable),PreviewExportOptions)};PreviewExportOptions.prototype["SetShouldReloadProjectData"]=PreviewExportOptions.prototype.SetShouldReloadProjectData=function(enable){var self=this.ptr;if(enable&&typeof enable==="object")enable=enable.ptr;return wrapPointer(_emscripten_bind_PreviewExportOptions_SetShouldReloadProjectData_1(self,enable),PreviewExportOptions)};PreviewExportOptions.prototype["SetShouldReloadLibraries"]=PreviewExportOptions.prototype.SetShouldReloadLibraries=function(enable){var self=this.ptr;if(enable&&typeof enable==="object")enable=enable.ptr;return wrapPointer(_emscripten_bind_PreviewExportOptions_SetShouldReloadLibraries_1(self,enable),PreviewExportOptions)};PreviewExportOptions.prototype["SetShouldGenerateScenesEventsCode"]=PreviewExportOptions.prototype.SetShouldGenerateScenesEventsCode=function(enable){var self=this.ptr;if(enable&&typeof enable==="object")enable=enable.ptr;return wrapPointer(_emscripten_bind_PreviewExportOptions_SetShouldGenerateScenesEventsCode_1(self,enable),PreviewExportOptions)};PreviewExportOptions.prototype["SetNativeMobileApp"]=PreviewExportOptions.prototype.SetNativeMobileApp=function(enable){var self=this.ptr;if(enable&&typeof enable==="object")enable=enable.ptr;return wrapPointer(_emscripten_bind_PreviewExportOptions_SetNativeMobileApp_1(self,enable),PreviewExportOptions)};PreviewExportOptions.prototype["SetFullLoadingScreen"]=PreviewExportOptions.prototype.SetFullLoadingScreen=function(enable){var self=this.ptr;if(enable&&typeof enable==="object")enable=enable.ptr;return wrapPointer(_emscripten_bind_PreviewExportOptions_SetFullLoadingScreen_1(self,enable),PreviewExportOptions)};PreviewExportOptions.prototype["SetIsDevelopmentEnvironment"]=PreviewExportOptions.prototype.SetIsDevelopmentEnvironment=function(enable){var self=this.ptr;if(enable&&typeof enable==="object")enable=enable.ptr;return wrapPointer(_emscripten_bind_PreviewExportOptions_SetIsDevelopmentEnvironment_1(self,enable),PreviewExportOptions)};PreviewExportOptions.prototype["SetIsInGameEdition"]=PreviewExportOptions.prototype.SetIsInGameEdition=function(enable){var self=this.ptr;if(enable&&typeof enable==="object")enable=enable.ptr;return wrapPointer(_emscripten_bind_PreviewExportOptions_SetIsInGameEdition_1(self,enable),PreviewExportOptions)};PreviewExportOptions.prototype["SetInGameEditorSettingsJson"]=PreviewExportOptions.prototype.SetInGameEditorSettingsJson=function(inGameEditorSettingsJson){var self=this.ptr;ensureCache.prepare();if(inGameEditorSettingsJson&&typeof inGameEditorSettingsJson==="object")inGameEditorSettingsJson=inGameEditorSettingsJson.ptr;else inGameEditorSettingsJson=ensureString(inGameEditorSettingsJson);return wrapPointer(_emscripten_bind_PreviewExportOptions_SetInGameEditorSettingsJson_1(self,inGameEditorSettingsJson),PreviewExportOptions)};PreviewExportOptions.prototype["SetEditorId"]=PreviewExportOptions.prototype.SetEditorId=function(editorId){var self=this.ptr;ensureCache.prepare();if(editorId&&typeof editorId==="object")editorId=editorId.ptr;else editorId=ensureString(editorId);return wrapPointer(_emscripten_bind_PreviewExportOptions_SetEditorId_1(self,editorId),PreviewExportOptions)};PreviewExportOptions.prototype["SetEditorCameraState3D"]=PreviewExportOptions.prototype.SetEditorCameraState3D=function(cameraMode,positionX,positionY,positionZ,rotationAngle,elevationAngle,distance){var self=this.ptr;ensureCache.prepare();if(cameraMode&&typeof cameraMode==="object")cameraMode=cameraMode.ptr;else cameraMode=ensureString(cameraMode);if(positionX&&typeof positionX==="object")positionX=positionX.ptr;if(positionY&&typeof positionY==="object")positionY=positionY.ptr;if(positionZ&&typeof positionZ==="object")positionZ=positionZ.ptr;if(rotationAngle&&typeof rotationAngle==="object")rotationAngle=rotationAngle.ptr;if(elevationAngle&&typeof elevationAngle==="object")elevationAngle=elevationAngle.ptr;if(distance&&typeof distance==="object")distance=distance.ptr;return wrapPointer(_emscripten_bind_PreviewExportOptions_SetEditorCameraState3D_7(self,cameraMode,positionX,positionY,positionZ,rotationAngle,elevationAngle,distance),PreviewExportOptions)};PreviewExportOptions.prototype["SetNonRuntimeScriptsCacheBurst"]=PreviewExportOptions.prototype.SetNonRuntimeScriptsCacheBurst=function(value){var self=this.ptr;if(value&&typeof value==="object")value=value.ptr;return wrapPointer(_emscripten_bind_PreviewExportOptions_SetNonRuntimeScriptsCacheBurst_1(self,value),PreviewExportOptions)};PreviewExportOptions.prototype["SetElectronRemoteRequirePath"]=PreviewExportOptions.prototype.SetElectronRemoteRequirePath=function(electronRemoteRequirePath){var self=this.ptr;ensureCache.prepare();if(electronRemoteRequirePath&&typeof electronRemoteRequirePath==="object")electronRemoteRequirePath=electronRemoteRequirePath.ptr;else electronRemoteRequirePath=ensureString(electronRemoteRequirePath);return wrapPointer(_emscripten_bind_PreviewExportOptions_SetElectronRemoteRequirePath_1(self,electronRemoteRequirePath),PreviewExportOptions)};PreviewExportOptions.prototype["SetGDevelopResourceToken"]=PreviewExportOptions.prototype.SetGDevelopResourceToken=function(gdevelopResourceToken){var self=this.ptr;ensureCache.prepare();if(gdevelopResourceToken&&typeof gdevelopResourceToken==="object")gdevelopResourceToken=gdevelopResourceToken.ptr;else gdevelopResourceToken=ensureString(gdevelopResourceToken);return wrapPointer(_emscripten_bind_PreviewExportOptions_SetGDevelopResourceToken_1(self,gdevelopResourceToken),PreviewExportOptions)};PreviewExportOptions.prototype["SetAllowAuthenticationUsingIframeForPreview"]=PreviewExportOptions.prototype.SetAllowAuthenticationUsingIframeForPreview=function(enable){var self=this.ptr;if(enable&&typeof enable==="object")enable=enable.ptr;return wrapPointer(_emscripten_bind_PreviewExportOptions_SetAllowAuthenticationUsingIframeForPreview_1(self,enable),PreviewExportOptions)};PreviewExportOptions.prototype["SetCrashReportUploadLevel"]=PreviewExportOptions.prototype.SetCrashReportUploadLevel=function(crashReportUploadLevel){var self=this.ptr;ensureCache.prepare();if(crashReportUploadLevel&&typeof crashReportUploadLevel==="object")crashReportUploadLevel=crashReportUploadLevel.ptr;else crashReportUploadLevel=ensureString(crashReportUploadLevel);return wrapPointer(_emscripten_bind_PreviewExportOptions_SetCrashReportUploadLevel_1(self,crashReportUploadLevel),PreviewExportOptions)};PreviewExportOptions.prototype["SetPreviewContext"]=PreviewExportOptions.prototype.SetPreviewContext=function(previewContext){var self=this.ptr;ensureCache.prepare();if(previewContext&&typeof previewContext==="object")previewContext=previewContext.ptr;else previewContext=ensureString(previewContext);return wrapPointer(_emscripten_bind_PreviewExportOptions_SetPreviewContext_1(self,previewContext),PreviewExportOptions)};PreviewExportOptions.prototype["SetGDevelopVersionWithHash"]=PreviewExportOptions.prototype.SetGDevelopVersionWithHash=function(gdevelopVersionWithHash){var self=this.ptr;ensureCache.prepare();if(gdevelopVersionWithHash&&typeof gdevelopVersionWithHash==="object")gdevelopVersionWithHash=gdevelopVersionWithHash.ptr;else gdevelopVersionWithHash=ensureString(gdevelopVersionWithHash);return wrapPointer(_emscripten_bind_PreviewExportOptions_SetGDevelopVersionWithHash_1(self,gdevelopVersionWithHash),PreviewExportOptions)};PreviewExportOptions.prototype["SetProjectTemplateSlug"]=PreviewExportOptions.prototype.SetProjectTemplateSlug=function(projectTemplateSlug){var self=this.ptr;ensureCache.prepare();if(projectTemplateSlug&&typeof projectTemplateSlug==="object")projectTemplateSlug=projectTemplateSlug.ptr;else projectTemplateSlug=ensureString(projectTemplateSlug);return wrapPointer(_emscripten_bind_PreviewExportOptions_SetProjectTemplateSlug_1(self,projectTemplateSlug),PreviewExportOptions)};PreviewExportOptions.prototype["SetSourceGameId"]=PreviewExportOptions.prototype.SetSourceGameId=function(sourceGameId){var self=this.ptr;ensureCache.prepare();if(sourceGameId&&typeof sourceGameId==="object")sourceGameId=sourceGameId.ptr;else sourceGameId=ensureString(sourceGameId);return wrapPointer(_emscripten_bind_PreviewExportOptions_SetSourceGameId_1(self,sourceGameId),PreviewExportOptions)};PreviewExportOptions.prototype["AddScreenshotCapture"]=PreviewExportOptions.prototype.AddScreenshotCapture=function(delayTimeInSeconds,signedUrl,publicUrl){var self=this.ptr;ensureCache.prepare();if(delayTimeInSeconds&&typeof delayTimeInSeconds==="object")delayTimeInSeconds=delayTimeInSeconds.ptr;if(signedUrl&&typeof signedUrl==="object")signedUrl=signedUrl.ptr;else signedUrl=ensureString(signedUrl);if(publicUrl&&typeof publicUrl==="object")publicUrl=publicUrl.ptr;else publicUrl=ensureString(publicUrl);return wrapPointer(_emscripten_bind_PreviewExportOptions_AddScreenshotCapture_3(self,delayTimeInSeconds,signedUrl,publicUrl),PreviewExportOptions)};PreviewExportOptions.prototype["__destroy__"]=PreviewExportOptions.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_PreviewExportOptions___destroy___0(self)};function ExportOptions(project,outputPath){ensureCache.prepare();if(project&&typeof project==="object")project=project.ptr;if(outputPath&&typeof outputPath==="object")outputPath=outputPath.ptr;else outputPath=ensureString(outputPath);this.ptr=_emscripten_bind_ExportOptions_ExportOptions_2(project,outputPath);getCache(ExportOptions)[this.ptr]=this}ExportOptions.prototype=Object.create(WrapperObject.prototype);ExportOptions.prototype.constructor=ExportOptions;ExportOptions.prototype.__class__=ExportOptions;ExportOptions.__cache__={};Module["ExportOptions"]=ExportOptions;ExportOptions.prototype["SetFallbackAuthor"]=ExportOptions.prototype.SetFallbackAuthor=function(id,username){var self=this.ptr;ensureCache.prepare();if(id&&typeof id==="object")id=id.ptr;else id=ensureString(id);if(username&&typeof username==="object")username=username.ptr;else username=ensureString(username);return wrapPointer(_emscripten_bind_ExportOptions_SetFallbackAuthor_2(self,id,username),ExportOptions)};ExportOptions.prototype["SetTarget"]=ExportOptions.prototype.SetTarget=function(target){var self=this.ptr;ensureCache.prepare();if(target&&typeof target==="object")target=target.ptr;else target=ensureString(target);return wrapPointer(_emscripten_bind_ExportOptions_SetTarget_1(self,target),ExportOptions)};ExportOptions.prototype["__destroy__"]=ExportOptions.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_ExportOptions___destroy___0(self)};function Exporter(fs,gdjsRoot){ensureCache.prepare();if(fs&&typeof fs==="object")fs=fs.ptr;if(gdjsRoot&&typeof gdjsRoot==="object")gdjsRoot=gdjsRoot.ptr;else gdjsRoot=ensureString(gdjsRoot);this.ptr=_emscripten_bind_Exporter_Exporter_2(fs,gdjsRoot);getCache(Exporter)[this.ptr]=this}Exporter.prototype=Object.create(WrapperObject.prototype);Exporter.prototype.constructor=Exporter;Exporter.prototype.__class__=Exporter;Exporter.__cache__={};Module["Exporter"]=Exporter;Exporter.prototype["SetCodeOutputDirectory"]=Exporter.prototype.SetCodeOutputDirectory=function(path){var self=this.ptr;ensureCache.prepare();if(path&&typeof path==="object")path=path.ptr;else path=ensureString(path);_emscripten_bind_Exporter_SetCodeOutputDirectory_1(self,path)};Exporter.prototype["ExportProjectForPixiPreview"]=Exporter.prototype.ExportProjectForPixiPreview=function(options){var self=this.ptr;if(options&&typeof options==="object")options=options.ptr;return!!_emscripten_bind_Exporter_ExportProjectForPixiPreview_1(self,options)};Exporter.prototype["ExportWholePixiProject"]=Exporter.prototype.ExportWholePixiProject=function(options){var self=this.ptr;if(options&&typeof options==="object")options=options.ptr;return!!_emscripten_bind_Exporter_ExportWholePixiProject_1(self,options)};Exporter.prototype["SerializeProjectData"]=Exporter.prototype.SerializeProjectData=function(project,options,projectDataElement){var self=this.ptr;if(project&&typeof project==="object")project=project.ptr;if(options&&typeof options==="object")options=options.ptr;if(projectDataElement&&typeof projectDataElement==="object")projectDataElement=projectDataElement.ptr;_emscripten_bind_Exporter_SerializeProjectData_3(self,project,options,projectDataElement)};Exporter.prototype["SerializeRuntimeGameOptions"]=Exporter.prototype.SerializeRuntimeGameOptions=function(options,runtimeGameOptionsElement){var self=this.ptr;if(options&&typeof options==="object")options=options.ptr;if(runtimeGameOptionsElement&&typeof runtimeGameOptionsElement==="object")runtimeGameOptionsElement=runtimeGameOptionsElement.ptr;_emscripten_bind_Exporter_SerializeRuntimeGameOptions_2(self,options,runtimeGameOptionsElement)};Exporter.prototype["GetLastError"]=Exporter.prototype.GetLastError=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_Exporter_GetLastError_0(self))};Exporter.prototype["__destroy__"]=Exporter.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_Exporter___destroy___0(self)};function JsCodeEvent(){this.ptr=_emscripten_bind_JsCodeEvent_JsCodeEvent_0();getCache(JsCodeEvent)[this.ptr]=this}JsCodeEvent.prototype=Object.create(WrapperObject.prototype);JsCodeEvent.prototype.constructor=JsCodeEvent;JsCodeEvent.prototype.__class__=JsCodeEvent;JsCodeEvent.__cache__={};Module["JsCodeEvent"]=JsCodeEvent;JsCodeEvent.prototype["GetInlineCode"]=JsCodeEvent.prototype.GetInlineCode=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_JsCodeEvent_GetInlineCode_0(self))};JsCodeEvent.prototype["SetInlineCode"]=JsCodeEvent.prototype.SetInlineCode=function(type){var self=this.ptr;ensureCache.prepare();if(type&&typeof type==="object")type=type.ptr;else type=ensureString(type);_emscripten_bind_JsCodeEvent_SetInlineCode_1(self,type)};JsCodeEvent.prototype["GetParameterObjects"]=JsCodeEvent.prototype.GetParameterObjects=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_JsCodeEvent_GetParameterObjects_0(self))};JsCodeEvent.prototype["SetParameterObjects"]=JsCodeEvent.prototype.SetParameterObjects=function(type){var self=this.ptr;ensureCache.prepare();if(type&&typeof type==="object")type=type.ptr;else type=ensureString(type);_emscripten_bind_JsCodeEvent_SetParameterObjects_1(self,type)};JsCodeEvent.prototype["IsEventsSheetExpanded"]=JsCodeEvent.prototype.IsEventsSheetExpanded=function(){var self=this.ptr;return!!_emscripten_bind_JsCodeEvent_IsEventsSheetExpanded_0(self)};JsCodeEvent.prototype["SetEventsSheetExpanded"]=JsCodeEvent.prototype.SetEventsSheetExpanded=function(enable){var self=this.ptr;if(enable&&typeof enable==="object")enable=enable.ptr;_emscripten_bind_JsCodeEvent_SetEventsSheetExpanded_1(self,enable)};JsCodeEvent.prototype["Clone"]=JsCodeEvent.prototype.Clone=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_JsCodeEvent_Clone_0(self),JsCodeEvent)};JsCodeEvent.prototype["GetType"]=JsCodeEvent.prototype.GetType=function(){var self=this.ptr;return UTF8ToString(_emscripten_bind_JsCodeEvent_GetType_0(self))};JsCodeEvent.prototype["SetType"]=JsCodeEvent.prototype.SetType=function(type){var self=this.ptr;ensureCache.prepare();if(type&&typeof type==="object")type=type.ptr;else type=ensureString(type);_emscripten_bind_JsCodeEvent_SetType_1(self,type)};JsCodeEvent.prototype["IsExecutable"]=JsCodeEvent.prototype.IsExecutable=function(){var self=this.ptr;return!!_emscripten_bind_JsCodeEvent_IsExecutable_0(self)};JsCodeEvent.prototype["CanHaveSubEvents"]=JsCodeEvent.prototype.CanHaveSubEvents=function(){var self=this.ptr;return!!_emscripten_bind_JsCodeEvent_CanHaveSubEvents_0(self)};JsCodeEvent.prototype["HasSubEvents"]=JsCodeEvent.prototype.HasSubEvents=function(){var self=this.ptr;return!!_emscripten_bind_JsCodeEvent_HasSubEvents_0(self)};JsCodeEvent.prototype["GetSubEvents"]=JsCodeEvent.prototype.GetSubEvents=function(){var self=this.ptr;return wrapPointer(_emscripten_bind_JsCodeEvent_GetSubEvents_0(self),EventsList)};JsCodeEvent.prototype["IsDisabled"]=JsCodeEvent.prototype.IsDisabled=function(){var self=this.ptr;return!!_emscripten_bind_JsCodeEvent_IsDisabled_0(self)};JsCodeEvent.prototype["SetDisabled"]=JsCodeEvent.prototype.SetDisabled=function(disable){var self=this.ptr;if(disable&&typeof disable==="object")disable=disable.ptr;_emscripten_bind_JsCodeEvent_SetDisabled_1(self,disable)};JsCodeEvent.prototype["IsFolded"]=JsCodeEvent.prototype.IsFolded=function(){var self=this.ptr;return!!_emscripten_bind_JsCodeEvent_IsFolded_0(self)};JsCodeEvent.prototype["SetFolded"]=JsCodeEvent.prototype.SetFolded=function(folded){var self=this.ptr;if(folded&&typeof folded==="object")folded=folded.ptr;_emscripten_bind_JsCodeEvent_SetFolded_1(self,folded)};JsCodeEvent.prototype["GetScrollTop"]=JsCodeEvent.prototype.GetScrollTop=function(){var self=this.ptr;return _emscripten_bind_JsCodeEvent_GetScrollTop_0(self)};JsCodeEvent.prototype["SetScrollTop"]=JsCodeEvent.prototype.SetScrollTop=function(value){var self=this.ptr;if(value&&typeof value==="object")value=value.ptr;_emscripten_bind_JsCodeEvent_SetScrollTop_1(self,value)};JsCodeEvent.prototype["GetCursorColumn"]=JsCodeEvent.prototype.GetCursorColumn=function(){var self=this.ptr;return _emscripten_bind_JsCodeEvent_GetCursorColumn_0(self)};JsCodeEvent.prototype["SetCursorColumn"]=JsCodeEvent.prototype.SetCursorColumn=function(value){var self=this.ptr;if(value&&typeof value==="object")value=value.ptr;_emscripten_bind_JsCodeEvent_SetCursorColumn_1(self,value)};JsCodeEvent.prototype["GetCursorLine"]=JsCodeEvent.prototype.GetCursorLine=function(){var self=this.ptr;return _emscripten_bind_JsCodeEvent_GetCursorLine_0(self)};JsCodeEvent.prototype["SetCursorLine"]=JsCodeEvent.prototype.SetCursorLine=function(value){var self=this.ptr;if(value&&typeof value==="object")value=value.ptr;_emscripten_bind_JsCodeEvent_SetCursorLine_1(self,value)};JsCodeEvent.prototype["SerializeTo"]=JsCodeEvent.prototype.SerializeTo=function(element){var self=this.ptr;if(element&&typeof element==="object")element=element.ptr;_emscripten_bind_JsCodeEvent_SerializeTo_1(self,element)};JsCodeEvent.prototype["UnserializeFrom"]=JsCodeEvent.prototype.UnserializeFrom=function(project,element){var self=this.ptr;if(project&&typeof project==="object")project=project.ptr;if(element&&typeof element==="object")element=element.ptr;_emscripten_bind_JsCodeEvent_UnserializeFrom_2(self,project,element)};JsCodeEvent.prototype["__destroy__"]=JsCodeEvent.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_JsCodeEvent___destroy___0(self)};function MetadataDeclarationHelper(){this.ptr=_emscripten_bind_MetadataDeclarationHelper_MetadataDeclarationHelper_0();getCache(MetadataDeclarationHelper)[this.ptr]=this}MetadataDeclarationHelper.prototype=Object.create(WrapperObject.prototype);MetadataDeclarationHelper.prototype.constructor=MetadataDeclarationHelper;MetadataDeclarationHelper.prototype.__class__=MetadataDeclarationHelper;MetadataDeclarationHelper.__cache__={};Module["MetadataDeclarationHelper"]=MetadataDeclarationHelper;MetadataDeclarationHelper.prototype["STATIC_DeclareExtension"]=MetadataDeclarationHelper.prototype.STATIC_DeclareExtension=function(extension,eventsFunctionsExtension){var self=this.ptr;if(extension&&typeof extension==="object")extension=extension.ptr;if(eventsFunctionsExtension&&typeof eventsFunctionsExtension==="object")eventsFunctionsExtension=eventsFunctionsExtension.ptr;_emscripten_bind_MetadataDeclarationHelper_STATIC_DeclareExtension_2(self,extension,eventsFunctionsExtension)};MetadataDeclarationHelper.prototype["GenerateFreeFunctionMetadata"]=MetadataDeclarationHelper.prototype.GenerateFreeFunctionMetadata=function(project,extension,eventsFunctionsExtension,eventsFunction){var self=this.ptr;if(project&&typeof project==="object")project=project.ptr;if(extension&&typeof extension==="object")extension=extension.ptr;if(eventsFunctionsExtension&&typeof eventsFunctionsExtension==="object")eventsFunctionsExtension=eventsFunctionsExtension.ptr;if(eventsFunction&&typeof eventsFunction==="object")eventsFunction=eventsFunction.ptr;return wrapPointer(_emscripten_bind_MetadataDeclarationHelper_GenerateFreeFunctionMetadata_4(self,project,extension,eventsFunctionsExtension,eventsFunction),AbstractFunctionMetadata)};MetadataDeclarationHelper.prototype["STATIC_GenerateBehaviorMetadata"]=MetadataDeclarationHelper.prototype.STATIC_GenerateBehaviorMetadata=function(project,extension,eventsFunctionsExtension,eventsBasedBehavior,behaviorMethodMangledNames){var self=this.ptr;if(project&&typeof project==="object")project=project.ptr;if(extension&&typeof extension==="object")extension=extension.ptr;if(eventsFunctionsExtension&&typeof eventsFunctionsExtension==="object")eventsFunctionsExtension=eventsFunctionsExtension.ptr;if(eventsBasedBehavior&&typeof eventsBasedBehavior==="object")eventsBasedBehavior=eventsBasedBehavior.ptr;if(behaviorMethodMangledNames&&typeof behaviorMethodMangledNames==="object")behaviorMethodMangledNames=behaviorMethodMangledNames.ptr;return wrapPointer(_emscripten_bind_MetadataDeclarationHelper_STATIC_GenerateBehaviorMetadata_5(self,project,extension,eventsFunctionsExtension,eventsBasedBehavior,behaviorMethodMangledNames),BehaviorMetadata)};MetadataDeclarationHelper.prototype["STATIC_GenerateObjectMetadata"]=MetadataDeclarationHelper.prototype.STATIC_GenerateObjectMetadata=function(project,extension,eventsFunctionsExtension,eventsBasedObject,objectMethodMangledNames){var self=this.ptr;if(project&&typeof project==="object")project=project.ptr;if(extension&&typeof extension==="object")extension=extension.ptr;if(eventsFunctionsExtension&&typeof eventsFunctionsExtension==="object")eventsFunctionsExtension=eventsFunctionsExtension.ptr;if(eventsBasedObject&&typeof eventsBasedObject==="object")eventsBasedObject=eventsBasedObject.ptr;if(objectMethodMangledNames&&typeof objectMethodMangledNames==="object")objectMethodMangledNames=objectMethodMangledNames.ptr;return wrapPointer(_emscripten_bind_MetadataDeclarationHelper_STATIC_GenerateObjectMetadata_5(self,project,extension,eventsFunctionsExtension,eventsBasedObject,objectMethodMangledNames),ObjectMetadata)};MetadataDeclarationHelper.prototype["STATIC_GetExtensionCodeNamespacePrefix"]=MetadataDeclarationHelper.prototype.STATIC_GetExtensionCodeNamespacePrefix=function(eventsFunctionsExtension){var self=this.ptr;if(eventsFunctionsExtension&&typeof eventsFunctionsExtension==="object")eventsFunctionsExtension=eventsFunctionsExtension.ptr;return UTF8ToString(_emscripten_bind_MetadataDeclarationHelper_STATIC_GetExtensionCodeNamespacePrefix_1(self,eventsFunctionsExtension))};MetadataDeclarationHelper.prototype["STATIC_GetFreeFunctionCodeName"]=MetadataDeclarationHelper.prototype.STATIC_GetFreeFunctionCodeName=function(eventsFunctionsExtension,eventsFunction){var self=this.ptr;if(eventsFunctionsExtension&&typeof eventsFunctionsExtension==="object")eventsFunctionsExtension=eventsFunctionsExtension.ptr;if(eventsFunction&&typeof eventsFunction==="object")eventsFunction=eventsFunction.ptr;return UTF8ToString(_emscripten_bind_MetadataDeclarationHelper_STATIC_GetFreeFunctionCodeName_2(self,eventsFunctionsExtension,eventsFunction))};MetadataDeclarationHelper.prototype["STATIC_GetFreeFunctionCodeNamespace"]=MetadataDeclarationHelper.prototype.STATIC_GetFreeFunctionCodeNamespace=function(eventsFunction,codeNamespacePrefix){var self=this.ptr;ensureCache.prepare();if(eventsFunction&&typeof eventsFunction==="object")eventsFunction=eventsFunction.ptr;if(codeNamespacePrefix&&typeof codeNamespacePrefix==="object")codeNamespacePrefix=codeNamespacePrefix.ptr;else codeNamespacePrefix=ensureString(codeNamespacePrefix);return UTF8ToString(_emscripten_bind_MetadataDeclarationHelper_STATIC_GetFreeFunctionCodeNamespace_2(self,eventsFunction,codeNamespacePrefix))};MetadataDeclarationHelper.prototype["STATIC_GetBehaviorFunctionCodeNamespace"]=MetadataDeclarationHelper.prototype.STATIC_GetBehaviorFunctionCodeNamespace=function(eventsBasedBehavior,codeNamespacePrefix){var self=this.ptr;ensureCache.prepare();if(eventsBasedBehavior&&typeof eventsBasedBehavior==="object")eventsBasedBehavior=eventsBasedBehavior.ptr;if(codeNamespacePrefix&&typeof codeNamespacePrefix==="object")codeNamespacePrefix=codeNamespacePrefix.ptr;else codeNamespacePrefix=ensureString(codeNamespacePrefix);return UTF8ToString(_emscripten_bind_MetadataDeclarationHelper_STATIC_GetBehaviorFunctionCodeNamespace_2(self,eventsBasedBehavior,codeNamespacePrefix))};MetadataDeclarationHelper.prototype["STATIC_GetObjectFunctionCodeNamespace"]=MetadataDeclarationHelper.prototype.STATIC_GetObjectFunctionCodeNamespace=function(eventsBasedObject,codeNamespacePrefix){var self=this.ptr;ensureCache.prepare();if(eventsBasedObject&&typeof eventsBasedObject==="object")eventsBasedObject=eventsBasedObject.ptr;if(codeNamespacePrefix&&typeof codeNamespacePrefix==="object")codeNamespacePrefix=codeNamespacePrefix.ptr;else codeNamespacePrefix=ensureString(codeNamespacePrefix);return UTF8ToString(_emscripten_bind_MetadataDeclarationHelper_STATIC_GetObjectFunctionCodeNamespace_2(self,eventsBasedObject,codeNamespacePrefix))};MetadataDeclarationHelper.prototype["STATIC_IsBehaviorLifecycleEventsFunction"]=MetadataDeclarationHelper.prototype.STATIC_IsBehaviorLifecycleEventsFunction=function(functionName){var self=this.ptr;ensureCache.prepare();if(functionName&&typeof functionName==="object")functionName=functionName.ptr;else functionName=ensureString(functionName);return!!_emscripten_bind_MetadataDeclarationHelper_STATIC_IsBehaviorLifecycleEventsFunction_1(self,functionName)};MetadataDeclarationHelper.prototype["STATIC_IsObjectLifecycleEventsFunction"]=MetadataDeclarationHelper.prototype.STATIC_IsObjectLifecycleEventsFunction=function(functionName){var self=this.ptr;ensureCache.prepare();if(functionName&&typeof functionName==="object")functionName=functionName.ptr;else functionName=ensureString(functionName);return!!_emscripten_bind_MetadataDeclarationHelper_STATIC_IsObjectLifecycleEventsFunction_1(self,functionName)};MetadataDeclarationHelper.prototype["STATIC_IsExtensionLifecycleEventsFunction"]=MetadataDeclarationHelper.prototype.STATIC_IsExtensionLifecycleEventsFunction=function(functionName){var self=this.ptr;ensureCache.prepare();if(functionName&&typeof functionName==="object")functionName=functionName.ptr;else functionName=ensureString(functionName);return!!_emscripten_bind_MetadataDeclarationHelper_STATIC_IsExtensionLifecycleEventsFunction_1(self,functionName)};MetadataDeclarationHelper.prototype["STATIC_ShiftSentenceParamIndexes"]=MetadataDeclarationHelper.prototype.STATIC_ShiftSentenceParamIndexes=function(sentence,offset){var self=this.ptr;ensureCache.prepare();if(sentence&&typeof sentence==="object")sentence=sentence.ptr;else sentence=ensureString(sentence);if(offset&&typeof offset==="object")offset=offset.ptr;return UTF8ToString(_emscripten_bind_MetadataDeclarationHelper_STATIC_ShiftSentenceParamIndexes_2(self,sentence,offset))};MetadataDeclarationHelper.prototype["__destroy__"]=MetadataDeclarationHelper.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_MetadataDeclarationHelper___destroy___0(self)};function MemoryTrackedRegistry(){throw"cannot construct a MemoryTrackedRegistry, no constructor in IDL"}MemoryTrackedRegistry.prototype=Object.create(WrapperObject.prototype);MemoryTrackedRegistry.prototype.constructor=MemoryTrackedRegistry;MemoryTrackedRegistry.prototype.__class__=MemoryTrackedRegistry;MemoryTrackedRegistry.__cache__={};Module["MemoryTrackedRegistry"]=MemoryTrackedRegistry;MemoryTrackedRegistry.prototype["STATIC_add"]=MemoryTrackedRegistry.prototype.STATIC_add=function(ptr,className){var self=this.ptr;ensureCache.prepare();if(ptr&&typeof ptr==="object")ptr=ptr.ptr;if(className&&typeof className==="object")className=className.ptr;else className=ensureString(className);_emscripten_bind_MemoryTrackedRegistry_STATIC_add_2(self,ptr,className)};MemoryTrackedRegistry.prototype["STATIC_remove"]=MemoryTrackedRegistry.prototype.STATIC_remove=function(ptr,className){var self=this.ptr;ensureCache.prepare();if(ptr&&typeof ptr==="object")ptr=ptr.ptr;if(className&&typeof className==="object")className=className.ptr;else className=ensureString(className);_emscripten_bind_MemoryTrackedRegistry_STATIC_remove_2(self,ptr,className)};MemoryTrackedRegistry.prototype["STATIC_isDead"]=MemoryTrackedRegistry.prototype.STATIC_isDead=function(ptr,className){var self=this.ptr;ensureCache.prepare();if(ptr&&typeof ptr==="object")ptr=ptr.ptr;if(className&&typeof className==="object")className=className.ptr;else className=ensureString(className);return!!_emscripten_bind_MemoryTrackedRegistry_STATIC_isDead_2(self,ptr,className)};MemoryTrackedRegistry.prototype["STATIC_getDeadCount"]=MemoryTrackedRegistry.prototype.STATIC_getDeadCount=function(){var self=this.ptr;return _emscripten_bind_MemoryTrackedRegistry_STATIC_getDeadCount_0(self)};MemoryTrackedRegistry.prototype["STATIC_getAliveCount"]=MemoryTrackedRegistry.prototype.STATIC_getAliveCount=function(){var self=this.ptr;return _emscripten_bind_MemoryTrackedRegistry_STATIC_getAliveCount_0(self)};MemoryTrackedRegistry.prototype["STATIC_pruneDead"]=MemoryTrackedRegistry.prototype.STATIC_pruneDead=function(maxSize){var self=this.ptr;if(maxSize&&typeof maxSize==="object")maxSize=maxSize.ptr;_emscripten_bind_MemoryTrackedRegistry_STATIC_pruneDead_1(self,maxSize)};MemoryTrackedRegistry.prototype["STATIC_getAliveCountForClass"]=MemoryTrackedRegistry.prototype.STATIC_getAliveCountForClass=function(className){var self=this.ptr;ensureCache.prepare();if(className&&typeof className==="object")className=className.ptr;else className=ensureString(className);return _emscripten_bind_MemoryTrackedRegistry_STATIC_getAliveCountForClass_1(self,className)};MemoryTrackedRegistry.prototype["STATIC_getDeadCountForClass"]=MemoryTrackedRegistry.prototype.STATIC_getDeadCountForClass=function(className){var self=this.ptr;ensureCache.prepare();if(className&&typeof className==="object")className=className.ptr;else className=ensureString(className);return _emscripten_bind_MemoryTrackedRegistry_STATIC_getDeadCountForClass_1(self,className)};MemoryTrackedRegistry.prototype["STATIC_setCurrentCallContextId"]=MemoryTrackedRegistry.prototype.STATIC_setCurrentCallContextId=function(id){var self=this.ptr;if(id&&typeof id==="object")id=id.ptr;_emscripten_bind_MemoryTrackedRegistry_STATIC_setCurrentCallContextId_1(self,id)};MemoryTrackedRegistry.prototype["STATIC_getDeadContextId"]=MemoryTrackedRegistry.prototype.STATIC_getDeadContextId=function(ptr,className){var self=this.ptr;ensureCache.prepare();if(ptr&&typeof ptr==="object")ptr=ptr.ptr;if(className&&typeof className==="object")className=className.ptr;else className=ensureString(className);return _emscripten_bind_MemoryTrackedRegistry_STATIC_getDeadContextId_2(self,ptr,className)};MemoryTrackedRegistry.prototype["STATIC_getDeadContextTimeMs"]=MemoryTrackedRegistry.prototype.STATIC_getDeadContextTimeMs=function(ptr,className){var self=this.ptr;ensureCache.prepare();if(ptr&&typeof ptr==="object")ptr=ptr.ptr;if(className&&typeof className==="object")className=className.ptr;else className=ensureString(className);return _emscripten_bind_MemoryTrackedRegistry_STATIC_getDeadContextTimeMs_2(self,ptr,className)};MemoryTrackedRegistry.prototype["__destroy__"]=MemoryTrackedRegistry.prototype.__destroy__=function(){var self=this.ptr;_emscripten_bind_MemoryTrackedRegistry___destroy___0(self)};(function(){function setupEnums(){Module["Variable"]["Unknown"]=_emscripten_enum_Variable_Type_Unknown();Module["Variable"]["MixedTypes"]=_emscripten_enum_Variable_Type_MixedTypes();Module["Variable"]["String"]=_emscripten_enum_Variable_Type_String();Module["Variable"]["Number"]=_emscripten_enum_Variable_Type_Number();Module["Variable"]["Boolean"]=_emscripten_enum_Variable_Type_Boolean();Module["Variable"]["Structure"]=_emscripten_enum_Variable_Type_Structure();Module["Variable"]["Array"]=_emscripten_enum_Variable_Type_Array();Module["VariablesContainer"]["Unknown"]=_emscripten_enum_VariablesContainer_SourceType_Unknown();Module["VariablesContainer"]["Global"]=_emscripten_enum_VariablesContainer_SourceType_Global();Module["VariablesContainer"]["Scene"]=_emscripten_enum_VariablesContainer_SourceType_Scene();Module["VariablesContainer"]["Object"]=_emscripten_enum_VariablesContainer_SourceType_Object();Module["VariablesContainer"]["Local"]=_emscripten_enum_VariablesContainer_SourceType_Local();Module["VariablesContainer"]["ExtensionGlobal"]=_emscripten_enum_VariablesContainer_SourceType_ExtensionGlobal();Module["VariablesContainer"]["ExtensionScene"]=_emscripten_enum_VariablesContainer_SourceType_ExtensionScene();Module["VariablesContainer"]["Parameters"]=_emscripten_enum_VariablesContainer_SourceType_Parameters();Module["VariablesContainer"]["Properties"]=_emscripten_enum_VariablesContainer_SourceType_Properties();Module["ObjectsContainer"]["Unknown"]=_emscripten_enum_ObjectsContainer_SourceType_Unknown();Module["ObjectsContainer"]["Global"]=_emscripten_enum_ObjectsContainer_SourceType_Global();Module["ObjectsContainer"]["Scene"]=_emscripten_enum_ObjectsContainer_SourceType_Scene();Module["ObjectsContainer"]["Object"]=_emscripten_enum_ObjectsContainer_SourceType_Object();Module["ObjectsContainer"]["Function"]=_emscripten_enum_ObjectsContainer_SourceType_Function();Module["ObjectsContainersList"]["DoesNotExist"]=_emscripten_enum_ObjectsContainersList_VariableExistence_DoesNotExist();Module["ObjectsContainersList"]["Exists"]=_emscripten_enum_ObjectsContainersList_VariableExistence_Exists();Module["ObjectsContainersList"]["GroupIsEmpty"]=_emscripten_enum_ObjectsContainersList_VariableExistence_GroupIsEmpty();Module["ObjectsContainersList"]["ExistsOnlyOnSomeObjectsOfTheGroup"]=_emscripten_enum_ObjectsContainersList_VariableExistence_ExistsOnlyOnSomeObjectsOfTheGroup();Module["CustomObjectConfiguration"]["NoAnchor"]=_emscripten_enum_CustomObjectConfiguration_EdgeAnchor_NoAnchor();Module["CustomObjectConfiguration"]["MinEdge"]=_emscripten_enum_CustomObjectConfiguration_EdgeAnchor_MinEdge();Module["CustomObjectConfiguration"]["MaxEdge"]=_emscripten_enum_CustomObjectConfiguration_EdgeAnchor_MaxEdge();Module["CustomObjectConfiguration"]["Proportional"]=_emscripten_enum_CustomObjectConfiguration_EdgeAnchor_Proportional();Module["CustomObjectConfiguration"]["Center"]=_emscripten_enum_CustomObjectConfiguration_EdgeAnchor_Center();Module["ResourcesContainer"]["Unknown"]=_emscripten_enum_ResourcesContainer_SourceType_Unknown();Module["ResourcesContainer"]["Global"]=_emscripten_enum_ResourcesContainer_SourceType_Global();Module["ResourcesContainer"]["Parameters"]=_emscripten_enum_ResourcesContainer_SourceType_Parameters();Module["ResourcesContainer"]["Properties"]=_emscripten_enum_ResourcesContainer_SourceType_Properties();Module["QuickCustomization"]["Default"]=_emscripten_enum_QuickCustomization_Visibility_Default();Module["QuickCustomization"]["Visible"]=_emscripten_enum_QuickCustomization_Visibility_Visible();Module["QuickCustomization"]["Hidden"]=_emscripten_enum_QuickCustomization_Visibility_Hidden();Module["ProjectDiagnostic"]["UndeclaredVariable"]=_emscripten_enum_ProjectDiagnostic_ErrorType_UndeclaredVariable();Module["ProjectDiagnostic"]["MissingBehavior"]=_emscripten_enum_ProjectDiagnostic_ErrorType_MissingBehavior();Module["ProjectDiagnostic"]["UnknownObject"]=_emscripten_enum_ProjectDiagnostic_ErrorType_UnknownObject();Module["ProjectDiagnostic"]["MismatchedObjectType"]=_emscripten_enum_ProjectDiagnostic_ErrorType_MismatchedObjectType();Module["ExpressionParserError"]["SyntaxError"]=_emscripten_enum_ExpressionParserError_ErrorType_SyntaxError();Module["ExpressionParserError"]["InvalidOperator"]=_emscripten_enum_ExpressionParserError_ErrorType_InvalidOperator();Module["ExpressionParserError"]["MismatchedType"]=_emscripten_enum_ExpressionParserError_ErrorType_MismatchedType();Module["ExpressionParserError"]["UndeclaredVariable"]=_emscripten_enum_ExpressionParserError_ErrorType_UndeclaredVariable();Module["ExpressionParserError"]["UnknownIdentifier"]=_emscripten_enum_ExpressionParserError_ErrorType_UnknownIdentifier();Module["ExpressionParserError"]["BracketsNotAllowedForObjects"]=_emscripten_enum_ExpressionParserError_ErrorType_BracketsNotAllowedForObjects();Module["ExpressionParserError"]["TooFewParameters"]=_emscripten_enum_ExpressionParserError_ErrorType_TooFewParameters();Module["ExpressionParserError"]["TooManyParameters"]=_emscripten_enum_ExpressionParserError_ErrorType_TooManyParameters();Module["ExpressionParserError"]["InvalidFunctionName"]=_emscripten_enum_ExpressionParserError_ErrorType_InvalidFunctionName();Module["ExpressionParserError"]["MalformedVariableParameter"]=_emscripten_enum_ExpressionParserError_ErrorType_MalformedVariableParameter();Module["ExpressionParserError"]["MalformedObjectParameter"]=_emscripten_enum_ExpressionParserError_ErrorType_MalformedObjectParameter();Module["ExpressionParserError"]["UnknownParameterType"]=_emscripten_enum_ExpressionParserError_ErrorType_UnknownParameterType();Module["ExpressionParserError"]["MissingBehavior"]=_emscripten_enum_ExpressionParserError_ErrorType_MissingBehavior();Module["ExpressionParserError"]["VariableNameCollision"]=_emscripten_enum_ExpressionParserError_ErrorType_VariableNameCollision();Module["ExpressionParserError"]["DeprecatedExpression"]=_emscripten_enum_ExpressionParserError_ErrorType_DeprecatedExpression();Module["ExpressionCompletionDescription"]["Object"]=_emscripten_enum_ExpressionCompletionDescription_CompletionKind_Object();Module["ExpressionCompletionDescription"]["BehaviorWithPrefix"]=_emscripten_enum_ExpressionCompletionDescription_CompletionKind_BehaviorWithPrefix();Module["ExpressionCompletionDescription"]["ExpressionWithPrefix"]=_emscripten_enum_ExpressionCompletionDescription_CompletionKind_ExpressionWithPrefix();Module["ExpressionCompletionDescription"]["Variable"]=_emscripten_enum_ExpressionCompletionDescription_CompletionKind_Variable();Module["ExpressionCompletionDescription"]["TextWithPrefix"]=_emscripten_enum_ExpressionCompletionDescription_CompletionKind_TextWithPrefix();Module["ExpressionCompletionDescription"]["Property"]=_emscripten_enum_ExpressionCompletionDescription_CompletionKind_Property();Module["ExpressionCompletionDescription"]["Parameter"]=_emscripten_enum_ExpressionCompletionDescription_CompletionKind_Parameter();Module["EventsFunction"]["Action"]=_emscripten_enum_EventsFunction_FunctionType_Action();Module["EventsFunction"]["Condition"]=_emscripten_enum_EventsFunction_FunctionType_Condition();Module["EventsFunction"]["Expression"]=_emscripten_enum_EventsFunction_FunctionType_Expression();Module["EventsFunction"]["ExpressionAndCondition"]=_emscripten_enum_EventsFunction_FunctionType_ExpressionAndCondition();Module["EventsFunction"]["ActionWithOperator"]=_emscripten_enum_EventsFunction_FunctionType_ActionWithOperator();Module["EventsFunctionsContainer"]["Extension"]=_emscripten_enum_EventsFunctionsContainer_FunctionOwner_Extension();Module["EventsFunctionsContainer"]["Behavior"]=_emscripten_enum_EventsFunctionsContainer_FunctionOwner_Behavior();Module["EventsFunctionsContainer"]["Object"]=_emscripten_enum_EventsFunctionsContainer_FunctionOwner_Object();Module["ParticleEmitterObject"]["Point"]=_emscripten_enum_ParticleEmitterObject_RendererType_Point();Module["ParticleEmitterObject"]["Line"]=_emscripten_enum_ParticleEmitterObject_RendererType_Line();Module["ParticleEmitterObject"]["Quad"]=_emscripten_enum_ParticleEmitterObject_RendererType_Quad()}if(runtimeInitialized)setupEnums();else addOnInit(setupEnums)})();var adaptNamingConventions=function(gd){function uncapitalizeFirstLetter(method){return method.charAt(0).toLowerCase()+method.slice(1)}function removePrefix(method,prefix){if(method.indexOf(prefix)!==0)return method;return method.replace(prefix,"")}function adaptClassMethods(object){var proto=object.prototype;for(var method in proto){if(method&&proto.hasOwnProperty(method)){var newName=method;var addToModule=false;var addToObject=false;if(method.indexOf("STATIC_")===0){newName=removePrefix(newName,"STATIC_");addToObject=true}if(method.indexOf("FREE_")===0){newName=removePrefix(newName,"FREE_");addToModule=true}newName=removePrefix(newName,"MAP_");newName=removePrefix(newName,"WRAPPED_");if(newName.indexOf("CLONE_")===0){newName="clone"}newName=uncapitalizeFirstLetter(newName);if(newName!==method){proto[newName]=proto[method];delete proto[method]}if(addToObject){object[newName]=proto[newName]}if(addToModule){gd[newName]=function(fct){return function(){if(arguments.length===0)return fct();var args=[];Array.prototype.push.apply(args,arguments);args.shift();return fct.apply(arguments[0],args)}}(proto[newName])}}}proto.delete=function(){this._jsDestructionContext={source:"js",stack:new Error("Object destroyed here").stack,time:Date.now()};gd.destroy(this);this.ptr=0}}for(var gdClass in gd){if(gd.hasOwnProperty(gdClass)){if(typeof gd[gdClass]!=="function")continue;if(!gd[gdClass].prototype)continue;if(!gd[gdClass].prototype.hasOwnProperty("__class__"))continue;adaptClassMethods(gd[gdClass])}}gd.Object=gd.gdObject;gd.initializePlatforms=gd.ProjectHelper.prototype.initializePlatforms;gd.asStandardEvent=function(evt){return gd.castObject(evt,gd.StandardEvent)};gd.asElseEvent=function(evt){return gd.castObject(evt,gd.ElseEvent)};gd.asRepeatEvent=function(evt){return gd.castObject(evt,gd.RepeatEvent)};gd.asWhileEvent=function(evt){return gd.castObject(evt,gd.WhileEvent)};gd.asForEachEvent=function(evt){return gd.castObject(evt,gd.ForEachEvent)};gd.asForEachChildVariableEvent=function(evt){return gd.castObject(evt,gd.ForEachChildVariableEvent)};gd.asCommentEvent=function(evt){return gd.castObject(evt,gd.CommentEvent)};gd.asGroupEvent=function(evt){return gd.castObject(evt,gd.GroupEvent)};gd.asLinkEvent=function(evt){return gd.castObject(evt,gd.LinkEvent)};gd.asJsCodeEvent=function(evt){return gd.castObject(evt,gd.JsCodeEvent)};gd.asPlatform=function(evt){return gd.castObject(evt,gd.Platform)};gd.asSpriteConfiguration=function(evt){return gd.castObject(evt,gd.SpriteObject)};gd.asTiledSpriteConfiguration=function(evt){return gd.castObject(evt,gd.TiledSpriteObject)};gd.asPanelSpriteConfiguration=function(evt){return gd.castObject(evt,gd.PanelSpriteObject)};gd.asTextObjectConfiguration=function(evt){return gd.castObject(evt,gd.TextObject)};gd.asShapePainterConfiguration=function(evt){return gd.castObject(evt,gd.ShapePainterObject)};gd.asAdMobConfiguration=function(evt){return gd.castObject(evt,gd.AdMobObject)};gd.asTextEntryObject=function(evt){return gd.castObject(evt,gd.TextEntryObject)};gd.asParticleEmitterConfiguration=function(evt){return gd.castObject(evt,gd.ParticleEmitterObject)};gd.asObjectJsImplementation=function(evt){return gd.castObject(evt,gd.ObjectJsImplementation)};gd.asCustomObjectConfiguration=function(evt){return gd.castObject(evt,gd.CustomObjectConfiguration)};gd.asModel3DConfiguration=function(evt){return gd.castObject(evt,gd.Model3DObjectConfiguration)};gd.asSpineConfiguration=function(evt){return gd.castObject(evt,gd.SpineObjectConfiguration)};gd.asImageResource=function(evt){return gd.castObject(evt,gd.ImageResource)};gd.VectorString.prototype.toJSArray=function(){var arr=[];var size=this.size();for(var i=0;i<size;++i){arr.push(this.at(i))}return arr};gd.VectorInt.prototype.toJSArray=function(){var arr=[];var size=this.size();for(var i=0;i<size;++i){arr.push(this.at(i))}return arr};const elementFromJSObject=function(object,element){if(typeof object==="number"){element.setDoubleValue(object)}else if(typeof object==="string"){element.setStringValue(object)}else if(typeof object==="boolean"){element.setBoolValue(object)}else if(Array.isArray(object)){element.considerAsArray();for(var i=0;i<object.length;++i){var item=element.addChild("");elementFromJSObject(object[i],item)}}else if(typeof object==="object"){for(var childName in object){if(object.hasOwnProperty(childName)){var child=element.addChild(childName);elementFromJSObject(object[childName],child)}}}};gd.Serializer.fromJSObject=function(object){var element=new gd.SerializerElement;elementFromJSObject(object,element);return element};const valueToJSObject=function(serializerValue){if(serializerValue.isBoolean())return serializerValue.getBool();else if(serializerValue.isDouble())return serializerValue.getDouble();else if(serializerValue.isInt())return serializerValue.getInt();else if(serializerValue.isString()){return serializerValue.getRawString()}return null};gd.Serializer.toJSObject=function(element){if(!element.isValueUndefined()){return valueToJSObject(element.getValue())}else if(element.consideredAsArray()){const array=[];const children=element.getAllChildren();const childrenCount=children.size();for(let i=0;i<childrenCount;++i){const sharedPtrSerializerElement=children.getSharedPtrSerializerElement(i);const serializerElement=sharedPtrSerializerElement.get();array.push(gd.Serializer.toJSObject(serializerElement));sharedPtrSerializerElement.reset()}return array}else{const object={};const attributes=element.getAllAttributes();const attributeNames=attributes.keys();for(let i=0;i<attributeNames.size();++i){const name=attributeNames.at(i);const serializerValue=attributes.get(name);object[name]=valueToJSObject(element.getValue())}const children=element.getAllChildren();const childrenCount=children.size();for(let i=0;i<childrenCount;++i){const name=children.getString(i);const sharedPtrSerializerElement=children.getSharedPtrSerializerElement(i);const serializerElement=sharedPtrSerializerElement.get();object[name]=gd.Serializer.toJSObject(serializerElement);sharedPtrSerializerElement.reset()}return object}return null};gd.VectorString.prototype.get=gd.VectorString.prototype.at;gd.VectorPlatformExtension.prototype.get=gd.VectorPlatformExtension.prototype.at;gd.InstructionsList.prototype.push_back=function(e){this.insert(e,this.size()-1)};function deepClone(obj){if(obj===null||typeof obj!=="object"){return obj}if(obj instanceof Date){return new Date(obj.getTime())}if(Array.isArray(obj)){const clonedArr=[];for(let i=0;i<obj.length;i++){clonedArr.push(deepClone(obj[i]))}return clonedArr}const clonedObj={};for(const key in obj){if(obj.hasOwnProperty(key)){clonedObj[key]=deepClone(obj[key])}}return clonedObj}gd._deepCloneForObjectJsImplementationContent=function(obj){return deepClone(obj)};return gd};adaptNamingConventions(Module);class UseAfterFreeError extends Error{constructor({message:message,useAfterFreeContext:useAfterFreeContext}){super(message);this.name="UseAfterFreeError";this.useAfterFreeContext=useAfterFreeContext}}Module.UseAfterFreeError=UseAfterFreeError;const callContextLabels=["<no context set>"];function assertAlive(obj,label,gd,className){if(!obj.ptr){const destructionContext=obj._jsDestructionContext;if(destructionContext){let message=`${label}: object was already destroyed from JavaScript (ptr is 0, _jsDestructionContext is set).`;throw new UseAfterFreeError({message:message,useAfterFreeContext:{timeSinceDestroyedInMs:Math.round(performance.now()-destructionContext.time),destroyedBy:destructionContext.stack,trackedClassName:className||undefined}})}else{let message=`${label}: object is a null pointer and might never have been alive (ptr is 0, _jsDestructionContext is not set).`;throw new UseAfterFreeError({message:message,useAfterFreeContext:{possiblyNeverAlive:true,trackedClassName:className||undefined}})}}if(className!==null&&gd.MemoryTrackedRegistry.isDead(obj.ptr,className)){let message=`${label}: C++ object (${className}) was destroyed on C++ side but JavaScript wrapper still exists (ptr is not 0) and was about to be used (this exception was thrown instead).`;let destroyedByCallTo="unknown";const deadContextId=gd.MemoryTrackedRegistry.getDeadContextId(obj.ptr,className);if(deadContextId>=0){destroyedByCallTo=callContextLabels[deadContextId]||`unknown (id=${deadContextId})`}let timeSinceDestroyedInMs=undefined;const deadContextTimeMs=gd.MemoryTrackedRegistry.getDeadContextTimeMs(obj.ptr,className);if(deadContextTimeMs>0){timeSinceDestroyedInMs=Math.round(performance.now()-deadContextTimeMs)}let lastSuccessfulCallToThisWrapper=undefined;if(obj._lastSuccessfulCall){lastSuccessfulCallToThisWrapper=`${className}.${obj._lastSuccessfulCall}`}throw new UseAfterFreeError({message:message,useAfterFreeContext:{destroyedByCallTo:destroyedByCallTo,timeSinceDestroyedInMs:timeSinceDestroyedInMs,lastSuccessfulCallToThisWrapper:lastSuccessfulCallToThisWrapper}})}}function patchClassesForUseAfterFreeDetection(gd,{skippedClassNames:skippedClassNames,trackedClassNames:trackedClassNames,verbose:verbose}){let patchedCount=0;let nextContextId=1;const setCurrentCallContextId=gd.MemoryTrackedRegistry.setCurrentCallContextId.bind(gd.MemoryTrackedRegistry);for(const gdClass in gd){if(!gd.hasOwnProperty(gdClass))continue;if(typeof gd[gdClass]!=="function")continue;if(!gd[gdClass].prototype)continue;if(!gd[gdClass].prototype.hasOwnProperty("__class__"))continue;if(skippedClassNames.has(gdClass))continue;const proto=gd[gdClass].prototype;const className=trackedClassNames.has(gdClass)?gdClass:null;if(className!==null){proto._memoryTrackedClassName=className}Object.getOwnPropertyNames(proto).forEach(methodName=>{if(methodName==="constructor"||methodName==="__destroy__"||methodName==="__class__"||methodName==="delete")return;const desc=Object.getOwnPropertyDescriptor(proto,methodName);if(!desc||typeof desc.value!=="function")return;const contextId=nextContextId++;callContextLabels[contextId]=gdClass+"."+methodName;proto[methodName]=function(original,wrappedMethodName,wrappedClassName,wrappedContextId){return function useAfterFreeDetectionWrapper(){assertAlive(this,wrappedClassName?wrappedClassName+"."+wrappedMethodName:wrappedMethodName,gd,wrappedClassName);setCurrentCallContextId(wrappedContextId);var result=original.apply(this,arguments);setCurrentCallContextId(0);if(wrappedClassName){this._lastSuccessfulCall=wrappedMethodName}return result}}(desc.value,methodName,className,contextId)});if(typeof proto.delete==="function"){const deleteContextId=nextContextId++;callContextLabels[deleteContextId]=gdClass+".delete";const originalDelete=proto.delete;proto.delete=function(wrappedOriginalDelete,wrappedDeleteContextId){return function deleteWithContextId(){setCurrentCallContextId(wrappedDeleteContextId);var result=wrappedOriginalDelete.apply(this,arguments);setCurrentCallContextId(0);return result}}(originalDelete,deleteContextId)}patchedCount++}if(verbose){console.log(`[UseAfterFreeDetection] Patched ${patchedCount} classes (${trackedClassNames.size} tracked in C++, ${nextContextId} call-context IDs assigned).`)}}patchClassesForUseAfterFreeDetection(Module,{skippedClassNames:new Set([]),trackedClassNames:new Set(["Project","Layout","gdObject","Behavior","BehaviorsSharedData","EffectsContainer","InitialInstancesContainer","LayersContainer","ObjectFolderOrObject","ObjectGroupsContainer","ObjectsContainer","VariablesContainer","JsCodeEvent"]),verbose:false});Module.assertObjectAlive=function assertObjectAlive(obj){const className=obj._memoryTrackedClassName||null;assertAlive(obj,"assertObjectAlive",Module,className)};
|
|
|
|
|
|
return initializeGDevelopJs.ready
|
|
}
|
|
);
|
|
})();
|
|
if (typeof exports === 'object' && typeof module === 'object')
|
|
module.exports = initializeGDevelopJs;
|
|
else if (typeof define === 'function' && define['amd'])
|
|
define([], function() { return initializeGDevelopJs; });
|
|
else if (typeof exports === 'object')
|
|
exports["initializeGDevelopJs"] = initializeGDevelopJs;
|